How can I modify the footer placement in Dawn Theme?

I am hoping to amend my footer so the subscription sign-up and social icons appear to the right of the menus, not below. I can not figure out how to do this and can’t find an existing conversation that works. Can someone please help?

@AusManCave . Hope you are doing well.

Could you please share your store URL? Also shared the screenshot how you would like to display or moved the content.

Thanks, it is ausmancave.com.au

I have attached an image but I am hoping to have it on the right and not the left.

@AusManCave , Did you check your customized options? you can easily drag the section up or down to set its position.

And JFYI, I have checked the website and the footer looks like attched screenshot

Thanks for your response. Unfortunately, there is no way to drag the sections up or down that I can see in the Dawn theme. Please see the screenshot.

@AusManCave , would you like to display like attached screenshot?

Yes that’s it! :heart_eyes:

@AusManCave

Please add the below line of CSS code at the end of your base.css file.

@media(min-width:991px){	
.footer .footer__content-top{
	display:grid;
	grid-template-columns:75% 1fr;
}
.footer .footer-block--newsletter{
	display:grid;
	align-items: self-start;
    margin-top: 0;
}
}
1 Like

This worked, thank you so much!

1 Like