add a css rule:
.entry-content img {
max-width: 500px;
width: expression(this.width > 500 ? 500: true);
}
I don't know about the width: expression part, just got it from the net; seems IE6 doesn't understand max-width.
I had that same problem and for some reason noahs solution did not work for me.
But what did work was:
.entry-content img[style] {max-width:90% !important;height:auto !important;}
read here
http://www.sitepoint.com/forums/showthread.php?434432-Can-you-resize-image-with-CSS
and here
http://www.pmob.co.uk/temp/3col/3col-fixed-side-01.htm
(making the window larger and smaller)
Welcome to the Q&A site for Question2Answer.
If you have a question about Q2A, please ask here, in English.
To report a bug, please create a new issue on Github or ask a question here with the bug tag.
If you just want to try Q2A, please use the demo site.