- 记录
- 好友
- 收听
- 听众
- 阅读权限
- 20
- 在线时间
- 小时
- 注册时间
- 2007-6-15
- 最后登录
- 1970-1-1
|
发表于 2009-6-5 17:03:25
|
|阅读模式
欢迎加入霸气网游公会社区,马上注册,享用更多功能。
您需要 登录 才可以下载或查看,没有账号?加入霸气
x
第一:去除有无新帖图标
去除有无新贴图标
打开template/FENGGE/css_common.htm
找到:
-
- .list th { background: url({IMGDIR}/forum.gif) 5px 10px no-repeat; padding-left: 45px !important; }
复制代码-
- .list th.new { background-image: url({IMGDIR}/forum_new.gif); }
复制代码
删除
第二:让横排也可以显示自定义图标
打开templates\default\discuz.htm
查找:
-
- <th width="$cat[forumcolwidth]"{$forum[folder]}>
复制代码
改为:
-
- <th width="$cat[forumcolwidth]">{$forum[icon]}
复制代码
第三:美化横排
1.查找:
-
- <h2><a href="forumdisplay.php?fid=$forum[fid]" {if $forum[redirect]}target="_blank"{/if}>$forum[name]</a><!--{if $forum[todayposts]}--><em> ({lang index_today}: <strong>$forum[todayposts]</strong>)</em><!--{/if}--></h2>
- <!--{if !$forum[redirect]}-->
- <p>{lang forum_threads}: $forum[threads], {lang forum_posts}: $forum[posts]</p>
- <!--{if $forum['permission'] == 1}-->
- <p>{lang private_forum}
- <!--{else}-->
- <p>{lang forum_lastpost}:
- <!--{if is_array($forum['lastpost'])}-->
- <a href="redirect.php?tid=$forum[lastpost][tid]&goto=lastpost#lastpost" title="{echo cutstr($forum[lastpost][subject], 30)} {lang forum_lastpost_by} {if $forum['lastpost']['author']}$forum['lastpost']['authorusername']{else}{lang anonymous}{/if} ">$forum[lastpost][dateline]</a>
- <!--{else}-->
- {lang never}
- <!--{/if}-->
- </p>
- <!--{/if}-->
- <!--{else}-->
- <p>{lang url_link}</p>
- <!--{/if}-->
- </th>
复制代码
代替为:
-
- <h2><a href="forumdisplay.php?fid=$forum[fid]">$forum[name]</a><!--{if $forum[todayposts]}--><em> ({lang index_today}: $forum[todayposts])</em><!--{/if}--></h2>
- <!--{if $forum[description]}--><p>$forum[description]</p><!--{/if}-->
- <p>{lang forum_threads}: $forum[threads], {lang forum_posts}: $forum[posts], {lang forum_lastpost}:
- <!--{if is_array($forum['lastpost'])}-->
- <a href="redirect.php?tid=$forum[lastpost][tid]&goto=lastpost#lastpost">$forum[lastpost][dateline]</a>
- {lang forum_lastpost_by} <!--{if $forum['lastpost']['author']}-->$forum['lastpost']['author']<!--{else}-->{lang anonymous}<!--{/if}-->
- <!--{else}-->
- {lang never}
- <!--{/if}-->
- </p>
- </th>
复制代码
这段代码是最后发表时间,如果存在则显示最后发表时间,反之去掉则不显示!
-
- <a href="redirect.php?tid=$forum[lastpost][tid]&goto=lastpost#lastpost">$forum[lastpost][dateline]</a>
复制代码 |
|