How to center product variants on mobile only in Prestige theme?

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

1 Like

@Claud123

sorry for that issue can you try this code

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.css ->paste below code at the bottom of the file.
.Product__Info, .ProductMeta {text-align: center;}
.ProductMeta__ShareButtons {justify-content: center;}
1 Like

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:

1 Like

@Claud123

yes, please add this code

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.css ->paste below code at the bottom of the file.
@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;}
}
1 Like