How to hide the footer from a specific page or from the entire site
To hide the footer from a page:
Go to the Page settings
and paste following custom code in the Custom <head> code section
<style>
.footer-02 {
display: none;
}
.footer-04 {
display: none;
}
</style>
To hide the footer on every page of the site:
Go to the General settings
and paste following custom code in the Global <body> HTML code section
<style>
.footer-02 {
display: none;
}
.footer-04 {
display: none;
}
</style>
Updated on: 16/09/2024
Thank you!