How can I center the 'Shop Now' button in the Sense theme?

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

1 Like

Hi @ahana1605

Please change the marging value from 55px to 20px in your index file template.

Add this css at the bottom

Online Store->Theme->Edit code

assets->base.css

AnhTien_0-1662438440307.png

Best regards,

AnhTien

@ahana1605

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.