MikeDamone
Programmer
It seems the Visted property takes precedence over the Hover property. I want the links to always be white unless they are hovered over, but when I set the visted property to white, the hover property no longer works for those links that I have clicked on. Is there a way around this? Here's what I have. Thanks
DIV.Menu A:hover
{
color:yellow;
}
DIV.Menu A:visited
{
color:white;
text-decoration:none;
DIV.Menu A:hover
{
color:yellow;
}
DIV.Menu A:visited
{
color:white;
text-decoration:none;