How can I hide the cart icon in the Origin Theme header?

Hi everyone can someone please tell me how to hide the cart icon in the header or simply some code to put in.

Using Origin Theme.

Thankyou

https://bab201-2.myshopify.com/

2 Likes

go to edit code and search base.css add this code in bottom

#cart-icon-bubble{
    display: none !important;
  }

@kaidickson

Please add the following code to your assets/base.css bottom of the file.

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

Thanks!

Hi @kaidickson ,

You can try this one.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. In the “Assets” folder, click on “base.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
  4. And Save.
a#cart-icon-bubble {
    display: none;
}

Result:

I hope it help.