OK I've looked, what I said was more or less right. In your styles replace
Code:
A.leftLink {
BACKGROUND-COLOR: #ffffff;
BORDER-BOTTOM: #333333 1px solid;
BORDER-LEFT: #ededed 1px solid;
BORDER-RIGHT: #999999 1px solid;
BORDER-TOP: #ededed 1px solid; display:block;
COLOR: #000000;
FONT-FAMILY: Arial, Helvetica, sans-serif;
display:block;
FONT-SIZE: 9px; PADDING-LEFT: 10px;
TEXT-DECORATION: none;
}
with
Code:
A.leftLink, A.leftLink:link, A.leftLink:visited, A.leftLink:active {
BACKGROUND-COLOR: #ffffff;
BORDER-BOTTOM: #333333 1px solid;
BORDER-LEFT: #ededed 1px solid;
BORDER-RIGHT: #999999 1px solid;
BORDER-TOP: #ededed 1px solid; display:block;
COLOR: #000000;
FONT-FAMILY: Arial, Helvetica, sans-serif;
display:block;
FONT-SIZE: 9px; PADDING-LEFT: 10px;
TEXT-DECORATION: none;
}
All that is happening is that the vB styles are taking presidence where you have not supplied the extra pseudo classes for links
link, :visited, :active). My change just specifically implements those classes (making them the same as the normal link) so that the vB classes no longer take effect because there is a more specific class available (which is how CSS is meant to work).
Bookmarks