Set footer for all pages execpt one

Hi,
I would like to set the same footer for all pages of my website except one. Is there a way to do this without selecting the pages one by one?

Thanks.

Hello @adequasys,

Thanks for asking. :slight_smile:

You can chose not to display footer on one page using following CSS:

.page-id-1457 footer.x-colophon.bottom {
    display: none;
}

You just need to replace 1457 from above code.To find out page id you can take a look at following post:

Thanks.

1 Like

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.