How can I modify the position of elements in Dawn theme's footer?

Hello,
I would like to change the position of Newsletter and social media icons to the right of ‘Useful links’ .see the screenshots attched.

Hi @devs2 ,

Please share your store URL and if your store is password protected then please provide password too.

So that we can help you.

Thank you.

okay.

Hi @devs2 ,

You can follow the instruction below:

  1. Go to Online Store->Theme->Edit code
  2. Asset->/section-footer.css->paste below code at the bottom of the file:
@media (min-width: 750px) {
	 .footer__content-top {
		 display: flex !important;
	}
	 .footer__content-top .footer__blocks-wrapper {
		 width: 65%;
	}
	 .footer__content-top .footer-block--newsletter {
		 width: 35%;
		 margin: 0 !important;
		 display: block;
	}
	 .footer__content-top .footer-block--newsletter .list-social {
		 margin-top: 20px;
		 justify-content: flex-start !important;
	}
}

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.

1 Like

Thank you so much AvadaCommerce

1 Like