PDA

View Full Version : spacer_open


pierre27
06-30-2007, 08:42 PM
Hello,
In my style templates if I clean the code out of spacer_open all the tables run out of the page. If I leave it on as users post in the thread the size of the table keep on getting smaller and smaller. And my spacer_close is empty.

Here is the code for my spacer_open:

<!-- open content container -->
<if condition="$show['old_explorer']">
<table cellpadding="0" cellspacing="0" border="0" width="$stylevar[outertablewidth]" align="center"><tr><td class="page" style="padding:0px $stylevar[spacersize]px 0px $stylevar[spacersize]px">
<else />
<div align="center">
<div class="page" style="width:$stylevar[outerdivwidth]; text-align:$stylevar[left]">
<div style="padding:0px $stylevar[spacersize]px 0px $stylevar[spacersize]px">
</if>

Can someone please tell me what to do.

Thank you

Fixed the problem.

Thanks

Dismounted
07-01-2007, 07:19 AM
Put this into spacer_close:
<!-- close content container -->
<if condition="$show['old_explorer']">
</table>
<else />
</div>
</div>
</div>
</if>