1. PROMO Upgrade to Pro Membership @ $99 / Lifetime & access all our 16+ premium Divi extensions: Divi Block, Carousel Toolkit, etc.LEARN MORE
Dismiss Notice
NEW Divi.Help Pro Carousel AI Toolkit - Magically turn your Divi design into carousel, simply by using our online toolkit. No plugins needed. Now it works with Divi 5 as well!Try our carousel AI toolkit
BEST Divi Block - A revolutionary drag & drop tool to easily mix & match 960+ premade blocks (Light & Dark) to kick start your Divi site design. Special module designs are included as well. Also newly added AI generator & color. Now it works with Divi 5 as well!
Learn More About Divi BlockFree Version ~ 340+ Free Blocks

no hamburger in footer Mobilemenu

Discussion in 'Free Divi Community Forum' started by Alex Fischer, Aug 10, 2020.

  1. Alex Fischer

    Alex Fischer New Member

    Hey guys, here's my problem:
    I used DIVI with a custom footer. Here I used the function Insert Menu to display different menus in Footer. With the desktop version everything looks good. If I look at the page with my mobile phone, then the hamburger appears in the footer at the menu position. I would like to stop that and see the listing of the menu items here immediately.


    Of course the hamburg menu should still appear in the header.
    Thanks


    Is there a possibility?
     

    Attached Files:

    1. PRO MEMBER PERKS Divi Block Pro - 30+ premade custom header designs for you to choose from:View Demo
  2. Problemizer.com

    Problemizer.com Divi Expert

    First add some ID to the menu module
    upload_2020-8-11_16-55-39.png
    Then add this custom CSS

    @media(max-width: 980px) {
    div#awesome-footer-menu .mobile_menu_bar {
    display: none;
    }
    /*whatever the ID of the ul menu is*/
    #mobile_menu2 {
    display: block;
    border: none;
    }
    }

    Let me know if that worked.