the code below makes the editing of posts look like this:
Attachment 55796
HTML Code:
/* BEGIN Image resize */
#posts IMG
{
max-width: 95%;
height: expression(this.height > 1024 ? "1024px" : true);
width: expression(this.width > 768 ? "768px" : true);
}
#collapseobj_threadreview IMG {
max-width: 95%;
height: expression(this.height > 1024 ? "1024px" : true);
width: expression(this.width > 768 ? "768px" : true);
}
/* END Image resize */