Hello everyone,
I created an email and I inserted an image in the body of the email. I selected center aligned, and when the "Preview Email" is generated, it looks perfect. However, when I send the sample, the image gets left aligned. I am approving the draft before sending the sample, not sure if that is correct or not.
I cant seem to figure this out, any suggestions?
Thank you,
Dave
Solved! Go to Solution.
Hi David,
The simplest way to center an image in a way that works for every device is to create a table (1 column 1 row) and add the image in the table cell, then center the table.
<table align="center" style="margin: 10px auto;">
<tr>
<td>
<img src="..." />
</td>
</tr>
</table>
-Greg