Hello! I am trying to make a special landing page for a part separate from my normal theme.
How do I remove the footer and sidebar? I did not want to load a template but add to this page. Thanks!
Admin https://imgur.com/a/D63Gpog
Preview of life https://imgur.com/a/jixz7XI
Thanks!
Hello,
Unfortunately the footer can be remove only with custom css, if you want to do this just send me a link with the page that you do not want to have a footer and I’ll provide the code to remove the footer section on that page.
Also the sidebar in pages made with tagDiv Composer can be set with this builder, also the page template can have a sidebar -> http://prntscr.com/pcq2yt , what You can do is to change the page template or set on no sidebar.
Thank you!
Thanks for the help! Sidebars I got now.
Please send over the css to remove the footer. Thanks 🙂
http://themeupgrade.minecraft-resourcepacks.com/home-page-arb-landing-layout/
I will use the same code on the other pages I create.
Hello,
In order to remove the footer on specific pages/post you’ll need to set the post/page id like this https://www.screencast.com/t/U3fS8lBn and the specific footer class .
The code need to be set in theme panel> Custom code> Custom css
This code is only for the above page to remove the footer ->
.page-id-21695 .td-footer-wrapper {
display: none;
}
If you want to remove the sub-footer to, you’ll need to use this custom css -> http://prntscr.com/pdp4xc
.page-id-21695 .td-footer-wrapper, .page-id-21695 .td-sub-footer-container {
display: none;
}
Thank you!
Thanks it worked great! I tried cloning the page, and it did not work on the others.
I have 30 pages that I want this done for lol.. is there a way to do this in bulk?
Another page ID is 21856
Hello,
You’ll need to set for each page the page id, the code wil look like this:
.page-id-1 .td-footer-wrapper,
.page-id-2 .td-footer-wrapper,
.page-id-3 .td-footer-wrapper {
display: none;
}
In your case would be :
.page-id-21695 .td-footer-wrapper,
.page-id-21856 .td-footer-wrapper {
display: none;
}
Hope this will help you!
Than you!