Quote:
Originally Posted by Magnumutz
No, that's the maximum size to which a picture should get expanded by default.
|
This line of code defines what size images should be resized -
Quote:
"width: expression(this.width > 340 ? 180 : true);"
|
If an image is over 340, it will be resized to 180.
Please post the code you are using. If the script is not working, lets see what you have it set to.
I had the same problem, even small images were getting resized. All I did was change that code to
Quote:
"width: expression(this.width > 640 ? 640 : true);"
|
and everything is working good.
Here is a thread on my site -
http://www.survivalistboards.com/showthread.php?t=11115
The images are at photobucket, are 640X480 and are not being resized.