How can I change the footer navigation layout in Dawn Theme?

Hi all,

I would like to make my footer navigation go across my page instead of up and down. Then I would like the section titled “about your donation” to go across the page under the navigation. Is this possible? I am horrible when it comes to coding.

My website is www.PennsylvaniaParks.org

Thanks in advance!

@Justin34 - add this css to the very end of your base.css file and check

@media screen and (min-width: 750px){
.footer__content-top .grid {flex-direction: column;}
.footer-block {width: 100% !important;}
.footer-block--menu .footer-block__details-content {display: flex; align-items: center; justify-content: center;}
.footer-block__heading {text-align: center;}
}

1 Like

Worked perfectly. Thanks!