|
    
威望- 495 点
金钱- 1000237 元
人气- 466 度
体力- 1117 点
 
|
discuz6.1首页去掉forum_new、forum.gif有无新帖图片!
打开templates/default/css_common.htm
搜索- .forumlist th { padding-left: 55px !important; }
复制代码 换成- .forumlist th { padding-left: 5px !important; }
复制代码 搜索- .forumlist tbody th { background-image: url({IMGDIR}/forum.gif); background-repeat: no-repeat; background-position: 13px 50%; }
- .forumlist tbody th.new { background-image: url({IMGDIR}/forum_new.gif); }
复制代码 换成- .forumlist tbody th { background-image: none; }
- .forumlist tbody th.new { background-image: none; }
复制代码 保存覆盖即可!;-)
打开templates/default/discuz.htm
搜索- <div class="legend">
- <label><img src="{IMGDIR}/forum_new.gif" alt="{lang forum_newposts}" />{lang forum_newposts}</label>
- <label><img src="{IMGDIR}/forum.gif" alt="{lang forum_nonewpost}" />{lang forum_nonewpost}</label>
- </div>
复制代码 删除掉,保存覆盖即可! |
|