Archived topic
Remove copyright bar
9 replies · Started by Sandro on October 26, 2020
Hi
I can't find a way to remove the copyright bar.
If I erase any text in the box of the copyright, in the footer appears this script:
" © 2020 SQUARCI • Creato con GeneratePress "
Am I obliged to have something written in that part of the site?
Thanks
Hi there,
Give this PHP snippet a shot:
https://docs.generatepress.com/article/changing-the-copyright-message/#removing-the-entire-footer-bar
Adding PHP: https://docs.generatepress.com/article/adding-php/
Let me know if this helps :)
The snippet you suggested has this introduction:
"If you don’t have GP Premium, you can use a function instead..."
But I have GP Premium
So do I need a snippet just to remove anything in that part of the site?
I'm actually talking about the snippet under the title "Removing the entire footer bar":
https://docs.generatepress.com/article/changing-the-copyright-message/#removing-the-entire-footer-bar
Question: Are you using any footer widgets?
If not then you can just create a layout element to remove the footer globally:
https://docs.generatepress.com/article/layout-element-overview/#disable-element
I am using a menu in the footer
http://www.squarci.info
I just want the space of the copyright empty.
Is it possible?
Ahh that case try this CSS:
.footer-bar-align-left .copyright-bar {
display: none;
}
.footer-bar-align-left .footer-bar {
float: none;
text-align: center;
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
Let me know if this helps :)
Ok, actually I have just writed only:
.copyright-bar {
display: none;
}
And it worked.
That's all I need, I presume
Yup that would work too.
My code just centers the footer menu which looks like you don't want :)
I'm happy with my footer menu on the left, at the moment
:-)
Thanks for your help
No problem :)