请问一下浏览历史这样式如何修改???

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

各位大侠, 请问一下这里的”浏览历史“所显示的, 为什么有一条红色的横条, 如果我想要修改时, 应该在具体哪个目录下如何修改呢?


http://hs898.com/brand.php?id=1 此页面可看到问题所在,只要多点击其他商品,然后回到此页面.。

未命名.jpg (36.64 KB)
下载次数:1
前天 16:50






本人找到:includes/lib_insert.php

/**
* 调用浏览历史
*
* @accesspublic
* @returnstring
*/
function insert_history()
{
$str = '';
if (!empty($_COOKIE['ECS']['history']))
{
$where = db_create_in($_COOKIE['ECS']['history'], 'goods_id');
$sql= 'SELECT goods_id, goods_name FROM ' . $GLOBALS['ecs']->table('goods') .
" WHERE $where AND is_on_sale = 1 AND is_alone_sale = 1 AND is_delete = 0";
$query = $GLOBALS['db']->query($sql);
$res = array();
while ($row = $GLOBALS['db']->fetch_array($query))
{
$res[$row['goods_id']] = $row;
}
$tureorder = explode(',', $_COOKIE['ECS']['history']);
foreach ($tureorder AS $key => $val)
{
$goods_name = htmlspecialchars($res[$val]['goods_name']);
if ($goods_name)
{
$short_name = $GLOBALS['_CFG']['goods_name_length'] > 0 ? sub_str($goods_name, $GLOBALS['_CFG']['goods_name_length']) : $goods_name;
$str .= '<li><a href="' . build_uri('goods', array('gid' => $val), $goods_name). '" title="' . $goods_name . '">' . $short_name . '</a></li>';
}
}
}
return $str;
}



请问一下, 如何修改哦? 不懂看/

回答:
哪位懂的,麻烦给我留言.......

看看history.lbi和CSS有没有问题。

history.lbi这个文件没有什么的, 只是简单的调用,
另外说 CSS ?

样式都是通过css修改吧
难道你还需要修改代码?