• 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.

Simple CSS Question

calpha

Golden Member
a:hover{
text-decoration: underline;
cursor: pointer;
background-color: black;
color: white;
}

a:link{
text-decoration:none;
color:black;
background-color:F0E86D;
}
a:visited{
text-decoration:none;
color:black;
background-color:F0E86D;
}

WTF am i doing wrong.....after you click a link....it gets the visited color, but no longer gets the hover attribute applied with the mouseovers?
 
Here is a sample CSS that I use.


A:link {BACKGROUND: none; COLOR: #006699; FONT-SIZE: 10px; FONT-FAMILY: Verdana, Helvetica; TEXT-DECORATION: none}
A:active {BACKGROUND: none; COLOR: #006699; FONT-SIZE: 10px; FONT-FAMILY: Verdana, Helvetica; TEXT-DECORATION: none}
A:visited {BACKGROUND: none; COLOR: #006699; FONT-SIZE: 10px; FONT-FAMILY: Verdana, Helvetica; TEXT-DECORATION: none}
A:hover {BACKGROUND: none; COLOR: #dd6900; FONT-SIZE: 10px; FONT-FAMILY: Verdana, Helvetica; TEXT-DECORATION: underline}
 
Back
Top