• My navigation menu will only consist of two or three links.

    Is it possible to disable the display of the mobile menu so that the same menu displays regardless of viewing device?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter bpg135

    (@bpg135)

    after viewing a related earlier support thread I addressed my problem by adjusting the trigger point of the mobile menu display in Theme Option > Advanced Settings

    @media (max-width: 979px) {
    #nav-main ul.sf-menu {display: block;}
    #mobile-nav-trigger {display: none;}
    #nav-second ul.sf-menu {display: block;}
    }
    @media (max-width: 15px) {
    #nav-main ul.sf-menu {display: none;}
    #mobile-nav-trigger {display: block;}
    #nav-second ul.sf-menu {display: none;}
    }

    Glad you worked it out, although I don’t know that you need the second section of css.

    Kadence Themes

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘turn off display of mobile menus’ is closed to new replies.