How can I edit the placement of gift card codes in email templates?

Hello,

I am building my website for my store and have come across a few design problems that need solving before I launch next month!

I was wondering if there is anyone that knows if I can move the gift card code that appears in the email sent to customers. The code covers up a portion of my gift card image and I would like for it to appear below the gift card somewhere in the white space. I am using Brooklyn theme, I will attach a screenshot of what it currently looks like.

URL is www.hallowclothingco.ca

Pass is hallowclothing77

Thank you!

Hi there @hallowclothing ,

I can’t get your email template from your store link. Post your email template code so I may provide the solution to your problem specified to your email template code.

Hi, @UmairA

Oh yes, that makes sense. I will paste it below.

{% layout none %}
{% assign formatted_initial_value = gift_card.initial_value | money_without_trailing_zeros: gift_card.currency %}
{% assign formatted_initial_value_stripped = formatted_initial_value | strip_html %}

{% if settings.favicon %}

{% endif %} {{ 'gift_cards.issued.title' | t: value: formatted_initial_value_stripped, shop: shop.name }}

{{ ‘timber.scss.css’ | asset_url | stylesheet_tag }}
{{ ‘theme.scss.css’ | asset_url | stylesheet_tag }}
{{ ‘gift-card.scss.css’ | asset_url | stylesheet_tag }}
{{ ‘modernizr.gift-card.js’ | shopify_asset_url | script_tag }}
{{ ‘vendor/qrcode.js’ | shopify_asset_url | script_tag }}

{{ content_for_header }}

{{ shop.url }}

{{ 'gift_cards.issued.subtext' | t }}

{% unless gift_card.enabled %} {{ 'gift_cards.issued.disabled' | t }} {% endunless %} {% assign gift_card_expiry_date = gift_card.expires_on | date: format: 'basic' %} {% if gift_card.expired and gift_card.enabled %} {{ 'gift_cards.issued.expired' | t: expiry: gift_card_expiry_date }} {% endif %} {% if gift_card.expired != true and gift_card.expires_on and gift_card.enabled %} {{ 'gift_cards.issued.active' | t: expiry: gift_card_expiry_date }} {% endif %}
Gift card illustration

{% assign initial_value_size = formatted_initial_value | size %}

{% if gift_card.balance != gift_card.initial_value %} {{ gift_card.balance | money }} left {% endif %} {{ formatted_initial_value }}

{% assign code_size = gift_card.code | format_code | size %}

{{ gift_card.code | format_code }}

{{ 'gift_cards.issued.redeem' | t }}

{% if gift_card.pass_url %} {{ 'gift_cards.issued.add_to_apple_wallet' | t }} {% endif %}