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

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

Discuz! 7.0常见模板问题总结

[复制链接]
南芝恋 发表于 2008-12-16 09:43:01 | 显示全部楼层 |阅读模式
本帖最后由 南芝恋 于 2008-12-22 15:19 编辑

1.如何给分类版块名字添加如6.1.0时的背景?

打开css_append.htm文件,在末尾添加

#index .list h3 { background:#000;}

自己修改下颜色,然后更新css缓存即可。

2.如何修改下拉框(select类型的)的背景?

在css_append.htm文件末尾添加:

select { background:#000;}

自己修改下颜色,然后更新css缓存

3.button按钮样式修改:

Discuz! 7.0.0 页面内的button按钮都是默认的,没有设置样式,如果需要修改某一个可以在模板文件下找到button的id或者classname,然后在css中定义,如果要全部都修改的话可以在css_append.htm文件末尾加入:

button { border:1px solid #00c; background:#09c;}

调整下颜色,更新css缓存。

4.贴内tag文字颜色修改:

在css_append.htm文件末尾加入:

#viewthread .threadtags, #viewthread .threadtags a { color:red;}

更新css缓存即可

5.贴内引用部分的背景如何修改?

css_append.htm文件末尾加入:

#viewthread .quote { background-color:blue;}

更新css缓存即可

6.贴内代码框右侧部分背景如何修改?

css_append.htm文件末尾加入:

#viewthread .blockcode { background-color:blue;}

更新css缓存即可。

7.发帖或者注册、登录等地方的弹出信息提示的背景以及文字如何修改?

css_append.htm文件末尾加入:

.cornerlayger { background-color:red; color:#FFF;}

更新css缓存即可。

注意:因为使用了圆角的图片,所以颜色偏差太大可能会造成不好看。

8.如何修改分类版块名字的字体颜色和大小?

css_append.htm文件末尾加入

#index .list h3 a { color:red; font-size:20px;}

更新css缓存

9.如何调整头部导航栏的位置?

默认风格下头部导航栏使用的是绝对定位方式,如果需要调整可以直接修改top、bottom、left或者right的值,默认使用的是right和bottom,也就是离右侧和下侧的距离:

可以在css_append.htm文件末尾加入:

#menu { right:3px; bottom:3px;}

更新css缓存

10.如何调整头部的高度?

在css_append.htm文件末尾添加

#header .wrap { height:200px;}

按照自己的需求更改高度,更新css缓存。

11.帖子列表页面,如何让主题作者和发表时间右对齐?

forumdisplay.htm文件中

先查找
  1. <th>{lang subject}</th>
  2. <td class="author">{lang author}</td>
  3. <td class="nums">{lang replies}/{lang views}</td>
  4. <td class="lastpost"><cite>{lang lastpost}</cite></td>
复制代码
修改为
  1. <th>{lang subject}</th>
  2. <td class="author" style="text-align:right;">{lang author}</td>
  3. <td class="nums">{lang replies}/{lang views}</td>
  4. <td class="lastpost"><cite>{lang lastpost}</cite></td>
复制代码
再查找
  1. <td class="author" style="text-align:right;">
  2. <p>
  3. <!--{if $thread['authorid'] && $thread['author']}-->
  4. <a href="space.php?uid=$thread[authorid]">$thread[author]</a>
  5. <!--{else}-->
  6. <!--{if $forum['ismoderator']}-->
  7. <a href="space.php?uid=$thread[authorid]">{lang anonymous}</a>
  8. <!--{else}-->
  9. {lang anonymous}
  10. <!--{/if}-->
  11. <!--{/if}-->
  12. </p>
  13. <em>$thread[dateline]</em>
  14. </td>
复制代码
修改为
  1. <td class="author">
  2. <cite>
  3. <!--{if $thread['authorid'] && $thread['author']}-->
  4. <a href="space.php?uid=$thread[authorid]">$thread[author]</a>
  5. <!--{else}-->
  6. <!--{if $forum['ismoderator']}-->
  7. <a href="space.php?uid=$thread[authorid]">{lang anonymous}</a>
  8. <!--{else}-->
  9. {lang anonymous}
  10. <!--{/if}-->
  11. <!--{/if}-->
  12. </cite>
  13. <em>$thread[dateline]</em>
  14. </td>
复制代码
如果一起无法查找到,可以选择其中一段话进行查找,然后自己匹配一下这段

12.如何调整主题列表页,帖子间的行距?

css_append.htm文件末尾加入
#forumdisplay .threadlist td { padding:10px 4px !important;}
调整前边的数字10即可
更新缓存

13.如何修改源码状态下的编辑框的背景?

css_append.htm文件末尾加入:
#postbox .newediter .autosave { background-color:red;}
把颜色修改成自己需要的颜色,然后更新css缓存。

14.如何去掉首页版块间的边框?

在相应模板下的css_append.htm文件末尾添加
#index .list th, #index .list td { border-top:none;}
您可以在里边自定义样式,然后更新css缓存。

评分

11

查看全部评分

zxpet 发表于 2008-12-16 10:31:24 | 显示全部楼层
演示看看!没明白什么意思
回复

使用道具 举报

81os 发表于 2008-12-16 11:08:17 | 显示全部楼层
演示看看!没明白什么意思
zxpet 发表于 2008-12-16 10:31


7.0的板块分类一栏默认是和主页面同色,所以不太醒目……
回复

使用道具 举报

abcnic1 发表于 2008-12-16 11:28:37 | 显示全部楼层
嗯 好的 :)
回复

使用道具 举报

abcnic1 发表于 2008-12-16 11:30:26 | 显示全部楼层
很欣赏DZ敬业精神 永远支持你们
回复

使用道具 举报

锋芒 发表于 2008-12-16 13:57:59 | 显示全部楼层
支持小南南!
回复

使用道具 举报

ug8 发表于 2008-12-16 14:03:16 | 显示全部楼层

版主 这里怎么解决

此处的字体重叠  谁知道怎么弄
回复

使用道具 举报

ug8 发表于 2008-12-16 14:03:39 | 显示全部楼层
新年风格有问题
回复

使用道具 举报

ug8 发表于 2008-12-16 14:03:55 | 显示全部楼层
谁知道我框起来的地方  字体重叠怎么办    我把顶部广告去掉后也不行
回复

使用道具 举报

pc77maikongjian 发表于 2008-12-16 14:24:05 | 显示全部楼层
明白了,谢谢分享.
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-11-22 06:47 , Processed in 0.036043 second(s), 4 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

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