How can I change the color of the plus and minus on product page?

The plus and minus in the quantity selector are showing black but I’d like them to show white. I can’t find the code for this anywhere, other than adding something to my base file, but my theme doesn’t have a base file. Can anyone help?

Hello, please share the website url

https://sulingfurnishings.com.au/

password iayais

Hey, your should go to:

Online store > find your theme > 3 dots menu > Edit code.

Open the vendor.css file inside your assets folder.

At the bottom of the file copy and paste this code.

.quantity__button svg {
  stroke: white;
  width: 16px;
}

This only fill the stoke color, I’m not finding how to access the fill property but its visible now.

Also the buy with shop (purple) button, has a rectangle in the background. I would change that color the same as the button.

Here is the code for that.

Open component-product-template__info.css file inside assets folder.

Go to the bottom, and copy and paste this code.

.shopify-payment-button__button {
  background-color: #5a31f4;
  border: none;
}

Hope this helps.

Hi @lillylove

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

Online Store ->Theme ->Edit code

Assets ->vendor.css

.quantity__button {
    background-color: #fff !important;
}

Hope you find my answer helpful!

Best regards,

Richard | PageFly

Thank you so much! This works perfect. And an extra thanks for the shop pay button fix!

Thank you! I like this too!

You are welcome!