clothing二级分类一行显示二列后出现白块解决办法

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



clothing模板分类栏二级分类按http://bbs.ecshop.com/viewthread.php?tid=86465&page=1改成一行二栏后在IE6中分类部分出现白色块及错位情况,经过试验成功解决此问题,在此谢谢各位!!现将修改共享出来,希望能对大家有所帮助!

1.首先按bjecshop的方法修改style.css如下:

#category_tree .content dt{
background:url(images/bg_category_line.gif) repeat-x left bottom; color:#fff;
padding:0 0 2px 5px; margin:8px 0; width:160px;
}
#category_tree .content dd{color:#ff8c8b; padding:0 0 0 15px;overflow:hidden;}
#category_tree .content dd a{color:#ff8c8b; text-decoration:none; margin-right:8px; min-width:70px;_width:70px;white-space:nowrap;display:block;float:left;}



2.然后在库项目管理里面找到category_tree.lbi,改动如下:

将<a href="{$child.url}">{$child.name|escape:html}</a>这一行前面加<div>,后面加</div>,修改后如下:


<div>
<a href="{$child.url}">{$child.name|escape:html}</a>
</div>

保存后预览后分类正常.

效果见http://www.agoooo.com

回答:
恩 加个层