If you work with BBcode, you can add a class to [img] and resize it this way.
I used this before:
CSS
1 2 3 4 5 6 7 8 9 |
.resizeimage { max-width : 250px ; max-height : 250px ;}
* html .resizeimage{
border-width : 1px solid #000000 ;
height : expression(this.height >= this.width && this.height > 250 ? '250px' : true);
width : expression(this.height < this.width && this.width > 250 ? '250px' : true);
}
|
... can we help you ...