本帖最后由 cr180 于 2009-12-16 12:41 编辑
发帖/回复按钮的修改介绍 文件:css_script.htm
注意:修改这个文件以后需要更新缓存!!!不是更新css缓存!
版权:cr180 QQ:250997329 未经过本人同意任何人任何网站不得转载!
.postbtn, .replybtn { width: 67px; height: 30px; background: url({IMGDIR}/newtopic.gif) no-repeat 0 0; font-size: 14px; font-weight: 700; line-height: 28px; *line-height: 32px; text-align: center; overflow: hidden; }
以上代码介绍:
.postbtn, .replybtn 发帖和回复按钮共同属性
width: 67px; 宽度67像素
height: 30px; 高度30像素
background: url({IMGDIR}/newtopic.gif) no-repeat 0 0; 背景图片为newtopic.gif 不平铺
font-size: 14px; 字体大小14像素
font-weight: 700; 加粗
line-height: 28px; 高度为28像素纵向居中
*line-height: 32px; 在IE6下面为32像素纵向居中
.replybtn { background-image: url({IMGDIR}/reply.gif); }
回复按钮背景为reply.gif
这里的回复按钮代码为什么只指定背景,而没有高度宽度之类的呢?
答:因为在上面的[发帖和回复按钮共同属性]代码中回复按钮已经有这些属性了,所以只需要重新申明背景调用reply.gif即可 .postbtn a, .replybtn a { display: block; padding-left: 5px; color: #FFF; letter-spacing: 5px; }
同学们只需要明白:按钮中的文字颜色为白色,如果好奇另外的 可以去百度下
.postbtn a:hover, .replybtn a:hover { text-decoration: none; }
鼠标经过按钮,文字连接没有下划线
综合以上解释,我们就可以进行修改了下面写一个简单例子:-
- .postbtn, .replybtn { width:100px; height: 30px; background:#000; font-size: 14px; font-weight: 700; line-height: 28px; *line-height: 32px; text-align: center; overflow: hidden; }
- .replybtn { background-image: url({IMGDIR}/reply.gif); }
- .postbtn a, .replybtn a { display: block; padding-left: 5px; color: #FFF; letter-spacing: 5px; }
- .postbtn a:hover, .replybtn a:hover { text-decoration: none; }
复制代码
至于[发帖]类似这个的文字在哪里修改呢?
答:
打开templates/default/templates.lang.php (注意:默认模板内的变量文字都可以在这个文件里面修改!)
查找:
'reply' => '回复',
'send_posts' => '发帖',
修改文字内容即可 |