I have a responsive email that i am struggling to make Outlook look correct.
I have the below html which should put the 2 tables next to each other but it is stacking them ontop of each other.
I am using...
<!--[if (gte mso 9)|(IE)]> to target outlook but it seems to be ignoring this. It is also ignoring my max width call in the style tag.
Any idea why this is happening?
<tr> <td class="innerpadding "> <!--[if (gte mso 9)|(IE)]> <table width="360" align="left" cellpadding="0" cellspacing="0" border="0"> <tr> <td> <![endif]--> <table class="col400" align="left" border="0" cellpadding="0" cellspacing="0" style="width:100%;"> <tr> <td> <img src="Dog.png" alt="Dog Image" width="95%" border="0" style="width:95%;max-width:360px;"/> </td> </tr> </table> <!--[if (gte mso 9)|(IE)]> </td> </tr> </table> <![endif]--> <!--[if (gte mso 9)|(IE)]> <table width="240" align="right" cellpadding="0" cellspacing="0" border="0"> <tr> <td> <![endif]--> <table class="col240" align="left" border="0" cellpadding="0" cellspacing="0" style="width:100%;"> <tr> <td> <span style="font-family:Arial, Helvetica, sans-serif;font-size:38px;color:#f4911c;">Text Here</span> <span style="font-family:Arial, Helvetica, sans-serif;font-size:16px;color:#555557;display: block;font-style: italic;padding-top: 10px;line-height: 22px;">Text Here</span> </td> </tr> </table> <!--[if (gte mso 9)|(IE)]> </td> </tr> </table> <![endif]--> </td> </tr>