Hello there ,
Is there any way to change the style of the quantity box in the product page , Right now it looks like oval shape , i want it to look like this .
Can anyone assist me with this .
Thank You !!
Hello there ,
Is there any way to change the style of the quantity box in the product page , Right now it looks like oval shape , i want it to look like this .
Can anyone assist me with this .
Thank You !!
Hey @Anonymous
Follow these Steps:
Go to Online Store
Edit Code
Find theme.liquid file
Add the following code in the bottom of the file above tag
RESULT:
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
Hello @Anonymous ,
Follow these steps:
Go to Online Store → Theme → Edit code
Open your base.css file and paste the following code below:
.product-form__quantity .quantity {
border-radius: 0px !important;
border-color: #ddd;
}
Note: Always use the css code in the css files.
Thanks
Thank you ,
How to reduce that box width?
Hey @Anonymous
Keep the previous code and add this new code in theme.liquid file above with the same steps.
.quantity {
border: solid 1px black !important;
width: 110px !important;
}
RESULT:
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed