Quote:
Originally Posted by goodguy
The only ones I edited were the right and left columns kinda like this?
<if condition="$vboptions[portal_left_column]">
<td width="160" valign="top">
</td>
<td width="10"> </td>
</if>
|
Your edits to your columns are in the wrong place.
It needs to be
Code:
<if condition="$vboptions[portal_left_column]">
<td width="160" valign="top">
$navigation
$who_has_posted
</td>
<td width="10"> </td>
</if>
Check your right column template too, as its probably the same thing.