The Community will be temporarily unavailable starting on Friday February 28. We’ll be back as soon as we can! To learn more, check out our Announcements blog post.
Jan 31, 2023 10:40 AM
I need to center the logo image of my client in the body of an email. How do I do that? (Don't worry - I'm not using an image in an attachment field. )
This is what I currently have, but the image is not actually centered. Can anyone help?
<div style="text-align: center;">
<img width="400" src="https://static1.squarespace.com/static/myimageurl.jpg">
</div>
Solved! Go to Solution.
Jan 31, 2023 11:07 PM
Hm, could you try removing the linebreaks so it looks like this?
<div style="text-align: center;"><img width="400" src="https://static1.squarespace.com/static/myimageurl.jpg"></div>
That appears to work when I test it
Jan 31, 2023 11:07 PM
Hm, could you try removing the linebreaks so it looks like this?
<div style="text-align: center;"><img width="400" src="https://static1.squarespace.com/static/myimageurl.jpg"></div>
That appears to work when I test it
Feb 01, 2023 07:54 AM
Thanks @TheTimeSavingCo! That worked like a charm. 😊