Hi, im having trouble changing the accent color of my abandoned cart email and inserting my logo as the header instead of just text of my store name. Here is my code:
{% capture email_title %}
{% if item_count == 1 %}
{% else %}
{% endif %}
{% endcapture %}
{% capture email_body %}
{% if billing_address.first_name %}
{% if item_count == 1 %}
**Yooo {{ billing_address.first_name }}**,
We saw you equipped something to your Arsenal but then you just left it sitting out to rust! We dont want it to rust so we're only going to reserve your item for a day or two.
If you decide to come back for it **put in the code "RUST" for 10% off your order!**
Have a nice day!
- Sonic Weaponry Customer Support Team
{% else %}
**Yooo {{ billing_address.first_name }}**,
We saw you equipped some of our weaponry to your Arsenal but you forgot to take them home! If you leave them sitting in your Arsenal they might rust!
We dont want them to rust, so were gonna have to put them away in a day or two! If you see this email in time, **type in the code "RUST" at checkout to take them home for 10% off!**
Have a nice day!
- Sonic Weaponry Arsenal Attendant
{% endif %}
{% else %}
{% if item_count == 1 %}
Yooo,
We saw you equipped something to your Arsenal but then you just left it sitting out to rust! We dont want it to rust so we're only going to reserve your item for a day or two.
If you decide to come back for it **put in the code "RUST" for 10% off your order!**
{% else %}
Yooo,
We saw you equipped some of our weaponry to your Arsenal but you forgot to take them home! If you leave them sitting in your Arsenal they might rust!
We dont want them to rust, so were gonna have to put them away in a day or two! If you see this email in time, **type in the code "RUST" at checkout to take them home for 10% off!**
{% endif %}
{% endif %}
{% endcapture %}
<table>
<table>
<table>
<table>
<tr>
<td>
{%- if shop.email_logo_url %}

{%- else %}
#
{{ shop.name }}
{%- endif %}
</td>
</tr>
</table>
</table>
</table>
<table>
<table>
## {{ email_title }}
{% if custom_message != blank %}
{{ custom_message }}
{% else %}
{{ email_body }}
{% endif %}
<table>
<tr>
<td>
</td>
</tr>
<table>
<tr>
<td>
Items in your cart
</td>
</tr>
</table>
{% if shop.url %}
<table>
<tr>
<td>
or Visit our store
</td>
</tr>
</table>
{% endif %}
</table>
</table>
</table>
<table>
<table>
<tr>
<td>
### Complete your purchase
</td>
</tr>
</table>
<table>
{% for line in subtotal_line_items %}
{% endfor %}
<table>
<table>
<tr>
<td>
{% if line.image %}
{% endif %}
</td>
<td>
{% if line.product.title %}
{% assign line_title = line.product.title %}
{% else %}
{% assign line_title = line.title %}
{% endif %}
{% if line.quantity < line.quantity %}
{% capture line_display %} {{ line.quantity }} of {{ line.quantity }} {% endcapture %}
{% else %}
{% assign line_display = line.quantity %}
{% endif %}
{{ line_title }} × {{ line_display }}
{% if line.variant.title != 'Default Title' %}
{{ line.variant.title }}
{% endif %}
{% if line.selling_plan_allocation %}
{{ line.selling_plan_allocation.selling_plan.name }}
{% endif %}
{% if line.refunded_quantity > 0 %}
Refunded
{% endif %}
{% if line.discount_allocations %}
{% for discount_allocation in line.discount_allocations %}
{% if discount_allocation.discount_application.target_selection != 'all' %}
{{ discount_allocation.discount_application.title | upcase }}
(-{{ discount_allocation.amount | money }})
{% endif %}
{% endfor %}
{% endif %}
</td>
</tr>
</table>
</table>
</table>
</table>
<table>
<table>
<tr>
<td>
Don't want to receive cart reminders from us? Unsubscribe
</td>
</tr>
</table>
</table>
</table>
I thought I had inserted my logo properly but it isnt showing up in the preview
