MyBB Community Forums

Full Version: Category Spacing
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I want to add individual spacing/padding to each individual category, issuing separate spacing/padding on different categories.

Such as;

forum-12 {padding-bottom: 10px}
forum-13 {padding-bottom: 7px}
forum-14 {padding-bottom: 15px}


Thanks! Smile
use the category number in the css class -

in your forumbit_depth1_cat template make a div round the whole template and on the div tag add this:

<div id="cat_{$forum['fid']}">

Now you can target the category via the class .cat_12 (where category number is 12).