Hi All,
Please can someone assist me.
I am using Venture Theme and I would like to center align the “Quantity” box on product pages for screen sizes under 750px (see screenshot below).
Thanks in advance!
Hi All,
Please can someone assist me.
I am using Venture Theme and I would like to center align the “Quantity” box on product pages for screen sizes under 750px (see screenshot below).
Thanks in advance!
Hi @guyv ,
Please add below code to your theme.css
Go to Online store > Actions > Edit code > Assets > Theme.css
@media only screen and (max-width: 750px){
.product-form__item.product-form__item--quantity {
text-align: center;
margin: 0 auto 10px auto;
}
}
Hope this helps
Regards,
Reena
Worked perfectly! Thanks a lot.