本帖最后由 cr180 于 2011-4-3 20:09 编辑
BUG修复:
1、修正主题列表页头像显示错误的问题(感谢gentlezy提出)文件:template\cr180_sh\forum\forumdisplay_list.htm
查找
- <!--{avatar($thread[uid],small)}-->
复制代码
替换为:
- <!--{avatar($thread[authorid],small)}-->
复制代码
2、25楼朋友panwei提出快速回复框会出现错位的解决方法
打开文件:cr180/common.css
查找:
- #newspecial img,#post_reply img,#newspecialtmp img,#post_replytmp img {opacity:0;filter:alpha(opacity=0); display:none}#newspecial,#post_reply,#newspecialtmp,#post_replytmp { display:block; float:left; width:96px; height:30px; background:url(postbnt.gif) no-repeat 0 0}#post_reply,#post_replytmp { background-position:right 0}
复制代码 改为:
- .pgs #newspecial img,.pgs #post_reply img,.pgs #newspecialtmp img,.pgs #post_replytmp img {opacity:0;filter:alpha(opacity=0); display:none}
- .pgs #newspecial,.pgs #post_reply,.pgs #newspecialtmp,.pgs #post_replytmp { display:block; float:left; width:96px; height:30px; background:url(postbnt.gif) no-repeat 0 0}
- .pgs #post_reply,.pgs #post_replytmp { background-position:right 0}
复制代码
|