Thread Starter
agi
(@agi)
Thank you Kafkaesqui. You headed me in the right direction. Although I couldn’t figure it out with the link you helpfully provided (I’m a newbie at this), I came across this fix which seems to be working:
.post img
{
max-width: 100%;
width: expression(Math.min(document.body.clientWidth, this.width) > 700 ? “700px”: Math.min(document.body.clientWidth, this.width));
}
In addition, there is also a javascript that worked but I removed it after finding above at doxdesk:
<script type=”text/javascript” src=”minmax.js”></script>
Thank you!!!