How can I center the email bar and copyright in Dawn theme footer?

How do I edit my footer so that my mailing list email bar is centered above my social media icons? I am using the dawn theme. Currently my email bar is on the left and my social media icons are on the right. Also, how do I center my copyright Shopify store name at the very bottom of the page? I just want everything to be centered. Thank you!

What it currently looks like:

What I want it to look like:

Hi @ARTess ,

This is Richard from PageFly - Landing page builder, I’d like to suggest this idea:
Step 1: Go to Online Store->Theme->Edit code
Step 2: Asset->/section-footer.css->paste below code at the bottom of the file:

@media screen and (min-width: 990px) {
	 .footer-block--newsletter {
		 justify-content: center;
		 flex-wrap: wrap;
	}
	 .footer-block--newsletter > * {
		 width: 100% !important;
	}
	 .footer-block--newsletter .footer-block__newsletter {
		 text-align: center;
	}
	 .footer-block--newsletter .footer__newsletter {
		 margin: 0 auto 10px !important;
	}
	 .footer-block--newsletter .footer__list-social {
		 justify-content: center;
	}
}

I hope it would help you
Best regards,

Richard | PageFly

1 Like

Thank you so much that worked!