Reply To: Images not resizing properly


imaginem
Support

Hi,

You’ll need to remove the inline width and height properties defined within the IMG tags.

eg

<img width="650" height="498" alt="" src="http://www.problemday.com/ullna/wp-content/uploads/2012/06/tumba-jack-650.jpg" title="Jack Nicklaus &amp; Sven Tumba Ullna GC" class="alignnone size-full wp-image-94">

Can be

<img alt="" src="http://www.problemday.com/ullna/wp-content/uploads/2012/06/tumba-jack-650.jpg" title="Jack Nicklaus &amp; Sven Tumba Ullna GC" class="alignnone size-full wp-image-94">

Note: I’ve remove the width and height only in the second code. That should resize with the correct ratio.

Thanks