There got to be some other and easier way to do it, but here is what just pops up into my head
From the Additional CSS Definitions under the Style Options
Add a new class, I just called it tcat1, you can change it to whatever you like, this is only an example.
You will need to change the image name and path to use your own, and change the colors.
Code:
.tcat1
{
background: #FEWWE url(images/gradients/gradient_panel.gif) repeat-x top left;
color: #FFFFFF;
font: bold 10pt verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;
}
.tcat1 a:link
{
color: #ffffff;
text-decoration: none;
}
.tcat1 a:visited
{
color: #ffffff;
text-decoration: none;
}
.tcat1 a:hover, .tcat a:active
{
color: #FFFF66;
text-decoration: underline;
}
Then open
forumhome_forumbit_level1_nopost template
and find
Code:
<td class="tcat" colspan="<if condition="$vboptions[showmoderatorcolumn]">6<else />5</if>">
Change it to
Code:
<td class="<if condition="$forum[forumid]==1">tcat1<else />tcat</if>" colspan="<if condition="$vboptions[showmoderatorcolumn]">6<else />5</if>">
Where 1 is the forum ID you would like to use the new class with.