Hello all, I’m using the Empire Theme, as the screenshot below, the “Add to Cart” and “Buy It Now” buttons are not aligned, is there a way to fix this? Thank you
Topic summary
A user reports misalignment between “Add to Cart” and “Buy It Now” buttons in the Empire Theme on their Shopify store.
Issue Details:
- Buttons appear visually misaligned on product pages
- Screenshot provided showing the alignment problem
Resolution:
- Another user requested the store link to diagnose the issue
- A CSS fix was provided to add to the theme.css file:
- Sets button width to 100%
- Adjusts margin to 0px
- Targets
.product-form--action-buttonclass
Status: Solution provided; implementation and confirmation pending from the original poster.
Can you share store link so we can help you with CSS to fix it?
helloo, here’s our store link: https://www.trekvue.com/
Add this CSS to theme.css file.
button.product-form--atc-button {
width: 100%;
margin: 0px;
}
1 Like
