Removing the quote button on the home page

Hi All,

Please assist I need to remove the quote button on the Home page that is on the top right corner.

I have highlighted it in yellow.

1 Like

This is the shopping cart button. Are you sure you want to remove it?If so, please share the store URL so that I can assist you.

Hey @IanIan26

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > base.css and paste this at the bottom of the file:
.header__icon--cart {
display: none;
}

Hello @IanIan26

You can add code by following these steps

  1. Go to Online Store β†’ Theme β†’ Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

.header__icon.header__icon--cart { display: none !important; }

Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.

This has worked.

Thank you.