How can I center the 'Subscribe' text box in my footer section?

Hello!

I am looking to center the “Subscribe to our emails” text box in my footer section. I have found somewhat of a solution but I would like the Subscribe Box below the Info Section. Thanks in advance!

Hi @breadwinner

Can you provide your website so we can provide a specific code for you?

@breadwinner Do you mind if you share the product URL. Also if it is password protected then share the pass. If you have issue to share the pass , you can share the pass in my inbox.

Hi @breadwinner ,

Go to Assets > base.css and paste this at the bottom of the file:

@media screen and (min-width: 750px) {
	.footer-block--newsletter {
		position: relative;
	}
	.footer-block__newsletter {
		width: 100% !important;
		text-align: center !important;
		align-items: center !important;
		padding: 0 40px !important;
	}
	.newsletter-form {
		margin: auto !important;
	}
	.footer-block__newsletter+.footer__list-social {
		position: absolute;
		bottom: 0;
		right: 0;
	}
}

Hope it helps!

This worked! Thank you so much.