我目前正在使用Magento 1.7.0.2
我试图将特价颜色从灰色更改为更吸引人的颜色,如红色或橙色。
在系统配置设计中,我看到当前的包是默认的,主题模板被称为Blanco,手机iphone等的例外被称为:blancoresponsive
所以我在skin / frontend / default / blanco / css / styles.css中更改了文件 查找代码
.special-price .price-label { font-size:11px; text-transform:uppercase; white-space:nowrap; color:#000; }
.special-price .price { font-size:16px; }
我改为
.special-price .price-label { font-size:11px; text-transform:uppercase; white-space:nowrap; color:#cd5033; }
.special-price .price { font-size:16px; color:#cd5033; }
在刷新magento缓存和缓存存储之后,价格不会改变。
之后我试图从其他主题文件中更改styles.css,例如default和blancoresponsive,还有另一个名为blanco_bk的主题文件 无论如何没有任何作品它仍然显示黑色。
无论如何都知道出了什么问题? 感谢
答案 0 :(得分:0)
转到skin / frontend / yourtheme / default / css / styles.css
in styles.css
关于806行
/* Old price */
.old-price { margin:0; }
.old-price .price-label { font-size:12px; font-weight:bold; white-space:nowrap; }
/*.old-price .price { font-weight:bold; font-size:13px; color:#396f00; text-decoration:line-through; }*/
.old-price .price {
font-weight:bold;
font-size:13px;
color:#333;
text-decoration:line-through;
}
/* Special price */
.special-price { margin:0; }
.special-price .price-label { font-size:11px; font-weight:bold; text-transform:uppercase; white-space:nowrap; color:#000; }
.special-price .price {
font-size:13px;
font-weight:bold;
color: #C00;
}