| 由于有些风格是800*600的 1024*768的也会出现这种问题(没800*600严重):
 
 当你的贴图很大的时候,
 那个图片就会被截掉一些(宽度)
 不信,你试试.
 
 演示地址:
 
 http://free4.e-168.cn/luzhenling ... tid=306&fpage=1
 
 http://free4.e-168.cn/luzhenling ... tid=643&fpage=1
 
 修改方法:
 
 在include/discuzcode.php
 
 
 方法一:查找: (有两处) 记得啊,免得又没效果
 
 
 把0.7改小一些:
 
 0.5也可以,慢慢的测试,找到刚好添满你的发贴的框就可以了
 
 我的是800*600的用0.55,刚刚好.
 
 
 
 方法二(10.13更新):
 查找:
 
 复制代码                                "bbcodeurl('\\1', '<img src="%s" border="0" onload="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt=\'Click here to open new window\';}" onmouseover="if(this.resized) this.style.cursor=\'hand\';" onclick="if(this.resized) {window.open(\'%s\');}">')",
 
 替换为:
 
 
 复制代码                "bbcodeurl('\\1', '<img src="%s" border="0" onload="if(this.width>screen.width*0.55) {this.resized=true; this.width=screen.width*0.55; this.alt=\'Click here to open new window\';}" onmouseover=" if(this.width>screen.width*0.55) this.width=screen.width*0.55; if(this.resized) this.style.cursor=\'hand\';" onclick="window.open(this.src);">')",
 
 
 
 
 给出截图吧,对比你就知道了
 
 [ 本帖最后由 lu5266 于 2005-10-13 12:49 编辑 ]
 |