Reduce the size of quantity selector field

Hi,

How do I reduce the quantity size selector field to the same as size drop down?

I use Supply theme

Shop url - lcouturedesigns.com

Thanks for your help in advance

Regards

Liju

1 Like

@Lijuj

Please add the following code at the bottom of your assets/theme.scss.liquid file.

@media screen and (min-width: 769px){
select#quantity { max-width: 40%; }
}

Hope this helps.

Thanks!

1 Like

@Lijuj

Sorry for facing this issue, it’s my pleasure to help us.

can you please try this code.

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.scss.liquid->paste below code at the bottom of the file.
.addToCartForm select { width: 100px;}

@dmwwebartisan It works perfectly :slightly_smiling_face: thanks !!

1 Like