插件作者的标准出来了!Manyou诚邀开发者加盟!
“互联网平台开发者”特刊 有奖征集开发者
立即免费下载 Discuz!6.1.0正式版
Discuz! 6.1.0 使用说明
Discuz!NT2.5正式版发布
开放源码下载
UCenter Home 1.2 正式版发布
官方站 | 帮助文档
基于ECShop的网店托管-卖否
PHP就业培训直通车 | LAMP培训大连
Discuz!收费服务内容及价格
“感谢有你同行”手握手2008年数万元重奖志愿者
Discuz!/ECShop 专用官方虚拟主机
亿声传媒(Insenz)中秋祝福发送中
Comsenz 招聘信息
网店系统ECShop v2.6.0正式版火热发布
基于Discuz!的免费论坛空间5D6D
参与有奖社区调查 赢取台湾5日游
发新话题
打印

[分享] ss5.0B2版官方风格转为ss5.0Final版(GBK+UTF8+UTF8繁)(更新时间2007-01-31 13:30)

ss5.0B2版官方风格转为ss5.0Final版(GBK+UTF8+UTF8繁)(更新时间2007-01-31 13:30)

原贴地址:
http://www.discuz.net/thread-439844-1-1.html


由于被审核过的贴子不能再次编辑,只好在这里重新发布更新了。已添加UTF8版(tzuhang提供的转换器,原贴地址:http://www.discuz.net/thread-476239-1-1.html),不知好用否,希望大家测试后反馈出来!

最后更新时间2007-01-31 13:30

修复11:30更新后疏忽造成的BUG,更新文件:
templates\SupeSite\news_category.html.php




以往更新:
----------------------------------------------------------------------------------------------------- 我是分界线 -------------------------------------------------------------------------

修复频道1级页面搜索问题,解决新闻专题根分类不读取子分类内容问题,去掉日志频道“推荐日志”主题之间间距,修复了每周之星问题(未经测试)等。
更新文件如下:
styles\item_subject_span_list_spacename.html.php
templates\SupeSite\file_index.html.php
templates\SupeSite\goods_index.html.php
templates\SupeSite\link_index.html.php
templates\SupeSite\news_category.html.php
templates\SupeSite\index.html.php



修复资讯察看页面样验证码重复问题,更新文件:
templates\SupeSite\news_view.html.php

此次更新改动比较大:修复日志、文件、书签的分类页面分页问题(未测试),添加系统广告,系统菜单等问题,更新文件:
css\SupeSitemain.css
templates\SupeSite\文件夹下所有文件


修复相册分类菜单的 more 小图片不显示的问题,更新文件:
css\SupeSiteimage.css

更新首页两处小小瑕疵(美观问题)----- 商品板块长名称换行问题、论坛最新图片名称文字缺底部问题,更新文件:

css\SupeSitemain.css
templates\SupeSite\index.html.php


修改相册显示数量,修改首页资讯板块的“最新资讯列表“为两行,修复头条摘要图片缩略图的问题,更新文件:

css\SupeSitemain.css
css\SupeSitenews.css
templates\SupeSite\news_index.html.php
templates\SupeSite\image_index.html.php
templates\SupeSite\index.html.php

应网友要求,现将首页资讯板块的“最新资讯列表“设为两行显示的修改方法列出,有需要的朋友自行修改,方法如下:

打开  css\SupeSitemain.css 文件,找到:
复制内容到剪贴板
代码:
/*最新资讯*/
#newnewslist ul {
        margin: 0;
        padding: 0;
        list-style: none;
        line-height: 22px;
        background: url(../images/SupeSite/dotline_list.gif);
        margin-top: 10px;
}
#newnewslist li {
        background: url(../images/SupeSite/icon_item.gif) no-repeat left;
        padding-left: 10px;
        height: 22px;
        overflow: hidden;
}
#newnewslist li em {
        float: right;
        color: #999;
        font-size: 10px;
        font-style: normal;
}
修改为:
复制内容到剪贴板
代码:
/*最新资讯*/
#newnewslist ul {
        margin: 0;
        padding: 0;
        list-style: none;
        line-height: 22px;
        background: url(../images/SupeSite/dotline_list.gif);
        margin-top: 10px;
        width: 100%;
        overflow: hidden;
        visibility: visible;
}
#newnewslist li {
        background: url(../images/SupeSite/icon_item.gif) no-repeat left;
        padding-left: 10px;
        height: 22px;
        margin-right: 16px;
        float: left;
        width: 42%;
        overflow: hidden;
}
#newnewslist li em {
        float: right;
        color: #999;
        font-size: 10px;
        font-style: normal;
}
打开 templates\SupeSite\index.html.php 文件,找到:
复制内容到剪贴板
代码:
                <div class="mainarea">
                        <div id="newnewslist">
                                <ul>
                                <!--{block name="spacenews" parameter="order/i.dateline

DESC/limit/0,16/cachetime/1830/tpl/item_subject_span_list"}--><!--最新资讯列表-->
                                </ul>
                        </div>
                </div>
改为:
复制内容到剪贴板
代码:
                <div class="mainarea">
                        <div id="newnewslist">
                                <ul>
                                <!--{block name="spacenews" parameter="order/i.dateline

DESC/limit/0,32/cachetime/1830/tpl/item_subject_span_list"}--><!--最新资讯列表-->
                                </ul>
                        </div>
                </div>
打开 css\SupeSitenews.css 找到:
复制内容到剪贴板
代码:
#newnewslist {
        margin-top: -8px;
        margin-bottom: 3px;
}
替换为:
复制内容到剪贴板
代码:
#newnewslist {
        margin-top: -8px;
        margin-bottom: 3px;
}
#newnewslist li {
        margin-right: 0px;
        width: 100%;
}
搞定。
注意:此修改方法没有在“火狐狸浏览器”下作测试,需要的朋友自己测试一下,如果有问题,发贴阐述,谢谢大家长久以来的支持!
祝大家 ----- 圣诞快乐! 元旦快乐!!!




