Quote:
Originally Posted by iguanairs
Hello,
Put the "if condition" after the spacer close. Currently it will only close if the post count is 1 because you have it wrapped in the condition.
So it should look like this:
Code:
$spacer_open
<if condition="$post[postcount] == 1">
|
I moved $spacer_
CLOSE and $spacer_open out of the if condition and that did not fix it. Besides the spacers worked perfectly fine inside the if condition using this:
PHP Code:
<if condition="$post[postcount] == 1">
$spacer_open
<div style="padding:0px 0px $stylevar[cellpadding]px 0px">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="thead" align="left">Sponsored Links</td>
</tr>
<tr>
<td class="alt1" align="center">
<adsense code here>
</td>
</tr>
</table>
</div>
$spacer_close
</if>
So I was pretty sure that isn;t the problem.