It looks like you are starting your loop outside of the table and looping the table itself.
I'm no pro at this, and in the middle of my own personal nightmare but try this.
Code:
{* $Id: products.tpl,v 1.21.2.2 2003/03/11 10:49:14 svowl Exp $ *}
{section name=product loop=$products}
<table border=0 width=100%>
<tr><td width=90 align=center valign=top>
change this to
Code:
{* $Id: products.tpl,v 1.21.2.2 2003/03/11 10:49:14 svowl Exp $ *}
<table border=0 width=100%>
{section name=product loop=$products}
<tr><td width=90 align=center valign=top>
and change this at the end
Code:
{/if}
{/if}
</td></tr>
</table>
{/section}
change it to
Code:
{/if}
{/if}
{/section}
</td></tr>
</table>
See if that helps. The section loop is within my main table. It is not in the code you posted. A mis-looped table might be part of your troubles.
Good Luck! Maybe fix your thread title too. It's kinda stuck mid sentence.