外掛的下載網址:http://starryhometown.net/forum/viewtopic.php?t=522
phpbb版本: phpBB 2.0.13
外掛問題描述:
安裝這個mod後出現怪怪的現象
如下圖所示 左下角出現"網頁錯誤" 且沒有縮圖效果

請問這大概是那邊有問題產生呢\r
要怎麼解決呢?
版主: 版主管理群

代碼: 選擇全部
The MOD uses the value of {T_BODY_LINK} for the color of the border:
Code:
var rmw_border_1 = '1px solid {T_BODY_LINK}';
var rmw_border_2 = '2px dotted {T_BODY_LINK}';
Look at what your board outputs for this value:
Code:
var rmw_border_1 = '1px solid #';
var rmw_border_2 = '2px dotted #';
Simply hardcode overall_header.tpl and simple_header.tpl and put the color that you want:
Code:
var rmw_border_1 = '1px solid #00BFFF';
var rmw_border_2 = '2px dotted #00BFFF';
Here's a page to choose:
http://www.qindex.info/Q_drctry/webtools/colors.php
IE aborts when a script has an error (invalid value for the color) and Firefox continues. That's why IE doesn't resize and Firefox resizes but doesn't put any border.
And if you don't want any border for the images, simply put 0 as the values. Don't forget the single quotes. The value for border is not an integer but a string:
Code:
var rmw_border_1 = '0';
var rmw_border_2 = '0';