Change Color of Add to Cart Button

Solved

Change Color of Add to Cart Button

Mg71
Excursionist
48 0 8

I'd like to change the add to cart button to black with white text. I'm using the pipeline theme.

 

Thank you!

 

Screenshot 2024-06-24 174306.png

Accepted Solution (1)

comercioservice
Shopify Partner
291 37 36

This is an accepted solution.

@Mg71 

Hope you are well
Please go to
1) Online store
2) Themes -> Edit theme
3) Layout
4) custom.pages.home.min.css and paste this code on the end

 

.product__submit__buttons .btn--primary.btn--outline {
    --btn-text: #fff;
    --btn-bg-hover: #fff;
    background: #000;
}

.product__submit__buttons .btn--primary.btn--outline:hover {
    background: #fff;
    color: #000;
    border-color: #000;
}​


result

round_0-1719266537406.png

 

 

I hope it works for you, let me know, and If you'd like to discuss this more, don't hesitate to send me a PM
Was my reply helpful? Click Like to let me know! Was your question answered? Mark it as an Accepted Solution.
Need store customizations, bug fixing or development ? Contact with us -- Support form for quick quote!
BFCM Big Deals: Big savings 25% off -on our Shopify FAQs apps!

View solution in original post

Reply 1 (1)

comercioservice
Shopify Partner
291 37 36

This is an accepted solution.

@Mg71 

Hope you are well
Please go to
1) Online store
2) Themes -> Edit theme
3) Layout
4) custom.pages.home.min.css and paste this code on the end

 

.product__submit__buttons .btn--primary.btn--outline {
    --btn-text: #fff;
    --btn-bg-hover: #fff;
    background: #000;
}

.product__submit__buttons .btn--primary.btn--outline:hover {
    background: #fff;
    color: #000;
    border-color: #000;
}​


result

round_0-1719266537406.png

 

 

I hope it works for you, let me know, and If you'd like to discuss this more, don't hesitate to send me a PM
Was my reply helpful? Click Like to let me know! Was your question answered? Mark it as an Accepted Solution.
Need store customizations, bug fixing or development ? Contact with us -- Support form for quick quote!
BFCM Big Deals: Big savings 25% off -on our Shopify FAQs apps!