Okay, here's one way you can do it. First you need to create your alternate color by creating a new style, this is going to be the alternative color(s) for your selected forum(s). Here I just use one color so you will have to tweak it to your liking.
Go go Syles & Templates > Style Manager and select Main CSS from the style you want to apply this to. Now scroll to the very bottom where you see Additional CSS Definitions you will want to add your new style to the very bottom box. Again, change it to your liking but leave .staff there.
Code:
.staff
{
background-color: #000000;
}
Now we'll call it up with a condition to only show for the forums you specify. In forumhome_forumbit_level2_post replace the entire template with this, be sure to change the bolded forum id's with your own. Back up your original template first just to be safe.
Code:
<if condition="in_array($forum['forumid'], array(12,17))">
<tr align="center">
<td class="staff"><img src="$stylevar[imgdir_statusicon]/forum_$forum[statusicon].gif" alt="" border="0" id="forum_statusicon_$forum[forumid]" /></td>
<td class="staff" align="$stylevar[left]" id="f$forum[forumid]">
<div>
<a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]"><strong>$forum[title]</strong></a>
<if condition="$show['browsers']"><span class="smallfont">(<phrase 1="$forum[browsers]">$vbphrase[x_viewing]</phrase>)</span></if>
</div>
<if condition="$show['forumdescription']"><div class="smallfont">$forum[description]</div></if>
<if condition="$show['forumsubscription']"><div class="smallfont"><strong><a href="subscription.php?$session[sessionurl]do=removesubscription&f=$forum[forumid]" rel="nofollow">$vbphrase[unsubscribe_from_this_forum]</a></strong></div></if>
<if condition="$show['subforums']"><div class="smallfont" style="margin-top:$stylevar[cellpadding]px"><strong>$vbphrase[subforums]</strong>: $forum[subforums]</div></if>
</td>
<td class="staff" nowrap="nowrap">$forum[lastpostinfo]</td>
<td class="staff">$forum[threadcount]</td>
<td class="staff">$forum[replycount]</td>
<if condition="$vboptions['showmoderatorcolumn']">
<td class="staff"><div class="smallfont">$forum[moderators] </div></td>
</if>
</tr>
$childforumbits
<else />
<tr align="center">
<td class="alt2"><img src="$stylevar[imgdir_statusicon]/forum_$forum[statusicon].gif" alt="" border="0" id="forum_statusicon_$forum[forumid]" /></td>
<td class="alt1Active" align="$stylevar[left]" id="f$forum[forumid]">
<div>
<a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]"><strong>$forum[title]</strong></a>
<if condition="$show['browsers']"><span class="smallfont">(<phrase 1="$forum[browsers]">$vbphrase[x_viewing]</phrase>)</span></if>
</div>
<if condition="$show['forumdescription']"><div class="smallfont">$forum[description]</div></if>
<if condition="$show['forumsubscription']"><div class="smallfont"><strong><a href="subscription.php?$session[sessionurl]do=removesubscription&f=$forum[forumid]" rel="nofollow">$vbphrase[unsubscribe_from_this_forum]</a></strong></div></if>
<if condition="$show['subforums']"><div class="smallfont" style="margin-top:$stylevar[cellpadding]px"><strong>$vbphrase[subforums]</strong>: $forum[subforums]</div></if>
</td>
<td class="alt2" nowrap="nowrap">$forum[lastpostinfo]</td>
<td class="alt1">$forum[threadcount]</td>
<td class="alt2">$forum[replycount]</td>
<if condition="$vboptions['showmoderatorcolumn']">
<td class="alt1"><div class="smallfont">$forum[moderators] </div></td>
</if>
</tr>
$childforumbits
</if>