How to remove footer on certain pages

Hello there!

I would like to make that footer area does not appear on some pages.
I checked similar topics, but did not work on my page.
Would you please help me?
Thank you for the support.

Hello there,

I hope you are doing well today.

You can use the following CSS code to hide the footer area but you need to change the page ID to be used an a specific page by going to Appearance > Customize > Additional CSS and pasting it there.


/*Hide footer*/
.page-id-662 #footerarea {
    display: none;
}

How to fide page ID:

Best Regards,
Support

It worked! Thank you!!

Can you tell me about the CSS, if I want to set this setting for multiple pages?

Hey there

for several pages you can use this method:

/Hide footer/
.page-id-662 #footerarea,
.page-id-xxx #footerarea,
.page-id-xxy #footerarea {
display: none;
}

just change xxx and xxy and add new pages ID that’s it :slight_smile: