remove header in specific pages
-
Hi
Is there a way to have a blank page w/o the header and the top menus? I need it for a sales page where I want to eliminate any distraction.
the site is at http://www.rankup.co.il
Untested code, might work or not.
#post-id #nav .menu, #header {
display: none;
}(replace post-id with the actual id of the sales page)
or
#post-id #header, #nav .menu {
display: none;
}or
#post-id #header {
display: none;
}#post-id #nav .menu {
display: none ;
}or,
#post-id #nav {
display: none;
}keep trying different combinations until you succeed..
(I wonder how your customers navigate without menus on sales page!)
Hi.
Thanks for your prompt reply.
As I’m not a programmer, please explain where exactly do i have to embed those piece of code?
Regarding my customer, I want it too be a ad-words landing page with a video and contact form. that’s all.
Regards,
Amos
If you’re using child theme, add this code to your style.css file, else, go to Graphene Options –> Display –> Custom CSS (it’s located at the bottom of the page) and add this code to Custom CSS field.
#post-136 #header, #nav {
display: none :
}Here, I’m assuming that “http://www.rankup.co.il/consult” is the sales page. (So, it’s id is 136) Let me know if doesn’t work.
Prasanna,
The following code eliminated the header and the menu from the entire site, not only from post # 877
#post-877 #header, #nav .menu {
display: none;
}
#post-877 #nav .menu, #header {
display: none;
}
Appreciate your further support.
Amos
Viewing 5 posts - 1 through 5 (of 5 total)
- You must be logged in to reply to this topic.
