-
white-space: nowrap;
这个CSS属性大家估计不怎么用,其作用就是强制不换行
语法:
white-space : normal | pre | nowrap
取值:
normal : 默认值。默认处理方式。文本自动处理换行。假如抵达容器边界内容会转到下一行
pre : 换行和其他空白字符都将受到保护。这个值需要IE6+或者 !DOCTYPE 声明为 standards-compliant mod...[阅读全文]
-
修改文件:includes/lib_common.php
修改目的:【将“0元”商品显示为“价格面议”】
修改方法:
return sprintf($GLOBALS['_CFG']['currency_format'], $price);
替换为:
if (intval($price) == 0) { return "价格面议";} else { retu...[阅读全文]
-
商品详情页显示折扣、节省的方法
修改includes\lib_goods.php 文件,在大约343行(即注释“/* 获得商品的销售价格 ”)后面添加:
$row['sheng_price'] = $row['market_price']-$row['shop_price'];
$row['zheko...[阅读全文]