How can I change my store name to a logo on my packing slip?

How can I change my store name to a logo on my packing slip?

Eleni22
Visitor
2 0 0

Hello, I am working on my packing slip and I would like to change my shop name to my logo instead. This is the code that is pulling in my store name:

<div class="shop-title"> <p class="to-uppercase"> {{ shop.name }}

 

Are you able to tell me the bit of code that will pull in my logo instead? Thank you

Replies 3 (3)

RENE-
Shopify Partner
68 1 13

This is the code on my packing slip, I have my logo on it too. Maybe this will help you...

 

<link rel="stylesheet" type="text/css" href="https://cdn.shopify.com/s/files/1/0008/7434/8580/files/font_file.css?v=1645859652">
<div class="wrapper">
<div class="header">
<div class="shop-title">
<h1 class="site-header__logo-link">
RENE LEBLANC
</h1>
{% comment %}<img src="https://cdn.shopify.com/s/files/1/0008/7434/8580/files/logo_180x.png?v=1617858265" alt="{{ shop.name }}" width="{{ shop.email_logo_width }}">{% endcomment %}
</div>
<div class="order-title">
<p class="text-align-right">
Order {{ order.name }}

RENE-
Shopify Partner
68 1 13

I think the logo was first uploaded in "files" and then placed on the packing slip like this.

Eleni22
Visitor
2 0 0

Thank you!