I want to solve my problem in the footer. Can we make this list in the footer vertically?
I use the Loft theme
Could anyone assist please thanks
I want to solve my problem in the footer. Can we make this list in the footer vertically?
I use the Loft theme
Could anyone assist please thanks
Hey Totsemporium,
Is this what you are looking for?
If so, all you have to do is change the CSS file
Update the code from this
.footer__navigation {
display: grid;
grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
}
to this:
.footer__navigation {
display: grid;
}
Removing the second row here should get the job done.