• I am having trouble I would appreciate help with – how to disable dropdown menu on mobile? Since I have jumplinks on a single front page, all of that has no use on mobile device. I want to keep only language selection.

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi @eriksd thank you for the question.

    Please try adding this CSS code to Appearance > Customize > Additional CSS from dashboard.

    .sydney-offcanvas-menu .mainnav li:not(.pll-parent-menu-item) {
      display: none !important;
    }

    Regards,
    Kharis

    Thread Starter eriksd

    (@eriksd)

    Thank You! It did disable the mobile dropdown. But the language selections also is not working anymore.

    @eriksd thank you for trying.

    Please try this to replace the previously suggested code:

    
    .sydney-offcanvas-menu .mainnav ul:not(.sub-menu) li:not(.pll-parent-menu-item) {
      display: none !important;
    }

    Let me know how it goes.

    Regards,
    Kharis

    Thread Starter eriksd

    (@eriksd)

    Just tried this, cleared all cache, but still seems not to be working, no effect so far.

    @eriksd please remove the previously suggested code. And try:

    .sydney-offcanvas-menu .mainnav ul.menu > li {
      display: none !important;
    }
    
    .sydney-offcanvas-menu .mainnav ul.menu li.pll-parent-menu-item {
      display: inline !important;
    }

    Regards,
    Kharis

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Disable menu on mobile version’ is closed to new replies.