Black Screen Issue: Please update your theme to ensure WordPress 5.6 compatibility. Dentalia 2.1 and Recycle 2.1 are now available on ThemeForest. 

Okay
  Public Ticket #3635537
Landing Page
Open

Comments

  • wew4481 started the conversation

    Is it possible to create a landing page without the navigation menu? We only want the logo in the navigation section and no menu options. 

    The page would appear much like your Contact Us page, but we would remove the menu options and only show a logo.

  •  532
    OrionThemes replied

    Hi,

    There is no such option built into the theme, but It is possible to do it with some custom CSS.

    Just paste the following snippet to Theme Options -> Custom CSS:

    The following will change visibility of the menu items on the page id 150 (replace 150 with correct page id):

    .page-id-150 .site-header .site-navigation {
    visibility: hidden;
    }


    You will probably want to also remove the sticky menu from that page, so it doesn't appear when user scrolls down. To achieve that, also add:

    .page-id-150 .stickymenu {
        display: none;
    }


    Kind regards,
    Andrej