What's your biggest current challenge? Have your say in Community Polls along the right column.

outline button change to solid button? sense theme

Solved

outline button change to solid button? sense theme

medusasmakeup
Explorer
52 2 15

Sense theme

 

The add to cart buttons on the collection pages are different than on the product pages. It's not very smart.

 

Is there an easy way to make the outline add to cart buttons on the collection pages solid color? Also, being able to change text color on the button.

 

 

Accepted Solution (1)

PageFly-Richard
Shopify Partner
4808 1088 1758

This is an accepted solution.

Hi @medusasmakeup 

This is Richard from PageFly - Shopify Page Builder App, I’d like to suggest this idea:

 

Online Store ->Theme ->Edit code

Assets ->Base.css or theme.css

.quick-add__submit {
   background-color: #edffa7 !important;
   color: #000 !important;
}

Hope you find my answer helpful!

Best regards,

Richard | PageFly

Please let me know if it works by giving it a Like or marking it as a solution!


➜ Optimize your Shopify store with PageFly Page Builder (Free plan available) 


All features are available from Free plan. Live Chat Support is available 24/7.

View solution in original post

Replies 5 (5)

developerSP
Pathfinder
85 3 20

Hello @medusasmakeup 
Please add this css Asset > base.css and paste this at the bottom of the file:-

.quick-add__submit {
background-color: #edffa7;
color: #000;
--color-button-text: unset!important;
}

developerSP_0-1687623108035.png

 

banned

Made4uo-Ribe
Shopify Partner
9166 2186 2702

Hi @medusasmakeup ,

Would you mind to share your URL website

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
Create custom Shopify pages effortlessly with PageFly's drag-and-drop ⚙️.

PageFly-Richard
Shopify Partner
4808 1088 1758

This is an accepted solution.

Hi @medusasmakeup 

This is Richard from PageFly - Shopify Page Builder App, I’d like to suggest this idea:

 

Online Store ->Theme ->Edit code

Assets ->Base.css or theme.css

.quick-add__submit {
   background-color: #edffa7 !important;
   color: #000 !important;
}

Hope you find my answer helpful!

Best regards,

Richard | PageFly

Please let me know if it works by giving it a Like or marking it as a solution!


➜ Optimize your Shopify store with PageFly Page Builder (Free plan available) 


All features are available from Free plan. Live Chat Support is available 24/7.

medusasmakeup
Explorer
52 2 15

Thank you! Exactly what I needed!

kdotti
Shopify Partner
8 0 4

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!!