z-blog取消表情图的长宽限制
在zblog的后台-网站设置管理-ubb设置及相关转换处有个表情图片的尺寸设置,这个设置约束了表情图片的大小。若一套表情图都等大小倒影响不大,若不等大小就十分不好看。如何取消这个设置对表情图的约束?
取消对已发出的表情图的约束:
在function/c_function.asp里,约774行:
strContent= objRegExp.Replace(strContent,"<img src="""& ZC_BLOG_HOST &"image/face/$2.gif"" style=""padding:2px;border:0;"" width="""&ZC_EMOTICONS_FILESIZE&""" title=""$2"" alt=""$2"" />")
改为:
strContent= objRegExp.Replace(strContent,"<img src="""& ZC_BLOG_HOST &"image/face/$2.gif"" style=""padding:2px;border:0;"" title=""$2"" alt=""$2"" />")
取消选择表情处的图片大小限制:
修改SCRIPT/common.js,在348行左右:
strFaceHtml=strFaceHtml + "<img src=""+str00+"image/face/"+strFileName+".gif" title=""+strFileName+"" alt=""+strFileName+"" width=""+strFaceSize+"" height=""+strFaceSize+"" onclick="InsertText(objActive,'[F]'+this.alt+'[/F]',false);" style="padding:2px;cursor:pointer;">";
改为:
strFaceHtml=strFaceHtml + "<img src=""+str00+"image/face/"+strFileName+".gif" title=""+strFileName+"" alt=""+strFileName+"" onclick="InsertText(objActive,'[F]'+this.alt+'[/F]',false);" style="padding:2px;cursor:pointer;">";