Okay
  Public Ticket #1206863
menu
Closed

Comments

  • Marcellous started the conversation

    Is there a way to hide the main menu on the homepage(desktop) but still have it show up as a off canvas menu on mobile/tablets? Currently I'm using menu links as the main menu on the homepage but the regular default menu on the rest of the site I'm not sure how to remove the menu without affecting it throughout the entire site

  •  8,470
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box located in your Salient Options panel (Make Sure there are no red cross in the Box) :

    @media only screen and (min-width: 1001px) {
        .home #header-outer[data-full-width="true"] header#top nav >ul.sf-menu {
            display:none !important;
        }
    }

    Thanks


    ThemeNectar Support Team