how can i shift this ‘shop now’ button to its vertical and horizontal center under the text?
the button appears to be very misaligned in this section.
shopify url: genhaat.com
Issue: The ‘Shop Now’ button in the Sense theme’s Image with Text section is misaligned; the goal is to center it horizontally (and align it neatly under the text). Site: genhaat.com.
Proposed fixes:
Key concepts: CSS margin controls spacing; ‘auto’ horizontally centers block elements; ‘!important’ forces the style to override existing theme rules.
Status: No confirmation from the original poster; no single agreed solution. Screenshots were provided for guidance but are not essential to understand the fixes. The discussion remains open/ongoing.
how can i shift this ‘shop now’ button to its vertical and horizontal center under the text?
the button appears to be very misaligned in this section.
shopify url: genhaat.com
Add this css at the bottom
Online Store->Theme->Edit code
assets->base.css

Best regards,
AnhTien
Please add the following CSS code to your assets/base.css bottom of the file.
#shopify-section-template--16414799888613__image-with-text .button { margin: 0 !important;}
Thanks!
Please add below css code in bottom of assets/base.css file
.image-with-text__content .image-with-text__text+.button {
margin: 3rem auto 0;
}
Thank you.