How to adjust quantity button width

I’m looking to make the quantity button more skinny the same size as the add to cart button in this page without Affecting the quantity buttons in cart drawers for mobile and desktop

url knmb1c-pf.myshopify.com

password samurai

Hi @undercoverfresh
Please add this code to Custom CSS in Online Store > Themes > Customize > Theme settings.

.product .quantity {
min-height: 45px;
width: 100%;
}

1 Like

Hi @undercoverfresh

You can try to follow this step
Step 1: Go to Edit code
Step 2: Find file base.css and add this code at the end of the file

.quantity {
    min-height: 42px !important;
}

Result:

Best,

Liz

1 Like