| pieter |
|
|---|---|
|
If you work with BBcode, you can add a class to [img] and resize it this way. I used this before:
/* for understanding browsers */
.resizeimage { max-width:250px;max-height:250px;}
/* for Internet Explorer */
/*\*/
* 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 ...
|