Hi all !
At checkout:
-
Is it possible to make the corners of the rectangular quantity box rounded?
-
Is it possible to have the quantity selection box without an outline?
Hi @Nykuu
You mean the cart page or checkout page?
I see your screenshot look like cart page.
Yes, it’s totally possible on the cart page!
We just need to tweak the CSS a little to:
Make the quantity box corners rounded (e.g., using border-radius)
Remove the outline (e.g., using outline: none;)
Hi @Nykuu
Please clarify the design you’re looking for.
Do you want rounded corners? Or would you like to remove the outline around the quantity?
Also, please share your store URL so I can provide the exact solution you need.
Thanks!
Yes, on cart page
Can you share your store url then I will check & give you the custom code about that
In the quantity box, both on the product page and in the cart, I would like to know about both options:
batwea
In the quantity box, both on the product page and in the cart, I would like to know about both options:
batwea
I would like this to take effect not only in the quantity box in the cart, but also in the quantity box on the product page, will this change in both places?
Yes you can use this custom code:
quantity-input .quantity:after{
border-radius: 20px;
}
quantity-input .quantity__input:focus-visible{
outline: none;
box-shadow: none;
outline-offset: 0;
background: transparent;
}
Where do i add that code ?
Thanks for the info try this code below.
quantity-input.quantity::after,
quantity-input.quantity::before,
quantity-input.quantity {
border-radius: 50px !important;
}
And Save.
Result:
THis code is to take out the outline.
quantity-input.quantity::after,
quantity-input.quantity::before {
box-shadow: none !important;
}
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!