In my footer, I would like to do the following things:
-
On my right hand side column, I want to center the text.
-
On my left hand side column, I want to take the navigation and turn it into two columns. So each column will have six links in it. I also want to center everything including the text “Explore Our Site”
Any help on how to do that will be greatly appreciated.
My website is www.PennsylvaniaParks.org
Thanks so much!
You can try follow this path:
Themes => edit code => asset => base.css
and add this code to bottom of the file base.css
.footer-block--menu .footer-block__details-content{
display: grid;
grid-template-columns: 1fr 1fr;
}
.footer-block:not(.footer-block--menu){
text-align: center;
}
Hi ExpertRookie, that was almost perfect
Only thing missing is having the title “Explore Our Site” title to be centered too. Any way to do that?
Thanks so much!