MyBB Community Forums

Full Version: Text color change
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I've done some of the text to yellow but cant seem to find this text code?

See picture what i want to change.
In global.css:

a:link {
color: #HASHVALUE;
Don't seem to be working?
Board link please ...
In your global.css:

a {text-decoration: none; color: #ffd616;}
a:hover {color: #ffd616;}
That's the yellow i already changed from black.

Take a look at the picture that black text at the bottom i want yellow.
Open your "index_boardstats" template and find at the very beginning:

<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">

Replace with:

<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder" style="color: #ffd616;">
Thank you dude!