浏览历史记录哪里怎么改

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

浏览历史记录商品名称字数太长排到第二排,我想把字数缩短,哪里改,还有下面的商品售价几个字在哪里改,(我只改这个地方的,其他地方不改的) 我用的是2.7 red_concise模板


未命名.jpg

回答:
你找到页面后 看看应用的class 或者id之类
在style里搜索下 就可以了
一个个调试



这个需要改程序的,
打开 includes/lib_insert.php 找到 function insert_history()



$str.='<ul class="clearfix"><li class="goodsimg"><a href="'.$goods['url'].'" target="_blank"><img src="'.$goods['goods_thumb'].'" alt="'.$goods['goods_name'].'" class="B_blue" /></a></li><li><a href="'.$goods['url'].'" target="_blank" title="'.$goods['goods_name'].'">'.$goods['short_name'].'</a><br />'.$GLOBALS['_LANG']['shop_price'].'<font class="f1">'.$goods['shop_price'].'</font><br /></li></ul>';

修改为

$str.='<ul class="clearfix"><li class="goodsimg"><a href="'.$goods['url'].'" target="_blank"><img src="'.$goods['goods_thumb'].'" alt="'.$goods['goods_name'].'" class="B_blue" /></a></li><li><a href="'.$goods['url'].'" target="_blank" title="'.$goods['goods_name'].'">'.sub_str($goods['short_name'],20).'</a><br />'.秒杀价格:.'<font class="f1">'.$goods['shop_price'].'</font><br /></li></ul>';

如20不够短 还可以改的更小,自己把握吧,

这个需要改程序的,
打开 includes/lib_insert.php 找到 function insert_history()



$str.=''.$goods['short_name'].''.$GLOBALS['_LANG']['shop_price'].''.$goods['shop_price'].'';

修改为

$str. ...
zhangyh 发表于 2009-9-7 15:05


果然是高手,谢谢啊

非常好用

一种方法,要把调用的地方的左宽度加宽,可在CSS里改。如果不懂,另一种方法可以改下文字内容的长度,在后台有个语言项更改位置,搜下你现在的文字,换成你要的文字就ok了

做个记号

要改下程序,我之前改过,有什么问题可以联系我

犀利!学习了