How can I center the logo in an email sample?

Topic summary

Goal: Center the logo in Shopify email notifications.

Proposed fix (no theme code changes needed):

  • In Admin, go to Settings > Notifications.
  • Open the specific email template and click Edit code.
  • Locate the HTML that renders the logo (example reported around line ~78, may vary).
  • Add an inline style to the element wrapping the logo with: text-align: center; and vertical-align: middle; (apply to the container cell or tag that holds the logo).
  • Use Preview to verify the logo is centered.

Notes:

  • Screenshots were shared to illustrate where the style was added.
  • The solution is straightforward HTML/CSS (inline style = CSS applied directly in the tag).

Status: A clear step-by-step solution was provided; no further issues or disagreements raised.

Summarized with AI on January 19. AI used: gpt-5.

hi, i would like to know how to center the logo in the email sample

thanks for support :slightly_smiling_face:

Go to Setting.

Go to Notifications.

Click on the email you want to modify.

Click the edit code button.

Find the code with the logo (Mine was line 78)

Then change the style to include this inline style…

style=“text-align: center; vertical-align: middle;”

This is what my edited line looks like

Click Preview to confirm it’s how you want it…