Hiding the menu for a sing page

Discussion in 'ColorWay WordPress Theme' started by awayla, Jan 30, 2014.

  1. awayla

    awayla New Member

    Joined:
    Jan 14, 2013
    Messages:
    2
    Likes Received:
    0
    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?
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Do let us know your website link.


    Thanks & Regards
    Gourav Shrivastava
     
  3. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    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
    [​IMG]

    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.
     
  4. awayla

    awayla New Member

    Joined:
    Jan 14, 2013
    Messages:
    2
    Likes Received:
    0
    Hi,

    This worked perfectly. Thanks very much for you help and the speedy reply!
     

Share This Page