修复资讯2级菜单伸缩问题、修复TAG显示图片问题,添加论坛分类页面2级子分类版块。更新文件:
为了不跟默认模板冲突,增加:css\SupeSitesite.css文件
css\SupeSitebbs.css
templates\SupeSite\news_hader.index.html.php
templates\SupeSite\bbs_forumdisplay.html.php

修复同城空间搜索问题等,更新文件:
styles\item_subject_list_dateline.html.php
styles\item_subject_span_list.html.php
templates\SupeSite\blog_index.html.php
templates\SupeSite\index.html.php
templates\SupeSite\news_index.html.php

解决论坛频道首页、商品频道首页不兼容 Mozilla Firefox 浏览器 BUG。
更新文件:
css\SupeSitebbs.css
css\SupeSitegoods.css

解决商品分类页面不分页问题,更新文件:
templates\SupeSite\goods_category.html.php

解决商品分类版面问题,更新文件:
css\SupeSitegoods.css
templates\SupeSite\goods_category.html.php

解决资讯察看页面TAG浮动窗口不弹出问题。
更新文件:
css\SupeSitenews.css
templates\SupeSite\news_header.html.php

解决商品频道推荐商品超过5个换行问题,解决商品2级分类大图片版面错乱问题。
更新文件:
templates\SupeSite\goods_index.html.php
templates\SupeSite\goods_category.html.php

解决论坛大图片文章模式察看撑开版面问题(这个问题以前修复过,由于移动硬盘坏掉了,导致版本弄错了,才会将以前没修复的发布出来了 望见凉 )

解决商品名称过长换行问题、解决所有空间翻页问题。
更新文件:
templates\SupeSite\goods_index.html.php
templates\SupeSite\spaces_header.html
templates\SupeSite\spaces_index.html

已彻底解决资讯分类显示页面不能分页难题! 更新文件:
css\SupeSitenews.css
templates\SupeSite\news_category.html.php

修复首页相册板块不显示新图片问题,解决论坛频道首页子板块不显示名称问题,解决论坛频道子板块问题,将全部空间频道改成官方模板形式(如果你不喜欢请不要更新templates\SupeSite\spaces_index.html.php文件)。
更新文件:
templates\SupeSite\index.html.php
templates\SupeSite\bbs_forumdisplay.html.php
templates\SupeSite\bbs_index.html.php
templates\SupeSite\spaces_index.html.php
css\SupeSitemain.css
css\SupeSitebbs.css

本次更新修复资讯内容分页BUG!
更新文件:
templates\SupeSite\news_view.html.php
css\SupeSitemain.css
css\SupeSitenews.css

本次更新修复资讯、日志、论坛频道首页不显示2级分类内容主题的BUG!
更新文件:
templates\SupeSite\bbs_index.html.php
templates\SupeSite\blog_index.html.php
templates\SupeSite\news_index.html.php

本次更新修复各频道分类导航条无导航的BUG!
更新涉及文件: templates\SupeSite 下面的大部分文件。


演示地址:
http://newphp.cn/new

图片:


[ 本帖最后由 wuhaolong 于 2007-1-31 13:19 编辑 ]

附件

SuperSite5.0-Bate2风格For Final(更新日期2007-01-12 11.31).rar (336.58 KB)

2007-1-31 13:17, 下载次数: 3361

SuperSite5.0-Bate2风格For Final(UTF-8更新日期2007-01-12 11.31).rar (343.92 KB)

2007-1-31 13:17, 下载次数: 1682

本帖最近评分记录
  • jsaren 威望 +2 原来没钱,现在有钱了回来加分! 2007-4-11 22:19
  • jsaren 金币 +2 原来没钱,现在有钱了回来加分! 2007-4-11 22:19
  • testi 威望 +1 我很赞同 2007-4-6 19:04
  • wingwin 威望 +10 我很赞同 2006-12-16 18:39
  • wingwin +10 我很赞同 2006-12-16 18:39
  • 茄子 威望 +1 我很赞同 2006-12-5 13:36
  • 茄子 +2 我很赞同 2006-12-5 13:36
克劳德
有问题请跟贴,不要PM我,PM的一律不回!
沙发我坐了!哈哈!
板凳我本来想留的,但考虑了好久,还是坐下吧!
提示: 作者被禁止或删除 内容自动屏蔽
www.gm55.com
给个演示你看:
http://www.tonkey.cn

[ 本帖最后由 hgd1977 于 2007-3-12 14:27 编辑 ]
不过我想请问一下楼主,我想在页脚加个51的统计,我找了老半天,找不到地方加,以前旧版的就在foot那里加,现在找不到了!请帮帮忙
没有我的位置了!!!
克劳德
有问题请跟贴,不要PM我,PM的一律不回!
楼主来慢一步了!
...............................

[ 本帖最后由 wuhaolong 于 2006-12-5 13:41 编辑 ]
克劳德
有问题请跟贴,不要PM我,PM的一律不回!
克劳德
有问题请跟贴,不要PM我,PM的一律不回!
发新话题
版块跳转