本帖最后由 chen345210 于 2011-11-2 19:52 编辑
效果图:
演示地址:http://bbs.7drt.com
首先下载附件.将图片传至当前模板的image文件夹下,默认模板路径为./static/image/common
此次要修改的文件有三个!
分别是forum/discuz.htm forum/forumdisplay_subforum.htm common/common.css
步骤:
打开./template/(当前风格目录)/forum/discuz.htm,查找:
- <td class="fl_icn" {if !empty($forum[extra][iconwidth]) && !empty($forum[icon])} style="width: {$forum[extra][iconwidth]}px;"{/if}>
- <!--{if $forum[icon]}-->
- $forum[icon]
- <!--{else}-->
- <a href="$forumurl"{if $forum[redirect]} target="_blank"{/if}><img src="{IMGDIR}/forum{if $forum[folder]}_new{/if}.gif" alt="$forum[name]" /></a>
- <!--{/if}-->
- </td>
复制代码 修改为:
- <td class="fl_icn" style="width:42px;">
- <!--{if $forum[todayposts] && !$forum['redirect']}--><div class="drtmx">$forum[todayposts]<br /><span style="color:#000;">今日</span></div><!--{else}--><div class="drtmx">N/A<br /><span style="color:#000;">今日</span></div><!--{/if}-->
- </td>
复制代码
再查找:
- <div class="fl_icn_g"{if !empty($forum[extra][iconwidth]) && !empty($forum[icon])} style="width: {$forum[extra][iconwidth]}px;"{/if}>
- <!--{if $forum[icon]}-->
- $forum[icon]
- <!--{else}-->
- <a href="$forumurl"{if $forum[redirect]} target="_blank"{/if}><img src="{IMGDIR}/forum{if $forum[folder]}_new{/if}.gif" alt="$forum[name]" /></a>
- <!--{/if}-->
- </div>
复制代码 修改为:
- <div class="fl_icn_g" style="width:58px;">
- <!--{if $forum[todayposts] && !$forum['redirect']}--><div class="drtmx">$forum[todayposts]<br /><span style="color:#000;">今日</span></div><!--{else}--><div class="drtmx">N/A<br /><span style="color:#000;">今日</span></div><!--{/if}-->
- </div>
复制代码
然后打开./template/(当前风格目录)/forum/forumdisplay_subforum.htm
查找:
- <div class="fl_icn_g"{if !empty($sub[extra][iconwidth]) && !empty($sub[icon])} style="width: {$sub[extra][iconwidth]}px;"{/if}>
- <!--{if $sub[icon]}-->
- $sub[icon]
- <!--{else}-->
- <a href="$forumurl"{if $sub[redirect]} target="_blank"{/if}><img src="{IMGDIR}/forum{if $sub[folder]}_new{/if}.gif" alt="$sub[name]" /></a>
- <!--{/if}-->
- </div>
复制代码 修改为:
- <div class="fl_icn_g" style="width:58px;">
- <!--{if $sub[todayposts] && !$sub['redirect']}--><div class="drtmx">$sub[todayposts]<br /><span style="color:#000;">今日</span></div><!--{else}--><div class="drtmx">N/A<br /><span style="color:#000;">今日</span></div><!--{/if}-->
- </div>
复制代码
再查找:
- <td class="fl_icn" {if !empty($sub[extra][iconwidth]) && !empty($sub[icon])} style="width: {$sub[extra][iconwidth]}px;"{/if}>
- <!--{if $sub[icon]}-->
- $sub[icon]
- <!--{else}-->
- <a href="$forumurl"{if $sub[redirect]} target="_blank"{/if}><img src="{IMGDIR}/forum{if $sub[folder]}_new{/if}.gif" alt="$sub[name]" /></a>
- <!--{/if}-->
- </td>
复制代码
修改为:
- <td class="fl_icn" style="width:58px;">
- <!--{if $sub[todayposts] && !$sub['redirect']}--><div class="drtmx">$sub[todayposts]<br /><span style="color:#000;">今日</span></div><!--{else}--><div class="drtmx">N/A<br /><span style="color:#000;">今日</span></div><!--{/if}-->
- </td>
复制代码
最后打开./template/default/common/common.css
在文件尾加:
- /*7DRT--drtmx 首页美化*/
- .drtmx{ width:42px; height:44px; float:left; background:url({IMGDIR}/drtmx.jpg) no-repeat center top; margin:5px; text-align:center; color:#FF6600; font-size:12px; line-height:23px; font-family: Microsoft Yahei,Lucida Grande,Calibri,Trebuchet MS,Helvetica,Arial,Hiragino Sans GB,STHeiti,Microsoft Jhenghei,sans-serif; }
复制代码
然后登陆后台--更新缓存!
OK!大功告成!
|