How To Center Logo in Order Confirmation Email

Solved

How To Center Logo in Order Confirmation Email

secondseams
New Member
11 0 0

Hi All,

 

I have tried a bunch of code found on these discussion boards and my logo is still not centered. Attached is the code I am using for reference. Please help!

 

Screen Shot 2023-10-19 at 1.15.12 PM.png

Accepted Solution (1)

Uhrick
Shopify Partner
433 68 100

This is an accepted solution.

Replace the code that currently exists from lines 78 through 82 with

<td class="shop-name__cell" style="text-align: center">
                    {%- if shop.email_logo_url %}
                      <img src="{{shop.email_logo_url}}" alt="{{ shop.name }}" width="{{ shop.email_logo_width }}">
                    {%- else %}

 

Shopify Developer
Hire me for theme customizations at ricardomsilvestre@outlook.com or Upwork
Was my answer helpful to you? Please like or mark as solution

View solution in original post

Replies 4 (4)

Uhrick
Shopify Partner
433 68 100

This is an accepted solution.

Replace the code that currently exists from lines 78 through 82 with

<td class="shop-name__cell" style="text-align: center">
                    {%- if shop.email_logo_url %}
                      <img src="{{shop.email_logo_url}}" alt="{{ shop.name }}" width="{{ shop.email_logo_width }}">
                    {%- else %}

 

Shopify Developer
Hire me for theme customizations at ricardomsilvestre@outlook.com or Upwork
Was my answer helpful to you? Please like or mark as solution
secondseams
New Member
11 0 0

This worked thank you so much!!!!

sb1984
Tourist
5 1 1

this worked for me too, thank you!

 

NicolasB
Visitor
1 0 0

I wanted to ask where exactly can I copy this text, I also need to center the logo in the email, I just don't know where to copy it