Tagged: landing page
I need to create some landing pages on my website for an Adwords campaign, but I am unsure how to create a page which does not have the navigation bar at the top. I have used the Enfold theme for my website.
Many thanks
Ivana
Hi Ivana!
Are you talking about the main menu? You can use this on Enfold > Styling > Quick CSS:
.main_menu {
display: none;
}
This will hide the main menu.
Best regards,
Ismael
Thank you Ismael. I really appreciate it.
Hi Ismael,
Thanks for the quick tip. But won’t that make Menu bar hidden for all pages, infact whole site by default.
Is there any way to hide Main Menu bar and / or footer to specific pages, just like for Landing pages only.
Thanks
Hi!
You can right click on Chrome or Firefox to inspect elements to find page ID’s http://i.imgur.com/HyPTCRg.jpg
and change the code to following one to apply only on that certain page
.page-id-734 .main_menu {
display: none;
}
Cheers!
Yigit
Hello Yigit,
Thanks for the elaborated tip. Great one.
And what CODE would work to hide footer also.
Thanks
Hi!
Please edit your page and choose not to display footer widgets and socket http://i.imgur.com/1t4bIHK.jpg
Regards,
Yigit
Hi Yigit,
Is that so easy. The team has made very convenient options.
Thanks again for this great tip and info.
Thanks