Archived topic
Setting the location for navigation and copyright in the footer
5 replies · Started by Timo on March 19, 2020
Hi!
I have placed a navigation bar in my footer (Navigation Menu widget).
The footer also has a copyright text and links to privacy page:
%copy% %current_year% Website<br><br> <small>Terms/Condition & Privacy Policy</small>
I would like to place this information centered, on top of each other, so that the navigation comes first, then the copyright/privacy information is below the navigation.
I took the copyright code from Layout > Footer. However, it didn't generate the copyright correctly, when I placed the content into a Custom HTML widget (it just showed these bits as-is: %copy% %current_year%).
Ideas?
Cheers,
Timo
Hi there,
could you provide a link to the site where i can see the Footer nav and copyright in place, should be simple enough to fix with some CSS
Here we go:
Add this CSS to your Site:
.footer-bar, .copyright-bar {
float: none !important;
}
.footer-bar .widget {
text-align: center;
}
Thank you!
You're welcome