After setting a specific color to the "a" anchor and the
"a:hover","a:visited" pseudo-classes I'm presented with the problem of the
"a:hover" not working after a link has been visited, it remains with the
properties of the "a:visited" pseuto-class. Is there a work around for this?
My code for reference:
#TopMenu a
{
color:#FEE6A7;
text-decoration:none;
}
#TopMenu a:hover
{
color:yellow;
text-decoration:underline;
}
#TopMenu a:visited
{
color:#DEB887;
text-decoration:none;
}
Any help will be appreciated, Thanx.
Julio Negron