Publisher Theme - Remove "Add to Cart" Bag

Solved

Publisher Theme - Remove "Add to Cart" Bag

madixjohnson
Tourist
11 0 4

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!

 

Screenshot 2024-07-16 at 10.03.37 PM.png

Accepted Solutions (2)

WalkYourStyle
Navigator
475 58 79

This is an accepted solution.

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;
}

 

View solution in original post

WalkYourStyle
Navigator
475 58 79

This is an accepted solution.

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;
}

View solution in original post

Replies 6 (6)

WalkYourStyle
Navigator
475 58 79

This is an accepted solution.

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;
}

 

madixjohnson
Tourist
11 0 4

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

WalkYourStyle
Navigator
475 58 79

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.

madixjohnson
Tourist
11 0 4

Yes, thats correct. 

 

It's https://letstalkwithmadi.com/

WalkYourStyle
Navigator
475 58 79

This is an accepted solution.

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;
}
madixjohnson
Tourist
11 0 4

Thank you again!