Hi, I am trying to change the color of two buttons on my website. The “quick checkout” button is white, so invisible, I want it yellow, and in my cart section the checkout button is also white. I managed to make the “add to cart” button white but whenever I try to copy the code for the quick add button it won’t solve it. Any ideas? www.Balondo.nl
Also, the quantity in shopping cart is white. I’d like to change that too.
1 Like
Hi @nijntjelover
Try this one.
- From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
- Find the theme that you want to edit and click on “Actions” and then “Edit code”.
- In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
button.shopify-payment-button__button.shopify-payment-button__button--unbranded.BUz42FHpSPncCPJ4Pr_f.jjzYeefyWpPZLH9pIgyw.RWJ0IfBjxIhflh4AIrUw, button#checkout, .cart-count-bubble {
background: #ffc439 !important;
color: black;
}
2 Likes
Please dont forget to hit Like also. Thank you!