Hello,
My size variety pills, quantity buttons, and buy buttons are off center. They’re centered but from the overall page they’re still very far away. Can anyone give me a fix for this? I have this issue in the home page as well as the specific product page itself. Also, every single product has this off-center issue on my store. Thanks in advance. My store url is clubevince.com
Thanks in advance!
Hi @ClubEvince
Check this one.
From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
Find the theme that you want to edit and click on “Actions” and then “Edit code”.
In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.product-form__input {
max-width: 100%;
}
.product-form__buttons{
margin:auto;
}
And Save.
Result:
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!