locroc产品展示列表产品名称居中如何设置啊?

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

如图显示,如何让产品名称居中显示,产品价格隐藏不显示啊?谢谢

{3A560C09-071C-4277-950A-2579722FC163}副本.gif (8.14 KB)

{3A560C09-071C-4277-950A-2579722FC163}副本.gif


回答:
不知道你的版本是什么,不过你可以试下

打开layout.css
找到
.itemGrid1 .item{float:left}

改为
.itemGrid1 .item{float:left; text-align:center;}


compomemt.css

找到上面两段


#globalGoodsList .itemGrid .item {
line-height: 18px;
height: 217px;
position: relative;
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: #e5e5e5;
}
#globalGoodsList .itemGrid .item p{
height: 18px;
line-height: 18px;
}



#globalGoodsList .itemGrid .item {
line-height: 18px;
height: 217px;
position: relative;
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: #e5e5e5;
text-aling:center;
}
#globalGoodsList .itemGrid .item p{
height: 18px;
line-height: 18px;
text-aling:center;
}