• Will Edwards

    (@waedwards)


    I want to remove the top menu for 1 single page.

    I have been trying this code in custom-style.css …

    .page-id-9612 .site-navigation {
    display: none;
    }

    1. Is it possible to do it using this approach?

    2. What is wrong with the code?

    3. Is there any other way?

    Many thanks

    Will ??

Viewing 1 replies (of 1 total)
  • site-navigation is an ID, not a class, so the code should be:

    .page-id-9612 #site-navigation {
        display: none;
    }

    Hope this helps.

Viewing 1 replies (of 1 total)
  • The topic ‘How to Remove Primary Menu from Single Page’ is closed to new replies.