After creating an email newsletter that works perfectly on all email clients except Outlook 2013, I realized that the image I included is not adhering to the table width specified. Instead, it is defaulting to its own width of 658px. View image here
Below is the code snippet for the table:
<table bgcolor="#ffffff" cellpadding="0" cellspacing="0" width="600px" align="center">
<tbody>
<tr>
<td style="align:center;vertical-align:top;width:600px">
<div style="width:600px;align:center">
<img src="images/demo1.png" style="width:600px">
</div>
</td>
</tr>
</tbody>
</table>
I would appreciate any suggestions on how to resolve this issue and properly place the image within the table.