Comments wew4481 started the conversationApril 25, 2024 at 3:55pmIs 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. 564OrionThemes repliedApril 25, 2024 at 4:24pmHi, 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,AndrejOrionThemes1 Like Sign in to reply ...
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.
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):
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:
Kind regards,
Andrej
OrionThemes