I'm at my wits' end trying to figure this out. Here's the CSS code causing me trouble:
img {max-width:100%; height:auto; }
Whenever I upload an image to a blog post that is sized 200x200, like this:
<img width="200" title="photo-Trent-Dysmid.jpg" style="width: 200px; float: right;" alt="photo-Trent-Dysmid.jpg" src="http://inboundmarketing.digitalhive.buzz/hubfs/jan-2016-images/photo-Trent-Dysmid.jpg" data-constrained="true">
Upon previewing the blog post, it displays the image at 798x798, stretching it to fit the full width of the page. The only solution I've found is manually changing "width: 200px" to "max-width: 200px" each time. It's becoming quite a hassle! What am I missing here?
Appreciate any help! Rebekah