MyBB Community Forums

Full Version: Edit colour of category headers
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Does anyone know how to edit the colour of category headers? How to do so would be very much appreciated Smile



You can use HTML to do this. First go to edit forum. If you want to have the title be one color while having the background of it be another use this in the title:
<p style="color:purple; background-color:green">Category Title</p>
Replace purple and green with whatever color you want. Hex values will allow for more choices.
Callum, are you referring to the ones on top like your [How To?] Edit colour of category headers? If so, that's thead in CSS.

One advantage of MyBB is that if you view the source, oftentimes, you'll find out why and how you can do a lot of this stuff based on its effective use of HTML comments.
(2010-10-06, 01:19 PM)callum93 Wrote: [ -> ]Does anyone know how to edit the colour of category headers? How to do so would be very much appreciated Smile

ACP >> Templates & Style >> Themes >> *yourtheme* >> global.css

You can change all the styling there.

I think you're looking for .thead
Thanks guys for all the help, I have now managed to change the colour. Smile