Discuz!官方免费开源建站系统

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

仿DVBBS界面今日发帖数(4个版本下载覆盖)

[复制链接]
拳头 发表于 2008-6-15 22:28:33 | 显示全部楼层 |阅读模式
看到不少人问,提供一下,参考自“蓝灰色的奇迹”风格

效果图:


css.htm(6.1为css_common.htm)
查找:
  1. .forumlist th { padding-left: 55px !important; }
  2. .forumlist tbody th { background-image: url({IMGDIR}/forum.gif); background-repeat: no-repeat; background-position: 13px 50%; }
  3. .forumlist tbody th.new { background-image: url({IMGDIR}/forum_new.gif); }
复制代码
替换以下内容或者删除后在最后面加上:
  1. .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; }
  2. .todaynew p { display:block; font-weight:100; margin:0px; padding:0px; border:0px; color:#858D92;}
  3. .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; }
  4. .today p { display:block; font-weight:100; margin:0px; padding:0px; border:0px; color:#858D92; font-size:11px; }
复制代码
discuz.htm查找:
  1. <h2><a href="forumdisplay.php?fid=$forum[fid]">$forum[name]</a><!--{if $forum[todayposts] && !$forum['redirect']}--><em> ({lang index_today}: $forum[todayposts])</em><!--{/if}--></h2>
复制代码
替换为:
  1. <!--{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}-->
  2.                         <h2><a href="forumdisplay.php?fid=$forum[fid]">$forum[name]</a></h2>
复制代码
横排,查找:
  1. <h2><a href="forumdisplay.php?fid=$forum[fid]">$forum[name]</a><!--{if $forum[todayposts]}--><em> ({lang index_today}: $forum[todayposts])</em><!--{/if}--></h2>
复制代码
替换为:
  1. <!--{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>
复制代码
子版块,forumdisplay_subforum.htm查找:
  1. <h2><a href="forumdisplay.php?fid=$sub[fid]">$sub[name]</a><!--{if $sub[todayposts]}--> <em>({lang index_today}: $sub[todayposts])</em><!--{/if}--></h2>
复制代码
替换为:
  1. <!--{if $sub[todayposts]}--><div class="todaynew">$sub[todayposts]<p>{lang index_today}</p></div><!--{else}--><div class="today">0<p>{lang index_today}</p></div><!--{/if}-->$sub[icon]
  2.                                                 <h2><a href="forumdisplay.php?fid=$sub[fid]">$sub[name]</a></h2>
复制代码
横排,查找:
  1. <h2><a href="forumdisplay.php?fid=$sub[fid]">$sub[name]</a><!--{if $sub[todayposts]}--><em> ({lang index_today}: $sub[todayposts])</em><!--{/if}--></h2>
复制代码
替换为:
  1. <!--{if $sub[todayposts]}--><div class="todaynew">$sub[todayposts]<p>{lang index_today}</p></div><!--{else}--><div class="today">0<p>{lang index_today}</p></div><!--{/if}-->
  2.                 $sub[icon]<h2><a href="forumdisplay.php?fid=$sub[fid]">$sub[name]</a></h2>
复制代码
补充,这样设置之后,下面的有新帖版块就显得多余了,
discuz.htm
查找删除:
  1. <div class="legend">
  2.         <label><img src="{IMGDIR}/forum_new.gif" alt="{lang forum_newposts}" />{lang forum_newposts}</label>
  3.         <label><img src="{IMGDIR}/forum.gif" alt="{lang forum_nonewpost}" />{lang forum_nonewpost}</label>
  4. </div>
复制代码
或者将
<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>
改为“本论坛言论。。。。。。。立场无关”

最后更新CSS缓存。

图片附件上传到images\default
第一张:digg.gif 第二张:digg_blue.gif

图片附件:


图片附件2:


下面是已经修改好的文件,如果你没作过任何修改,请下载相应版本,覆盖。

[ 本帖最后由 拳头 于 2008-9-30 21:48 编辑 ]

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x

评分

5

查看全部评分

xuzhoujs 发表于 2008-6-15 22:30:18 | 显示全部楼层
坐沙发 , 谢谢你
回复

使用道具 举报

 楼主| 拳头 发表于 2008-6-15 22:31:18 | 显示全部楼层
如果图片更名,css.htm也得作相应修改
({IMGDIR}/forum.gif);
({IMGDIR}/digg_blue.gif)
回复

使用道具 举报

xuzhoujs 发表于 2008-6-15 22:32:31 | 显示全部楼层
原帖由 拳头 于 2008-6-15 22:31 发表
如果图片更名,css.htm也得作相应修改
({IMGDIR}/forum.gif);
({IMGDIR}/digg_blue.gif)

我知道了兄弟
回复

使用道具 举报

 楼主| 拳头 发表于 2008-6-15 23:04:21 | 显示全部楼层
我修改过一些地方,可能跟原来的不一样,如出问题,请跟帖~
回复

使用道具 举报

shiheng 发表于 2008-6-15 23:25:14 | 显示全部楼层
回复

使用道具 举报

 楼主| 拳头 发表于 2008-6-16 07:28:52 | 显示全部楼层
给奖励点钱
回复

使用道具 举报

xuzhoujs 发表于 2008-6-16 11:26:33 | 显示全部楼层
原帖由 拳头 于 2008-6-16 07:28 发表
给奖励点钱

给了阿。
回复

使用道具 举报

 楼主| 拳头 发表于 2008-6-16 11:31:03 | 显示全部楼层
6元了,谢谢!
下次可再买风格研究研究
回复

使用道具 举报

xuzhoujs 发表于 2008-6-16 20:16:58 | 显示全部楼层
原帖由 拳头 于 2008-6-16 11:31 发表
6元了,谢谢!
下次可再买风格研究研究

你也给我一个奖励吧

评分

1

查看全部评分

回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|Discuz! 官方站 ( 皖ICP备16010102号 )star

GMT+8, 2024-11-22 19:38 , Processed in 0.032052 second(s), 4 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

快速回复 返回顶部 返回列表