Quote:
Originally Posted by jluerken
Is there a chance to add the option to change the complete background color of the lines so that they're not only divided but also different in their color?
|
edit templates => Forum Display Templates:
In Template: FORUMDISPLAY_Seperate, FORUMDISPLAY_Seperate2, & FORUMSDISPLAY_Seperate_top
Look for:
Code:
<tr>
<td class="thead" colspan="<if condition="$show['threadicons']">7<else />6</if>">$vbphrase[delim_normal]</td>
</tr>
Change your class="thead' to whatever you wish
Example:
Code:
<tr>
<td class="alt3" colspan="<if condition="$show['threadicons']">7<else />6</if>">$vbphrase[delim_normal]</td>
</tr>
Or any other class you have set in the css file. (tcat, alt1, alt2, or alt3 normally)
Still trying to figure out how to change the height of it though. So if anyone can help me with that, it would be greatly appreciated.