Forum Moderators: open
/* Links in the left nav bar */
a.leftnav:link{
color: #FF0000;
font-family: Tahoma,Verdana,sans-serif;
font-size: 30px;
font-weight: 500;
}
/* Visited links in the left nav bar */
a.leftnav:visited{
color: #666666;
font-family: Tahoma,Verdana,sans-serif;
font-size: 30px;
font-weight: 500;
}
/* Links in the left nav bar that are being hovered over */
a.leftnav:hover{
color: #FFFFFF;
font-family: Tahoma,Verdana,sans-serif;
font-size: 30px;
font-weight: 500;
text-decoration: none;
}
There may be a conflict with other CSS rules, in which case "specificity" is supposed to be used by the browser in deciding which rules should apply. See the W3C page describing the "cascading" part of CSS, and especially the specificty section:
[w3.org...]