MyBB Community Forums

Full Version: How to change color of this
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
http://a.imageshack.us/img821/8901/97278442.png

[Image: 97278442.png]

How can I change the color of it?
I believe you would have to change the color of visited links.

Go to the css and find a:visited and change it to a darker grey.
Didn't changed
This is an extra bit of code that has been added to the theme. Can you please link to your site so I can take a look at the code Wink
in global.css find
.smalltext {
	font-size: 11px;
}
replace with
.smalltext {
	font-size: 11px;
	color: #000;
}

That should work but let me know if it doesn't Wink
It only changed the color of the small text in the forums, the Forum Contains new posts and such, not that link
Looks like this is what you need to change:

div.author a, .lastpost a {
	color: #999;
}
Now that's what I mean by supporting! You rock dude!
(2010-08-31, 11:18 AM)AJS Wrote: [ -> ]Looks like this is what you need to change:

div.author a, .lastpost a {
	color: #999;
}

That would have been my next guess because they are both on the same element Toungue