How to Change the Color of Plus and Minus Quantity Button in Ride Theme

What code would I need to change the color of the plus and minus buttons on the product page? I would like to change it to black. See link below.

Product Page

Hi @Hoods ,

Go to base.css file in the assets and find the class mentioned below:

.quantity__button:first-child {
color: #ff0000;
}
.quantity__button:last-child {
color: #ff0000;
}

Add the above code in those classes and set the color hex code of your choice. It will change the colors of the + and - buttons in quantity.

P.S: If you don’t have technical knowledge, You can send us a DM, and we will do that for you.

https://bityl.co/G9xC

Cheers :slightly_smiling_face:

Technika

1 Like

Worked like a charm. Thank you!