Alright, in the style.css file for this page I'm doing, I have this.
a:link, a:active { color: #CCCCCC}
a:hover { color: #FFB542}
a:visited { color: #CCCCCC}
Now, the problem is, when I hover on a link I've visited, the hover color does not come up. I tried removing a:visited { color: #CCCCCC}, but then it just uses the default color, which I definitly don't want. However, when I did remove that, when I hovered over that default color, the hover color came up.
Any clue on how I can get the hover color on a link I've visited?
Thanks - Phil
a:link, a:active { color: #CCCCCC}
a:hover { color: #FFB542}
a:visited { color: #CCCCCC}
Now, the problem is, when I hover on a link I've visited, the hover color does not come up. I tried removing a:visited { color: #CCCCCC}, but then it just uses the default color, which I definitly don't want. However, when I did remove that, when I hovered over that default color, the hover color came up.
Any clue on how I can get the hover color on a link I've visited?
Thanks - Phil