MyBB Community Forums

Full Version: Change default forum text color
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'm using the default template and I would like to change the default color from light blue to black. It's much easier on the eyes. I have changed the color of a few of them using some html hack:
<span style="color:black;">Site Announcements (read only)</span>

But it's a pain to do that with EVERY forum I create. Is there a way to change this and if so WHERE do I change it?

thanks a bunch!
Change the value for the color attribute at the following code at your theme 's global.css stylesheet.

a:link {
	color: #026CB1;
	text-decoration: none;
}

a:visited {
	color: #026CB1;
	text-decoration: none;
}

a:hover, a:active {
	color: #000;
	text-decoration: underline;
}
Thank you very much. I really appreciate your help. Worked like a charm!
(2012-11-17, 04:25 PM)jumper Wrote: [ -> ]Thank you very much. I really appreciate your help. Worked like a charm!

You are welcome. Glad to have been of help.