MyBB Community Forums
Change default font color - Printable Version

+- MyBB Community Forums (https://community.mybb.com)
+-- Forum: Community Archive (https://community.mybb.com/forum-106.html)
+--- Forum: Archived Forums (https://community.mybb.com/forum-143.html)
+---- Forum: Archived Development and Support (https://community.mybb.com/forum-155.html)
+----- Forum: MyBB 1.6 (https://community.mybb.com/forum-138.html)
+------ Forum: 1.6 General Support (https://community.mybb.com/forum-127.html)
+------ Thread: Change default font color (/thread-132228.html)



Change default font color - helpmybb - 2013-01-05

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


RE: Change default font color - egbertjan - 2013-01-05

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).


RE: Change default font color - helpmybb - 2013-01-05

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?


RE: Change default font color - egbertjan - 2013-01-05

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;
}



RE: Change default font color - helpmybb - 2013-01-05

I mean for example. I want change as default color in this forum the red color and not black color anymore. Understand? For all


RE: Change default font color - egbertjan - 2013-01-05

I'm not 100% sure about how to edit them ALL but you could try .thead (the div instead of table I just mentioned).


RE: Change default font color - helpmybb - 2013-01-05

Thanks for your help!