Main issue: In the Shopify Sense theme, collection-page “Add to cart” buttons are outlined, unlike product-page buttons. Users want solid fill and control over text color.
Solution provided: Add a CSS rule in Assets > base.css (or theme.css):
Selector: .quick-add__submit
Properties: background-color: #edffa7; color: #000; (some suggest using !important, and unsetting --color-button-text)
This targets the collection-page quick add button and renders it as a solid button with specified text color.
Outcome: The original poster confirms the fix works. Another user reports success on Collection pages.
Open question: A user asks how to apply the same styling to Product page “Add to cart” buttons globally, rather than editing each product template. No answer yet.
Notes:
The CSS snippet is central to the solution.
“base.css” is the theme stylesheet; “.quick-add__submit” is the class for the collection quick-add button.
This worked for me too on the Collection pages. If I wanted to do the same thing on the product pages for the add to cart buttons, can I use the same code on the product pages? and is there 1 spot I can edit them all, versus having to edit on each product template I have? Thanks!!