MyBB Community Forums

Full Version: Change colour of subforum Icon
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey, I've just added subforums.

And on the index page, I was wondering if someone could tell me how to change the colours of:

http://prntscr.com/16l35p

Like the text "sub forums" and also that square thing next to feeback.

Thanks.
That icon is located in <forum root>/images/<your theme image folder>/minioff.gif .


As for the text the color is inherited from #content styling in global.css of your theme.If you want a specific color just for "Sub forums" text in template and styles -> templates -> <your theme template set> -> forumbit template -> forumbit_subforums and find

{$lang->subforums} 

and replace it with

<span class="subforum_text">{$lang->subforums}</span> 

and save it.

In global.css of your theme add

.subforum_text {
color:#f5f5f5;
}

Replace #f5f5f5 with your new hex color code.
Ahh thanks.