MyBB Community Forums

Full Version: Change default font color
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How i can change the default color of the font of the post from gray to white? Where i must go in the admin cp?

Thanks
ACP -> Templates & Style -> Theme -> Global.css -> Advanced mode

From here you have to check what you really want to change:
a:link means the link you will see when you haven't visited the page yet. (Based on cookies)
a:visited means you have already been here.
a:hover, a:active meaning when your cursor will hover over it what color it will become.

http://html-color-codes.info/ here you can figure out what color is what code (scroll down just a little bit).
Thanks alot. So i want change the standard color of the font style that we use for writing the post. Where i must do the editing?
In case you want to change the font size within the posts you will search for the div called table

The result will look something like this:

table {
	color: #FFFFFF;
	font-family: verdana;
	font-size: 12px;
}
I mean for example. I want change as default color in this forum the red color and not black color anymore. Understand? For all
I'm not 100% sure about how to edit them ALL but you could try .thead (the div instead of table I just mentioned).
Thanks for your help!