Can you take a look at ? The links should turn red when hovered over. It seems to work perfectly in FF, Opera, and Chrome, but not in IE8. I'm stumped as to why this is happening. Changing a:link
to text-decoration:underline
makes the underline red on hover, but not the actual link text. Is this a bug or did I overlook something in my CSS?
Here's a snippet of the CSS code:
a{
text-decoration:none;
}
.linkGrey01{ color:#ddd; }
.linkGrey02{ color:#bbb; }
.linkGrey03{ color:#999; }
.linkGrey04{ color:#777; }
.linkGrey05{ color:#555; }
.linkGrey06{ color:#000; }
a:hover{
color:#f00;
}