Hey Guys,
How can I center the variants on the product page on mobile only? THey show up to the left. The theme is prestige and the site is ElevationAthleticsYYC.ca
Hey Guys,
How can I center the variants on the product page on mobile only? THey show up to the left. The theme is prestige and the site is ElevationAthleticsYYC.ca
sorry for that issue can you try this code
.Product__Info, .ProductMeta {text-align: center;}
.ProductMeta__ShareButtons {justify-content: center;}
Thanks for your help. It ended up centering everything on the desktop too. I want the desktop to stay unaffected and for it just to center the variant options on mobile as well as capitalize the word Size:
yes, please add this code
@media screen and (max-width: 1007px) {
.Product__Info, .ProductMeta {text-align: center;}
.ProductMeta__ShareButtons {justify-content: center;}
.ProductForm__Label {text-transform: uppercase;font-weight: bold;}
}