I've found an alternative solution (I'm running a vBulletin 3.6.1 board)
Open your /forum/includes/class_bbcode.php file:
On line 1879, replace:
PHP Code:
return '<img src="' . $link . '" border="0" alt="" />';
with:
PHP Code:
return '<img class="resize" src="' . $link . '" border="0" alt="" />';
Open your Style Manager > Main CSS > Additional CSS Definitions and add this code at the bottom:
HTML Code:
.resize {max-width: 728px; width: expression(this.width > 728 ? 728: true);}
Save.
Tested both in IE7 RC1 & Firefox 1.5.0.7
Resized image will keep it's link if it has any.
Demo:
http://www.msxlabs.org/forum/dogadan...tml#post224010
Actual image width is 1024 pixels (resized to 728px) and the thumbnail keeps the link.