• Hi guys, please can anyone help me with this?
    I’m trying to hide the main-nav on this page as it’s a landing page, but I can’t get any version of this css code to work.

    .page-id-1537 .main-navigation {
    display: none;
    }

    Thanks

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • I don’t see the class main-navigation anywhere on your site’s HTML, so, of course, targetting it will have no effect 😀

    Try:

    .page-id-1537 #navigation {
        display: none !important;
    }
    Thread Starter creativemole

    (@creativemole)

    Outstanding, thank you George. It worked a treat!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Hide main-nav on a single wordpress web page’ is closed to new replies.