I have the following code that always worked on my previous sites, but not on this one. All I want is for the the links in this menu to change color.
<code>
<a href="URL" class="menuoff" onMouseOver="this.ClassName='menuon';" onMouseOut="this.ClassName='menuoff';">LINK</a>
</code>
CSS:
.menuoff
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 9px;
color: #FFFFFF;
text-decoration: none;
font-weight: bold;
}
.menuon {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 9px;
color: #FF0000;
text-decoration: none;
font-weight: bold;
}
Here's the link to the website if you want to check out what I mean:
<code>
<a href="URL" class="menuoff" onMouseOver="this.ClassName='menuon';" onMouseOut="this.ClassName='menuoff';">LINK</a>
</code>
CSS:
.menuoff
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 9px;
color: #FFFFFF;
text-decoration: none;
font-weight: bold;
}
.menuon {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 9px;
color: #FF0000;
text-decoration: none;
font-weight: bold;
}
Here's the link to the website if you want to check out what I mean: