Topic summary
A user wants to customize the background color of the “Add to Cart” button specifically on collection pages.
Proposed Solution:
Another user suggests adding custom CSS code to modify the button styling:
- Navigate to: Online Store > Themes > Edit code > Assets
- Add CSS targeting the
.quick-add__submitclass with abackgroundproperty - The code should be placed in either the theme’s CSS or custom CSS file
The solution involves direct theme code editing to apply the desired background styling to the add-to-cart button element.
Hi
Add this CSS code
Online Store > Themes > Edit code > Assets > custom.css or theme.css
.quick-add__submit { background: red; }
1 Like
