Hello, I’ve been through all of the documents on here trying to figure out how to move the quantity selector to be on top center of the add to cart button. And how to customize the add to cart button to have a black border and shorter length. I’ve tested the suggestions left on here in different CSS files but no success so far, I’m extremely frustrated, I would greatly appreciate it if someone could help! I’m using the Be yours theme.
Hi @kcaresa ,
This is Anthony from Beae Landing Page Builder, and I’m happy to assist you today.
While I acknowledge that this issue falls short of the desired outcome, I have an idea that I believe might be of help:
- Go to Online Store → Theme → Edit code
- Open your theme.liquid file
- Paste below code before :
Best regards,
Anthony
Hi @kcaresa
Im not sure if this is what you mean, to center them or to align in left.
if it is try 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__buttons {
flex-direction: column;
}
button.product-form__submit.button.button--full-width {
width: 50%;
border: 1px solid black;
justify-content: center;
margin: auto;
}
- And Save.
- Result:
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
Hi @kcaresa
This is Henry from PageFly - Landing Page Builder App
You can try this code by following these steps:
Step 1: Go to Online Store->Theme->Edit code.
Step 2: Search file base.aio.min.css
Step 3: Paste the below code at bottom of the file → Save
.product-form__buttons {
flex-direction: column !important;
align-content: center !important;
}
button.product-form__submit.button.button–full-width {
border: 1px solid;
}
Hope that my solution works for you.
Best regards,
Henry | PageFly
Thank you soooooo much this worked right away!
Thank you so much i used used a party of your code for the button settings and its worked exactly as i needed it!



