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!
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!
Go to ‘Online Store’ → Theme → Edit Code
Inside the assets folder locate the file ‘base.css’ or ‘styles.css’ or ‘theme.css’ or ‘main.css’
Paste this code at the end of the file
a#cart-icon-bubble{
display: none !important;
}
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.
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!