I have one forum title that I want to stand out, how can I change the title background for that specific forum?
--------------- Added at 01:17 ---------------
This is how it's done, in case anyone else needs to know...
Step #1 find in template(s): forumhome_forumbit_level1_post / forumhome_forumbit_level2_post
Step #2 add
conditional statement to code
Step #3 replace 'X,Y,Z' & '#123456' with forum (id) and color
level1
Code:
Quote:
<td <if condition="in_array($forum[forumid], array(X,Y,Z))">style="background: #123456;"</if> class="alt1Active" colspan="2" align="$stylevar[left]" id="f$forum[forumid]">
|
level2
Code:
Quote:
<td <if condition="in_array($forum[forumid], array(X,Y,Z))">style="background: #123456;"</if> class="alt1Active" align="$stylevar[left]" id="f$forum[forumid]">
|