Hi all,
Please see attached image and help in fixing the product quantity increment issue. I don’t know why this is happening when viewing on mobile. Feel free to view store on mobile here
Thank you in advance!
Mobile product page in Shopify Dawn theme shows a broken/incorrect product quantity increment UI (illustrated via an attached screenshot and a mobile store link).
Most recent fix provided:
assets/base.css for screens max-width: 749px..visually-hidden positioning/clipping and forces .quantity { width: 100% !important; } on mobile.Outcome:
Hi all,
Please see attached image and help in fixing the product quantity increment issue. I don’t know why this is happening when viewing on mobile. Feel free to view store on mobile here
Thank you in advance!
Please add following css your assets/base.css botttom of the file.
@media screen and (max-width: 749px){
.visually-hidden {
position: absolute!important;
overflow: hidden;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
border: 0;
clip: rect(0 0 0 0);
word-wrap: normal!important;
}
.quantity { width: 100% !important;}
}
Thanks!
@dmwwebartisan Thank you so much for your help!