Publisher Theme - Remove "Add to Cart" Bag

How do I remove the “add to cart” bag from my website?

I do not offer any physical product and want to remove it for now.

Thanks!

  1. Go to ‘Online Store’ → Theme → Edit Code

  2. Inside the assets folder locate the file ‘base.css’ or ‘styles.css’ or ‘theme.css’ or ‘main.css’

  3. Paste this code at the end of the file

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

Thank you! That worked!

One more question. How would I move the “search bar” to the right since the “add to cart” bag is now gone?

Thanks

Do you mean closer to the right side of the screen? I can help you with that if you share your store’s URL, please.

Yes, thats correct.

It’s https://letstalkwithmadi.com/

Add this code at the end of the ‘base.css’ file

header.header.header--middle-center.header--mobile-center.page-width.header--has-menu.header--has-social{
   padding-right: 0;
}

Thank you again!

1 Like