Archived topic
Change footer copyright position
3 replies · Started by Alfredo on April 18, 2018
Hi, i would like to move the copyright footer in the menu sidebar. It's possible? I use generatepress with Sider from Site Library.
Thanks
I think the easiest way to do this would be to remove the default copyright: https://docs.generatepress.com/article/changing-the-copyright-message/#removing-the-entire-footer-bar
Then add your copyright as a header widget in "Appearance > Widgets".
Alternatively, you could hide the footer copyright on desktop:
@media (min-width: 769px) {
.site-info {
display: none;
}
}
Then hide the copyright widget you added to the Header Widget area on mobile. I would need to see it added in order to give you the correct CSS.
Let me know if you need more info :)
Thank you so much, i had not considered this approach but it was very effective!
Awesome - glad I could help :)