Autoresponder Email: Image Not Centering in Classic Outlook on Windows 11

  • Profile Image
    Greg_Spear
    Asked on April 9, 2026 at 12:03 AM

    I've come across a quirk that's really bothering users.

    There's an image i've uploaded, and centered, using the toolbar. It looks centered in all the similar autoresponder emails. it looks centered when user opens the email on iPhone, iPad, mac mail for macOS, new outlook on windows 11. but when anyone opens the email in classic outlook, on windows 11, the image is left justified.

    i've tried wrapping the image in a table and centering that. it doesnt help.

    I've checked with Podo AI, the html code is clean and correct.

    Has anyone heard of this, and is there a fix? its the same issue on 4 autoresponder emails in my latest version (9).

  • Profile Image
    Podo: Support Specialist
    Replied on April 9, 2026 at 12:03 AM

    Hi Greg,

    Classic Outlook on Windows is known for its quirks with HTML email rendering, especially with image alignment. Even if the image is centered using the toolbar or wrapped in a table, Outlook's rendering engine can still left-align images due to its limited support for modern HTML and CSS.

    Here are some tips to try to fix the image centering issue in classic Outlook:

    1. Use a table with explicit alignment attributes: Wrap the image in a single-cell table and set the align="center" attribute on the <td> tag. For example:
      <table width="100%"><tr><td align="center"><img src="your-image-url" /></td></tr></table>
    2. Set the image display to block and margin auto: Add inline styles to the image like style="display:block; margin:0 auto;". This sometimes helps Outlook center the image.
    3. Avoid relying on CSS that classic Outlook doesn't support: Inline styles and HTML attributes are more reliable than CSS classes or external stylesheets.
    4. Test with simpler HTML: Sometimes complex HTML or nested elements can confuse Outlook's rendering engine. Simplify the structure around the image.
    5. Use the Jotform email editor's built-in tools carefully: Sometimes the toolbar centering looks correct in the editor but doesn't translate well in Outlook. Manually editing the HTML to use the above techniques can help.

    Unfortunately, classic Outlook's rendering limitations are a common challenge for many email designers and not specific to Jotform. If these steps don't resolve the issue, it may require further manual HTML adjustments or testing with different email clients.

    Give it a try and let us know how it goes.

Your Reply