MyBB Community Forums

Full Version: how to change board statistics font color?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
[Image: 1thCv]

how do i change the color of the text to a blue?
Go to template: index_stats

Find the line:
<td class="trow1"><span class="smalltext">

Option 01

Make it:
<td class="trow1"><span class="smalltext statstext">

Open your global.css and add at the bottom:

.statstext {
color: #FF0000;
}

Option 02

Make it:
<td class="trow1"><span class="smalltext" style="color: #FF0000;">
thank you effone! it worked Big Grin

also, dont wanna make a new thread, but how can i change the category name colors?
In your global.css

.thead {
...
...
color: #FF0000;
...
...
}
(2012-11-23, 05:12 AM)effone Wrote: [ -> ]In your global.css

.thead {
...
...
color: #FF0000;
...
...
}

how long would it take to update? i changed the color but it hasnt updated. its been a day
It would update immediately.
(2012-11-23, 08:01 PM)brad-t Wrote: [ -> ]It would update immediately.

well that's weird :/

http://puu.sh/1tuOj its still gray (the rules announcements title)
That's not the thead element. Try this:

.trow a
{color: #ff0000;}
(2012-11-23, 09:42 PM)brad-t Wrote: [ -> ]That's not the thead element. Try this:

.trow a
{color: #ff0000;}

there is no .trow a

http://puu.sh/1twnu
I know. Just add that to global.css.
Pages: 1 2