The picture displaying code on the forum includes this little bit of javascript:
if(this.width > screen.width-300)this.width = (screen.width-300)
This is fine on a big monitor where you can afford to lose 300 pixels but on my PDA (an iPhone) the screen is barely 300 pixels wide so the images turn into micro-thumbnails.
I know that you're trying to do everyone a favor if someone posts a monster image, but how about shrinking the image to screen.width not screen.width-300 ?
if(this.width > screen.width-300)this.width = (screen.width-300)
This is fine on a big monitor where you can afford to lose 300 pixels but on my PDA (an iPhone) the screen is barely 300 pixels wide so the images turn into micro-thumbnails.
I know that you're trying to do everyone a favor if someone posts a monster image, but how about shrinking the image to screen.width not screen.width-300 ?
Comment