更改首页留言处的文字颜色代码
更改“我的留言本”几个字和顶部虚线样式:
<style type=text/css>
.gbook .title{color:#f00 !important;border-top:3px dashed #000000 !important}
</STYLE>
更改留言者名字的颜色:
<style type=text/css>
.gbook a{color:#000000 !important;}
</STYLE>
更改留言内容、日期的颜色:
<style type=text/css>
.gbook .text{color:#000000 !important;}
</STYLE>
更改宽度的话,请在important;后面加上宽度值:width:550px;}
更改留言回复者的名字、日期的颜色:
<style type=text/css>
.gbook .aAuthor{color:#000000 !important;}
</STYLE>
更改回复内容的颜色:
<style type=text/css>
.gbook .aText{color:#000000 !important;}
</STYLE>
更改留言处未登陆时提示文字及悄悄话等颜色:
<style type=text/css>
.gbook .postFSet{color:#000000 !important;}
</STYLE>
更改留言内容中带链接的文字:
<style type=text/css>
.gbook .text a{color:green !important;text-decoration:none !important;}
</STYLE>
更改“给我留言和+点歌给朋友”这几个字颜色:
更改留言本翻页处:
<style type=text/css>
.gbook .postFSet legend{color:#000000 !important;}
</STYLE>
更改留言本当前页“1”字的颜色:
<style type=text/css>
.gbook .page span{color:#f00 !important;}
</STYLE>
更改留言内容宽度:
<style type=text/css>
.gbook .page span{color:#f00 !important;}
</STYLE>
新浪正常宽度为550,如果自己制作模板,可根据自己制作的宽度来修改数值。
更改“给我留言”几个字所在的虚线框的宽度:
<style type=text/css>
.gbook{width: 550px !important;}
</STYLE>
无需改宽度的话把代码中 width:550px; 删掉即可。
更改写留言区域边框样式:
<style type=text/css>
.gbook .pTextarea{border:3px solid #000000 !important;width:452px !important;height:100px !important;}
</STYLE>
更改写留言区域上那条虚线样式,宽度:
<style type=text/css>
.gbook .login div{border-top:1px dashed #000000 !important;width:452px !important;}
</STYLE>
更改各留言间的分割线样式,宽度:
<style type=text/css>
.gbook .dashed{border-top: 1px dashed #000000 !important;width:452px !important;}
</STYLE>
更改“验证码:”几个字后面那个小框样式
<style type=text/css>
.gbook .input{border:1px solid #f00 !important;}
</STYLE>
更改“回复”两个字所在的小图片:
<style type=text/css>
.gbook .aSubmit{background:url("图片地址") no repeat no scroll!important;}
</STYLE>
图片宽为81,高22,注意这两个字是含在图片上的,如果更改图片,最好在图片上用PS或者画图程序加上这两个字,如果只单纯改图片图片上不会出现字。
更改“发表留言”四个字所在的小图片:
<style type=text/css>
.gbook .pSubmit{background:url("图片地址") no repeat no scroll!important;}
</STYLE>
图片宽为81,高22,注意这四个字是含在图片上的,如果更改图片,最好在图片上用PS或者画图程序加上这四个字,如果只单纯改图片图片上不会出现字。
更改留言板标题,文章列表标题上翻弄为透明:
<style type=text/css>
.aList .sysHand .up{background:#transparent;}
</STYLE>
更改留言板标题,文章列表标题下翻弄为透明:
<style type=text/css>
.aList .sysHand .down{background:#transparent;}
</STYLE>
更改留言者名字上翻弄为透明:
<style type=text/css>
.gbook .sysHand .up{background:#transparent;}
</STYLE>
更改留言者名字下翻弄为透明:
<style type=text/css>
.gbook .sysHand .down{background:#transparent;}
</STYLE>
更改“给我留言”区域弄为透明
<style type=text/css>
.gbook .post{background:#transparent;}
</STYLE>
代码说明:
代码中 #000000 就是颜色的数值,请参考颜色代码表的颜色数值来修改。
例如更改留言者名字的代码:
<style type=text/css>
.gbook a{color: !important;}
</STYLE>
代码中是黑色数值,修改成 #FF0033 留言者名字颜色就改变成红色了。