I think there are some "not default" css being defined somewhere in the css templates.
the root cause is this css.
.forumrow .forumtitle a:link, .forumrow .forumtitle a:visited {
color:#0B6B00;
font:14px tahoma,verdana,geneva,lucida,'lucida grande',arial,helvetica,sans-serif;
}
its not default,something like this should be in forumbits.css,maybe the skin creator put it in additional css.
if you cannot find it you can overwrite it by using !important .
put it in vbulletin.css on top (change to your color, I am using white as example)
Quote:
.forumrow .forumtitle a:link, .forumrow .forumtitle a:visited {
color:#FFF!important!;
font:14px tahoma,verdana,geneva,lucida,'lucida grande',arial,helvetica,sans-serif;
}
|
and there is also one more problematic css, last post link as I see it.
.forumrow .lastposttitle a:link, .forumrow .lastposttitle a:visited {
color:#000000;
font-weight:700;}
overwrite it.
Quote:
.forumrow .lastposttitle a:link, .forumrow .lastposttitle a:visited {
color:#FFF!important;
}
|
CSS templates is inside style manager>style name> edit templates> css templates>