分类树模版设置 特来求救

2016-07-07 16:17 来源:www.chinab4c.com 作者:ecshop专家

我现在用的是ecshop2.7
Blueocean模版 现在是一行两列的我想改成2列或3列下面是分类树模版代码
<meta http-equiv="Content-Type" content="text/html; charset=gbk">
<div class="area" id="category_tree">
<div class="top"><span></span></div>
<div class="content">
<h1>&nbsp;&nbsp;商品分类</h1>
<dl>
<!--{foreach from=$categories item=cat}-->
<dt><font class="f1">·</font><a href="{$cat.url}">{$cat.name|escape:html}</a></dt>
<dd>
<!--{foreach from=$cat.cat_id item=child}-->
<a href="{$child.url}">{$child.name|escape:html}</a>
<!--{/foreach}-->
</dd>
<!--{/foreach}-->
</dl>
</div>
<div class="bottom"><span></span></div>
</div>

回答:
模板: <a href="{$child.url}">{$child.name|escape:html}</a>
替换:
<a style="float:left;width:46%;" href="{$child.url}">{$child.name|escape:html}</a>
style.css
搜索: #category_tree dd
替换:
#category_tree dd{padding:0 10px; font-size:12px; line-height:16px; color:#1354bf;width:88%;height:auto;overflow:hidden;}

太感谢你了现在好了