Hello,
does somebody know how to add the higher lower option on the quantity selection on mobile?
Thank you!
Hello,
does somebody know how to add the higher lower option on the quantity selection on mobile?
Thank you!
use below css code in your theme.scss.css file refer to the screenshot below
@media screen and (max-width:600px){
.product-single__quantity input#Quantity[type=number]::-webkit-inner-spin-button,
.product-single__quantity input#Quantity[type=number]::-webkit-outer-spin-button {
opacity: 1;
}
}
This is not working sadly.
it should work i have tested it. can i fix that for you ?
@media screen and (max-width: 600px){
.product-single__quantity input#Quantity[type=number]::-webkit-inner-spin-button,
.product-single__quantity input#Quantity[type=number]::-webkit-outer-spin-button {
opacity: 1;
-webkit-appearance: initial !important;
}
}