How to Change the Quantity Button in 'Your Cart' Section

Hi

Can someone tell me the code and where to put it in the ‘Craft’ theme to change the quantity button to transparent in the ‘Your Cart’ section

It is currently black (see picture)

I can not provide url as the site is not published yet.

1 Like

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > base.css and paste this at the bottom of the file:
quantity-input.quantity {
background-color: transparent!important;
}

Thank you for your reply

Unfortunately that did not work

1 Like

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > base.css and paste this at the bottom of the file:
quantity-input.quantity::before {
    background: transparent;
}

amazing, that worked thank you

1 Like

Thank you for your response. It’s good to know that it’s worked for you. Kindly feel free to get back to me if you need any further assistance.
If helpful then please Like and Accept Solution.

1 Like