• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Little Quick Style Sheet Problem

NakaNaka

Diamond Member
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
 
What color is your background? Is there enough contrast between the two colors to see the change?
 
a:link, a:active {
color: #CCCCCC
}
a:hover {
color: #FFB542
}
a:visited {
color: #CCCCCC
}
a:visited:hover {
color: #FFB542
}
 
Hmmm... not sure. Let me check a couple of places. You might ask in the tech support forum, though.
 
Back
Top