How can I alter the color of my quantity input button?

Hi there,

How can I change the quantity input button here: https://taneraskin.com/products/orange-oat-peeling

I would like to remove the grey border and pink background when you click on the quantity number.

Best,

Isa

1 Like

HI @isabellemaria ,

I understand that you want to remove the border and background when you click the quantity box. Please follow the instructions to do so.

  1. From you Admin page, go to Online store > Themes > Click the three dots on the theme you want to edit > Edit code
  2. Go to Asset folder and open the base.css file
  3. At very end of the code, add the code below
.quantity .quantity__button:focus, .quantity .quantity__input:focus, .quantity .quantity__button:focus-visible, .quantity .quantity__input:focus-visible {
    background-color: transparent;
    box-shadow: none;
    outline: none;
}