MyBB Community Forums

Full Version: Change Text Color
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
What I really was wondering was if I could change the color of the text on  these. http://prntscr.com/69aj67 
I have looked at all of the code trying to change it, I want to change the color to #FFDF00 . Could somebody please help me ?!?
If you don't know what css to edit, use inspect element and find out which it is.
In global.css

Find:

Quote:table{
color: #333333;
font-size:13px
}

And then edit what is in red to your color. Your code would like like as follows:


Quote:table{

    color: #FFDF00;
    font-size:13px
}
Patchy, I have tried that, and changed most of the text
Theme thanks, but
table{
color: #333333
font-size:13px
}
is not to be found... I "ctrl" + F and searched "table" but it was nowhere to be found
What is the link to your forum?
Add this to global.css and hard refresh (Ctrl+F5) the forums.....

tbody[id^=cat_] {color: #FFDF00;}
Thankyou!