MyBB Community Forums

Full Version: Make Font on Theme Darker
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
On http://thechat.xyz the font (for posts) is too light to read.  Any ideas on how to darken it via the code?

Oh, by the way, do you think it's too light to read?

Example: http://thechat.xyz/showthread.php?tid=41&pid=692#pid692
Hi.

In global.css file at line 1839 you have following code:

table {
    color: #8a8a8a;
    font-size: 12px;
}

Just change #8a8a8a to another html color.

You can just write black, like following for black color:

table {
    color: #000000;
    font-size: 12px;
}

or

table {
    color: black;
    font-size: 12px;
}

But probably #333 (same as #333333) or #111 (same as #111111) would be more suitable... As you wish...
I see- but this is a premium theme so how would messing with the default theme code change things?
You can always change that one line and it will change nothing. But if you are scared or something, just ask theme maker. That's simple change and he should help you or tell you same what I did Smile