|
修改的具体方法如下:
1、打开templates\\default\\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); }
复制代码 删除!
然后在该文件最底部加入:-
- .todaynew { width:58px; height:55px; float:left; background:url({IMGDIR}/digg.gif) no-repeat center top; margin:5px; text-align:center; color:#f60; font-weight:bold; font-size:12px; line-height:23px; font-family: Georgia, "Times New Roman", Times, serif; }
- .todaynew p { display:block; font-weight:100; margin:0px; padding:0px; border:0px; color:#858D92;}
- .today { width:58px; height:55px; float:left; background:url({IMGDIR}/digg_blue.gif) no-repeat center top; margin:5px; text-align:center; color:#217AB3; font-weight:bold; font-size:12px; line-height:23px; font-family: Georgia, "Times New Roman", Times, serif; }
- .today p { display:block; font-weight:100; margin:0px; padding:0px; border:0px; color:#858D92; font-size:11px; }
-
复制代码 2、打开templates\\default\\disucz.htm文件,查找:-
- <h2><a href="forumdisplay.php?fid=$forum[fid]" {if $forum[redirect]}target="_blank"{/if}>$forum[name]</a><!--{if $forum[todayposts] && !$forum['redirect']}--><em> ({lang index_today}: <strong>$forum[todayposts]</strong>)</em><!--{/if}--></h2>
复制代码 删除!
查找:在上面加:-
- <!--{if $forum[todayposts] && !$forum['redirect']}--><div class="todaynew">$forum[todayposts]<p>{lang index_today}</p></div><!--{else}--><div class="today">0<p>{lang index_today}</p></div><!--{/if}-->
复制代码 继续查找:- <!--{if $forum[description]}--><p>$forum[description]</p><!--{/if}-->
复制代码 在上面添加:-
- <h2><a href="forumdisplay.php?fid=$forum[fid]">$forum[name]</a></h2>
复制代码 继续查找:(这一步是修改横排时候的,如果没有横排则不需要修改)-
- <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[todayposts] && !$forum['redirect']}--><div class="todaynew">$forum[todayposts]<p>{lang index_today}</p></div><!--{else}--><div class="today">0<p>{lang index_today}</p></div><!--{/if}--><h2><a href="forumdisplay.php?fid=$forum[fid]">$forum[name]</a></h2>
复制代码 最后下载附件中的两个图片上传至论坛目录/images目录下!
至此,修改完毕!更新缓存、更新CSS缓存
|
|