Skip to main content
March 28, 2016
Question

Can't Center Images

  • March 28, 2016
  • 5 replies
  • 3597 views

I've tried clicking the image and centering it. It looks great! But when I send a sample, or when the actual email goes out, it isn't centered anymore. I've tried creating a table, putting the image in there, and centering THAT. It looks great! But when I send a sample, or when the actual email goes out, it isn't centered anymore. I've gone into the code and altered it directly as best I can to my knowledge. It looks great! But when I send a sample, or when the actual email goes out, it isn't centered anymore.

What am I missing? This has been on ongoing issue since the editor changed months ago, and I'm just at a loss.

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.

5 replies

March 29, 2016

Hi Amanda

I tried three pattern and these are work fine.

Cloud you show html source?

Ravi_Ansal2
Level 5
March 29, 2016

Hi Amanda Meuwissen​,

Use Style="text-align: center" in TD or P or Div

It will work for sure.

Thanks

gkrajeski
Level 10
March 29, 2016

@Ravi Ansal​ has it down.

It requires inline CSS style tag on whichever HTML element/tag your image is contained.

adding the parameter, style="text-align:center", should do the trick!

Robb_Barrett
Level 10
March 29, 2016

I assume you're talking about centering in Outlook?  Remember that it likes its own version of CSS.

Consider these tricks: How do I center an image in Outlook?

Robb Barrett
June 3, 2016

Unfortunately I had to get much more technical and add:

<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="center">
***Your Content***
</td>
</tr>
</table>

Which is what support was kind enough to supply for me, since nothing else worked. Worked in theory, looked great in preview, but didn't stick when I sent actual emails. This fix works, but that is ridiculous. Simply selecting to center an image in the email creator should CENTER the image, but it does not without custom coding now.