for some strange reason, my roll over doesn't work on some of the links below ... works on most of them, but "Schedule & Results" and "Guestbook" don't change colors when the mouse rolls over them. I'm using CSS to accomplish the roll-over. Can anybody tell me what to fix? Thanks in advance
MrsBean
A portion of my CSS follows:
MrsBean
Code:
<table bgcolor="#1c3f93" border="1" cellpadding=0 cellspacing =0 width="100%">
<tr><td align="center">
<!--nav table here -->
<table cellpadding = "5" cellspacing = "5">
<tr>
<td><a href="index.cfm?template=news">News</a></td>
<td><a href="index.cfm?template=biography">Biography</a></td>
<td><a href="index.cfm?template=team">Team & Car</a></td>
<td><a href="index.cfm?template=pa">Photo Gallery </a></td>
<td><a href="index.cfm?template=event">Schedule & Results </a></td>
<td><a href="index.cfm?template=guestbook">Guestbook </a></td>
<td><a href="index.cfm?template=links">Links </a></td>
<td><a href="index.cfm?template=contact">Contact </a></td>
</tr>
</table>
</td></tr></table>
A portion of my CSS follows:
Code:
a:current {
color: white;
font-weight: bold;
text-decoration: none;
}
a:hover {
color: white;
font-weight: bold;
text-decoration: none;
}
a:visited {
color: #FEB30F;
font-weight: 500;
text-decoration: none;
}
a {
color: #FEB30F;
font-weight: 500;
text-decoration: none;
}