Archived topic
Merge Secondary Navigation with Footer
4 replies · Started by Chitika on November 12, 2020
Currently I have the secondary navigation above the footer element. Just where the copyright notice is here.
I would like to merge this with the footer, so I have "copyright notice" on the left hand side , and the secondary navigation aligned to the right.
Hi there,
That would require a custom solution unfortunately as there nothing built-in for it.
Have you considered using a footer menu instead?
https://docs.generatepress.com/article/footer-bar-widget-area/#adding-a-footer-menu
Okay.
If that's not possible, can I add a menu to the copyright footer.
Just like this - https://bloggingden.com/
As we see at the bottom.
Hi there,
try adding this CSS:
@media(min-width: 769px) {
.inside-site-info {
display: flex;
padding: 0 20px;
}
.copyright-bar {
order: -1;
margin-right: auto;
}
}
Thanks. I just used the footer widget area align left to show my pages on the left and copyright area on the right.