hey Guys,
Is there any way to center the quantity selector on the product page?
My domain is ElevationAthleticsYYC.ca and my theme is prestige.
Thanks,
Claudio
hey Guys,
Is there any way to center the quantity selector on the product page?
My domain is ElevationAthleticsYYC.ca and my theme is prestige.
Thanks,
Claudio
@Claud123 , do this to fix it in 20 seconds:
@media (max-width: 749px){
.ProductForm__QuantitySelector{
display: flex;
align-items: center;
justify-content: center;
}
}
Kind regards,
Diego
Hi @Claud123 ,
You can follow the instruction below:
@media (max-width: 1007px) {
.ProductForm__QuantitySelector {
display: flex;
justify-content: center;
}
}
If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.
@media (max-width: 749px){
.ProductForm__QuantitySelector{
display: flex;
align-items: center;
justify-content: center;
}
}
Thanks!
It works on mobile devices, but not on Dektop. Could you help me out? Thank you!