• Hi,

    How can I remove the menu/navigation bar from one page only?

    I’m not very good at coding, so I can pretty much write the creating a custom page idea off.

    I was thinking of just editing the ‘Wide page template’ is I rarely use that.

    Is there any other way?

    Regards

Viewing 1 replies (of 1 total)
  • To remove menu/navigation bar from one page only, find the page id for the specific page. It is located in the body tag and it looks something like <body class="single single-post postid-140 single-format-standard logged-…n admin-bar tempera-image-one caption-dark customize-support>

    In this example the post id is postid-140. Then add the following code to your child style.css:

    .postid-140 .main-nav .highwind-navigation {
          display: none; // replace postid-140 with your page post id.
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Remove the menu from ONE page only?’ is closed to new replies.