Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #945203

    I have removed the main menu on my site (don’t ask, client is weird).
    I have a menu that only appears on a mobile phone but I would like it to be a burger style menu. Is that possible? I tried the Fullwidth submenu and a widget menu search but can’t find anything that would work.

    #945718

    Hey gciad,

    Thank you for using Enfold.

    How did you implement the new menu? You can toggle the display property of the main menu with css media queries. Example.

    @media only screen and (min-width: 990px) {
      /* Add your Desktop Styles here */
      .avia-menu {
        display: none;
      }
    }
    

    The menu will only display on mobile view.

    Best regards,
    Ismael

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.