How to Remove Back to Shop across all pages

Hi,

I was wondering how I can remove the bar at the very bottom with the “Back to shop” button for all the pages.

https://the-triangle-club.myshopify.com/account/login
pass:hi1234

Best,

Chichi0114

Hi Chichi0114

You can try to follow this step
Step 1: Go to Edit code
Step 2: Find file base.css and add this code at the end of the file

a.back-to-shop {
   display: none !important;
}

Best,
Esther

Hi @chichi0114

This code is only temporary to hide the “back-to-shop” element:

a.back-to-shop {
    display: none !important;
}

In case you can’t locate the code above, if you want to completely remove it, follow these steps:

  1. Go to your theme.liquid file.

  2. Look for the code shown in the screenshot:

    https://prnt.sc/2GPYDMeJxDRz

  3. Once you find it, delete the relevant code.

I hope this helps

Best,

Daisy

Hi DaisyVo,

Thank you so much :slightly_smiling_face:

Best,

Chichi0114