I cannot edit the alignment of the product form (quantity and button) on my product page and the product section on my homepage. I have tried applied the text-align, align-content, and align-items CSS commands but it doesn’t seem to be working on this particular element. It works on all other elements in the section.
Any idea why this section might not be responding?
Site is www.eatbubs.com. You’ll notice that the quantity selector is too far over to the left.
Hi @mkrakower
If you want the code affect toparticular element of section only then please add code into Custom CSS of section
@mkrakower - please add this css to the very end of your theme.css file and check
.product__quantity-wrapper, .add-to-cart {flex-basis: 50%;}
Hi @mkrakower ,
You can try this code by following these steps:
Step 1: Go to Online Store->Theme->Edit code.
Step 2: Search file theme.liquid
Step 3: Paste the below code at the bottom of the file → Save
Hope my solution works perfectly for you!
Best regards,
Oliver | PageFly
Hello @mkrakower 
You can use this code
.product__quantity-atc-container {
justify-content: center;
}
.product__quantity-atc-container .add-to-cart {
min-width: initial;
flex-grow: 0;
}
The result
@ZenoPageBuilder @PageFly-Oliver @suyash1 @Dan-From-Ryviu Thank you all for the responses. I have tried them all with varying success. Some make an impact and some do not. I was able to get the button to align center, but not the quantity selector. See screenshot attached. Any ideas why the quantity selection is still aligned to the left side of the element?
This one worked, thank you all!