怎么使clothing 2.6.2商品二级分类每行显示两个

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

我想实现的效果

------------------------

一级分类

二级1二级2
二级3二级4

------------------------

模板原效果为

一级分类

二级1 二级2 二
级3 二级3

这样太难看了~~~

回答:
循环次数%除2==0输出一个<br/> 试下

循环次数%除2==0输出一个 试下
myareaway 发表于 2009-5-14 16:52


是在哪修改啊????什么意思啊,没看懂啊

是我的这样的吗?楼主你说的???www.nmgpp.com/shop
wypacdc 发表于 2009-5-14 22:11


晕,骗IP呢。。。。

什么骗IP?????我的就是修改成一级分类下显示多排分类~~~你瞎说什么呢?
难道楼主说的不是我那样的效果么?

我的修改 Digital_city 这个板子

www.bingni.com

修改一下li 宽度50% 如果部分两列的话 就慢慢下调然后设置居左就可以了

1.修改下style.css,通过3浏览器,(红色为添加的):
#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-float:left;width:75px;_width:75px;display:block;white-space:nowrap;}
2.修改下category_tree.lbi(红色为添加的):
<dd>
<!--{foreach from=$cat.children item=child}-->
<a href="{$child.url}">{$child.name|escape:html}</a>
<!--{/foreach}-->
<div style="clear:both;"></div>
</dd>
3.觉得自己修改麻烦的,直接用附件的文件替换。

补丁.rar (5.7 KB)


1.修改下style.css,通过3浏览器,(红色为添加的):
#category_tree .content dd{color:#ff8c8b; padding:0 0 0 15px;overflow:hidden;}
#category_tree .content dd a{color:#ff8c8b; text-decoration:none; mar ...
铃舞风想 发表于 2009-5-18 10:53


晕 修改了半天也不行,覆盖也不行?怎么回事呢?

1.修改下style.css,通过3浏览器,(红色为添加的):
#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:75px;_width:75px;white-space:nowrap;display:block;float:left;}
/*修改下,原先写错了写成min-float*/
2.还有问题直接mp我ftp和网址把~

1.修改下style.css,通过3浏览器,(红色为添加的):
#category_tree .content dd{color:#ff8c8b; padding:0 0 0 15px;overflow:hidden;}
#category_tree .content dd a{color:#ff8c8b; text-decoration:none; mar ...
铃舞风想 发表于 2009-5-20 02:15

谢谢啦,我在试下。

我发现因为铃舞风想的float:left用在<a>标签,即使在外面的div加上class=clearfix也没法解决float闭合。现在我已经解决了这个问题,方法如下:
在style.css加上下面这行:(加text-align:right是因为我觉得小分类的文字右对齐好看些)
#category_tree .content .catchildren{float:left; min-width:75px; _width:75px; white-space:nowrap; display:block; text-align:right;}
然后在库项目管理里面找到category_tree.lbi,改动如下:
第三行改成<div class="content clearfix">
在<a href="{$child.url}">{$child.name|escape:html}</a>这一行前面加<div class="catchildren">,后面加</div>

问题解决!

已经搞定了,谢谢!~

你们用的是默认模板吗?别的模板好像不行!

我的style.css 这样的,要怎么修改 ?


/*商品分类*/
#category_tree{border:4px solid #f1faff; background-color:#fff;}
#category_tree dl{margin:6px;}
#category_tree dt{background:url(images/lineBg.gif) repeat-x left bottom;
color:#3f3f3f;padding:2px 0 3px 12px;
}
#category_tree dt a{background:url(images/bg.gif) no-repeat 0 -69px;
color:#3f3f3f; padding-left:15px; text-decoration:none;
}
#category_tree dd{padding:3px 0 3px 10px;}
#category_tree dd a{color:#404040; text-decoration:none;}
#category_tree dd a:hover{color:#ff6600; text-decoration:none;}