I am wanting to create a page for the purpose of a marketing landing page. As a result I want to hide the menu that I currently have in place. But I only want to hide the menu for that single page (i.e I want it to still appear on the other pages of the site). Is this possible?
Hello, Through page id selector you can apply css style code only for specific pages. Firstly go to the Pages > All Pages in your dashboard and hover the edit option of that page from which you want to remove the menubar and copy its page-id number. See the image for reference Now, add that page id in the css code given below( current page id is 2) after that paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: .page-id-2 .menu-bar { display: none; } This will solve your issue.