好久没写文章了,今天转一个:
想去掉discuz论坛板块下的子论坛前的默认图标,怎样处理?即是:如何删除论坛板块前有无新帖图片forum_new.gif/forum.gif?
方法一:
在论坛风格中找到discuz.htm
查找:
<th width=”$cat[forumcolwidth]“{$forum[folder]}>
替换成
<th width=”$cat[forumcolwidth]“{$forum[folder]} style=”background-image:none;padding-left:10px !important;”>{$forum[icon]}
方法二:
在css文件(css_common.htm)里边分别查找:
.forumlist th { padding-left: 55px !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); }
将他们删除即可