Quote:
Originally Posted by Mattwhf
Thanks everyone for sharing codes
But i think it can be solve with inline style (combine with forum id) without using more CSS codes.
|
Using inline styling requires template hacking, which should be avoided if possible.
As it turned out, the OP is using a custom style which doesn't wrap the category headers correctly within the list element, and so I wound up having to hack the "forumhome_forumbit_level1_nopost" template, where I located the line:
HTML Code:
<tr class="vbs_forumhead}">
and changed it to:
HTML Code:
<tr class="vbs_forumhead fh{vb:raw forum.forumid}">
This way, each forumhead element has a class with the forumid in it that can be used with CSS selectors.