Hallo,
habe folgendes Problem, und noch keine Antwort durch Suche etc. aufgefunden:
Bei onmouseover wird die Schriftart weiß, wenn ich den Cursor drüberbewege, wenn ich allerdings von der Schrift abweiche, wird die Cell zwar schwarz, aber auch die Schrift :/ - Wie kann ich bei "aktiver Cell", die Schriftart konstant weiß lassen?
Vielen Dank!
(p.s.: Es handelt sich um eine Navigation)
Quellcode:
<html>
<head>
<title>::] blabla [::</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
body { font-size : 11px; font-family : arial,helvetica,sans-serif; font-weight : normal; font-style : normal; color : #FFFFFF; }
a:link { font-size : 12px; color : #000000; text-decoration : none; }
a:active { font-size : 12px; color : #FFFFFF; text-decoration : none; }
a:visited { font-size : 12px; color : #000000; text-decoration : none; }
a:hover { font-size : 12px; color : #FFFFFF; text-decoration : none; }
td { font-size : 14px; font-family : helvetica,arial,sans-serif; font-weight : normal; font-style : normal; color : #FFFFFF; }
</style>
</head>
<body bgcolor="#CCCCCC" text="#000000" leftmargin="5" topmargin="0" marginwidth="0" marginheight="0">
<img src="img/topnav.gif" width="134" height="48">
<table width="135" bgcolor=#000000 width="0" border="0" cellspacing="1" cellpadding="0">
<tr>
<td>
<table width="134" bgcolor=#CCCCCC width="0" border="0" cellspacing="2" cellpadding="0">
<tr>
<td bgcolor=#000000 align=center>
:: Navigation ::
</td>
</tr>
<tr>
<td onmouseover=this.style.backgroundColor='#000000' onmouseout=this.style.backgroundColor='#CCCCCC'>
<a href="test.html" target=main>Menupunkt 1</a>
</td>
</tr>
<!-- um weitere menüpunkte hinzuzufügen den teil von hier !-->
<tr>
<td onmouseover=this.style.backgroundColor='#000000' onmouseout=this.style.backgroundColor='#CCCCCC'>
<a href="test.html" target=main>Menupunkt 2</a>
</td>
</tr>
<!-- bis hier kopieren und einfügen !-->
</table>
</td>
</tr>
</table>
<br>
<img src="img/downnav.gif" width="136" height="49">
</body>
</html>