Log in

View Full Version : Subscribe to post


Jenta
12-07-2005, 01:17 PM
My site (http://noro.fi/elves/) uses a fixed width skin so the goal was to prevent wide IMG linked images from messing with the design. Also I made the policy decision to care only for recent IE versions and browsers that actually follow CSS standards.

In class_bbcode.php I replaced
return '<img src="' . $link . '" border="0" alt="" />'; with
$navigator_user_agent = ( isset( $_SERVER['HTTP_USER_AGENT'] ) ) ? strtolower( $_SERVER['HTTP_USER_AGENT'] ) : '';
if (stristr($navigator_user_agent, "msie")) {
return '<img src="' . $link . '" border="0" alt="" style="width: expression(this.width > 730 ? 730 : true);" />';
} else {
return '<img src="' . $link . '" border="0" alt="" style="max-width: 730px;" />';
}
I don't know if vB 3.5 keeps an accessible variant containing the current browser. If I find out that such exists then I will modify the code to use that.
.............