首页最新商品显示问题.请各位高手帮忙

2016-07-07 15:05 来源:www.chinab4c.com 作者:ecshop专家



我的ECSHOP首页商品排列设成显示21个...现在是21个已经全部列出来了.只是他一排显示过去.我要让他一排只显示三个...应该怎么写

表格的

<!--{foreach from=$new_goods item=goods}-->
<td valign=top>
<table border=0 width=100% cellpadding=0 cellspacing=1>
<tr>

<td>
<table border=0 width=100%>
<tr align="center">
<td><a href="{$goods.url}"><img src="{$goods.thumb}" alt="{$goods.name|escape:html}" /></a></td>
</tr>
<tr>
<td align=left><a href="{$goods.url}" title="{$goods.name|escape:html}" class=white>{$goods.short_style_name}</a><font color=red></font></td>
</tr>
<tr>
<td align=left class=red><b>US${$goods.shop_price}</b></td>
</tr>
</table>
</td></tr>
</table></td> <!--{/foreach}-->

应该是模板文件的这里吧
应该是改成 一排显示3个.一到第三个就加个</tr><tr>
这段代码具体应该怎么写...