Hallo,
ich hab ein Problem. Und zwar auf meiner website (webdesign-lohberger.maturaklasse2005.com) bräuchte ich zwei Rollovers (Einer fürs Menü und einer für die Links im Text)
Beim Menü soll der Text Weiß sein und beim drüberfahren schwarz werden.
Im Text soll der text blau (egal welche farbe geht ja nur ums prinzip) sein und beim Hover schwarz.
das Menü hat class="menu" und der text class="text"
ich bekomms nicht hin!!!
Vielen Dank im vorraus für Antworten!!
eingebunden wirds dann so:
Menü:
<!-- Navigation Anfang -->
<tr class="menu">
<?php include('system/navigation.php');?>
</tr>
<!-- Navigation Ende -->
Text:
<td valign="top" class="text">
<?PHP echo $output; ?>
</td>
mein css file sieht wie folgt aus:
A:Link {Color:rgb(00,00,00);Text-Decoration: none}
A:Visited {Color:rgb(00,00,00);Text-Decoration: none}
A:Hover {Color:rgb(255,255,255);Text-Decoration: none}
.menu
{
FONT-FAMILY: Verdana, Helvetica, sans-serif;
COLOR: #000000;
FONT-SIZE: 8pt;
FONT-WEIGHT: bold
}
.text
{
FONT-FAMILY: Verdana, Helvetica, sans-serif;
COLOR: #000000;
FONT-SIZE: 8pt;
FONT-WEIGHT: bold
}