MyBB Community Forums

Full Version: Category Title Backgrounds + Need To Find A Post
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
If you look at the index page here, and see the first category;

Announcements
http://community.mybb.com/forum-1.html

And its background color is that dark blue;

what is that background space called?

----------------------------------------------------

I want to change the color per category.

----------------------------------------------------

I remember a post that someone made that explained what each area was called, anyone know where I can find that post here?

Thanks
I think its thead...... That's all I know.
That's thead class.

For changing color per category add id="forum_cat_{$forum['fid']}" to

<td class="thead" colspan="5">

so it will look

<td class="thead" colspan="5" id="forum_cat_{$forum['fid']}">

(Admin cp -> templates and styles- > templates -> <your forum template set> -> forumbit templates -> forumbit_depth1_cat)

In global.css add
#forum_cat_x {
   backgorund-color:<some color value;
}
where x is your forum category id.
(2012-11-17, 03:51 PM)Johnny S Wrote: [ -> ]That's thead class.

For changing color per category add id="forum_cat_{$forum['fid']}" to

<td class="thead" colspan="5">

so it will look

<td class="thead" colspan="5" id="forum_cat_{$forum['fid']}">

(Admin cp -> templates and styles- > templates -> <your forum template set> -> forumbit templates -> forumbit_depth1_cat)

In global.css add
#forum_cat_x {
   backgorund-color:<some color value;
}
where x is your forum category id.

is this how you add images?
That's for background color and background image per category.
If you want image (eg <img src="" alt="" />) per category look at this tutorial http://community.mybb.com/thread-128706.html .