关于Genuine模板浏览历史变形的解决方法(其它 模板应该同样适用);

2016-07-07 14:55 来源:www.chinab4c.com 作者:ecshop专家



1、先看原理

首先是通过{insert name='history'} 加载的信息在 histpry.ibl


主要样式修改要在includes/lib_insert.php
的function insert_history() 方法。

2.修改如下

a.首先说下原因:是js控制整个historybox高度;根据每个li叠加得出然而原样式没有控制li的高度而是根据内容自适应,所以出现错位。
b.修改文字内容li的样式单独控制,使整个li的高度唯一确定,则问题自然迎刃而解
修改 {insert name='history'}内容lib_insert.php的有关内容修改如下
  1. <ul class="clearfix">
  2. <li class="goodsimg"><a href="'.$goods['url'].'" target="_blank"><img src="'.$goods['goods_thumb'].'" alt="'.$goods['goods_name'].'" class="B_blue" /></a></li>
  3. <li class="goodshistorytext">
  4. <a href="'.$goods['url'].'" target="_blank" title="'.$goods['goods_name'].'">'.$goods['short_name'].'</a><br />'.$GLOBALS['_LANG']['shop_price'].'
  5. <font class="f1">'.$goods['shop_price'].'</font><br />
  6. </li>
  7. </ul>
复制代码

c.样式修改如下

  1. /*history*/
  2. .history_list ul{
  3. margin-bottom:6px;*padding-bottom:6px; height:83px; width:182px;background:url(images/historybox.gif) no-repeat 0px 0px ;
  4. }
  5. .history_list ul li{
  6. float:left;
  7. }
  8. .history_list li.goodsimg{
  9. width:62px;
  10. }
  11. .goodshistorytext{ height:60px; width:114px; margin-left:6px;overflow:hidden; float:left;}
  12. .history_list li.goodsimg img{
  13. width:60px; height:60px; border:1px solid #ccc;
  14. }
  15. #clear_history{
  16. text-align:right; height:20px;
  17. }
  18. #clear_history a{
  19. cursor:pointer;
  20. }
复制代码


d
修改的图片已经打包。

回答:
很欣赏LZ的签名
更加欣赏LZ的头像~

呵呵 谢谢 齐迹

谢谢分享!

试了,确实有用,谢谢楼主

客气 彼此帮助嘛~ 5# yixuan_2

看不 懂能解释一下吗 LZ

首先是你要按我帖子中的
b步骤 把lib_insert.php 92 行左右的$str.='',''中间的全部替换掉
然后找到 themes/自己模板/style.css 中的/*history*/ 下面的 一直到下一个/*XX*/上面的代码替换掉
再然后把那个打包图片放在themes/自己模板/images下 7# jxxjh

首先是你要按我帖子中的
b步骤 把lib_insert.php 92 行左右的$str.='',''中间的全部替换掉
然后找到 the ...
ectianjiao 发表于 2010-6-1 14:54



版主呀。我是菜鸟,很菜很菜 。

但我还是没看明白。 可不可以说的详细点。 哪些代码替换哪些代码。

92行的¥......中间全部替换掉,,,中间很多的呀。。。

我在研究中,如果不懂还请楼主教教我,非常感谢热心版主

感谢分享,终于成功了,谢谢哦




一起进步 一起进步~~

非常感谢楼主.我已经弄好了

修正一下

b步骤 把lib_insert.php 92 行左右的$str.='','' 中间的全部替换掉



b步骤 把lib_insert.php 92 行左右的$str.=',' 中间的全部替换掉


www.thinkpad.cc

大家可以看看

您好我用这个方法以后原来错位的地方变成乱码了 请问怎么办我用的是最新版

这个方法不错