Im coding a mailchimp template for a client and I am running into problems with images dimensions
The problem is that images with widths greater then the template width (normally 600px) is shown at original size in outlook. I can trust my users to be able to handle such a weakness.
There is one way that works, and thats if the image dimensions are hard coded into the img-tag, although when changing image in mailchimp, the hard coded attributes are overrun. -So its not all Microsofts fault.
The closest I've come to a solution is found here: How to retain image dimensions in Mailchimp templates - But the OPs own accepted answer is incomplete.
Any smart suggestions? Spent days on this now and is starting to mistrust.
I tried this, was supposed to be foolproof, but when testing it with litmus it broke in Outlook 2010 and below:
<!-- content1 -->
<table mc:repeatable mc:variant="Section: item with image top and CTA" width="300" cellpadding="0" cellspacing="0" border="0" align="center" class="full-table" style="width:300px;">
<tr>
<td bgcolor="#FFFFFF" width="100%">
<table width="100%">
<tr>
<td width="100%">
<img mc:edit="article_image" src="https://gallery.mailchimp.com/3517b92e77c79cf5a2a6072a3/images/c37645eb-f76b-44e9-88ab-f01b1929dda2.jpg" id="contact-photo" alt="" style="width:100%; max-width:100%;" width="300">
</td>
</tr>
</table>
</td>
</tr>
</table>
<!-- end content1 -->