Viewing 3 replies - 1 through 3 (of 3 total)
  • Strange page to want to hide your navigation, but I guess you know why ??

    To hide elements, the usual css way is:

    .selector {
    display: none;
    }

    .navbar .nav is the selector you’re looking for.

    .home refers to the Home Page
    .page-id-nn refers to a specific page, found by Inspecting the source and looking at the body tag.

    So try:

    .home .navbar .nav {
    display: none;
    }

    .home .navbar.notresp .nav {
    display: none;
    }

    is even better!

    Thread Starter afjsystem

    (@afjsystem)

    yes dave. the contents of website are for who agreed the disclaimer.

    i’ll try the snippet above and will get back to you for result. First, i imagine using function filter, but css way would be fine.

    for those who not agree, i prefer to show the popup window saying thanks or a lightbox image. This will need the code too (the popup window).

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘hiding menu nav on certain page (front page)’ is closed to new replies.