How to hide a custom footer to only one page ? (not main page)
I want to create a landing page (with landing page template) and add content only in footer.
I try to load a custom footer in landing page template with “get “myfooter” but this dooesn’t work.
-
This topic was modified 12 years, 1 month ago by Myleene.
Every page adds a unique class to the body tag like page-id-xx where xx is the id of the page. You can add something like this in the css to hide the footer:
.page-id-xx #footer {
display: none;
}