If you want to set width and height to [img] [/img] tags, then paste this code in CSS
Code
.posttdMessage img {
max-width:700px;
width:expression((this.width>700) ? "700px" : true);
}
.posttdMessage img {
max-height:700px;
height:expression((this.height>700) ? "700px" : true);
}
Where 700 you can set your size!