HotNewsPro留言板默认是显示字空白背景,在访问其它站点的时候发现其实加个背景还是挺好看的,于是就寻找修改方法,请教了下大师,呵呵!这里把修改方法跟大家分享下,具体步骤:
1、删掉custom.js里的两段代码:
- // 当鼠标聚焦
- if($(‘#comment’).val()==“”){
- $(‘#comment’).val(‘留言是种美德,写点什么…’).css({color:“#666”});}
- $(‘#comment’).focus(
- function() {
- if($(this).val() == ‘留言是种美德,写点什么…’) {
- $(this).val(”).css({color:“#222”});
- }
- }
- // 当鼠标失去焦点
- ).blur(
- function(){
- if($(this).val() == ”) {
- $(this).val(‘留言是种美德,写点什么…’).css({color:“#666”});
- }
- }
- );
2、将想设置的图片文件名改成comment.gif,放到主题的images目录;
3、然后在style.css找到#commentform textarea,添加background:url(images/comment.gif) no-repeat center;
- #commentform textarea {
- width: 98%;
- height: 120px;
- font-size:12px;
- padding:4px;
- margin:15px 0 0 0;
- border: 1px solid #ccc;
- background:url(images/comment.gif) no-repeat center;
- }
原创文章,作者:wwh,如若转载,请注明出处:https://www.wuwenhui.cn/725.html
评论列表(6条)
教程实用
@PO博客:呵呵,试过了吗?
多谢,已全部实现,喜欢折腾,喜欢这个博客
:neutral:
@颈椎保健枕::cry:
笑而不语…….
这个方法挺不错的,有空我也试试,谢谢分享