Hi guys,
I need to create a page that displays no header or navigation, but the rest of the site needs to keep the header and navigation.
Is this possible?
Thanks,
Dave
Hi atrixdave:
Whlie creating your “page” on the right end bottom under “Header visibility and transparency” you can chose your header options :
Hide header on this page
Hey!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.page-id-2270 #header { display: none !important; }
and change the page id to match your page. You can right click on Chrome or Firefox to inspect elements to find page ID’s http://i.imgur.com/HyPTCRg.jpg
Best regards,
Yigit
THANK YOU! You guys are the best. Yigit, what CSS would I use to set a different background color for an individual page?
Hi!
Please use following code
.page-id-59 #main > .container_wrap { background-color: orange; }
You can right click on Chrome or Firefox to inspect elements to find page ID’s http://i.imgur.com/HyPTCRg.jpg
Regards,
Yigit
Thanks Yigit…that changed the container wrap…but I was referring to the full background (the one that’s displaying in #222222 right now on this page): http://www.crude.com/op-email-ebook-page/
How do I change that color?
Yigit? :)
Hi!
Please use following code
html.html_entry_id_2660 {
background: orange!important;
}
Regards,
Yigit
You’re the man Yigit! Thank you!