Venture Theme - Center "Quantity" box on product pages in mobile view

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!

www.electricrideco.com

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

1 Like

@Reena_Soni

Worked perfectly! Thanks a lot.