Quote:
Originally Posted by Oblivion Knight
Ouch! 4 if conditions just for that.?
Would this not be better (2 if conditions)?
HTML Code:
<tr><td class="thead" colspan="<if condition="$show['threadicons'] AND $show['inlinemod']">7<else /><if condition="($show['threadicons'] AND !$show['inlinemod']) OR (!$show['threadicons'] AND $show['inlinemod'])">6<else />5</if></if>"> </td></tr>
Plus, if you feel that the separator is too thick, you could use this instead ( see demo)..
HTML Code:
<tr><td class="thead" colspan="<if condition="$show['threadicons'] AND $show['inlinemod']">7<else /><if condition="($show['threadicons'] AND !$show['inlinemod']) OR (!$show['threadicons'] AND $show['inlinemod'])">6<else />5</if></if>"><img src="$vboptions[cleargifurl]" width="1" height="1" alt="" /></td></tr>

|
The conditions work fine either way.