Skip to main content
All CollectionsTroubleshooting and FAQsFrequently Asked QuestionsResponsivness
How to Display the Desktop Menu on Mobile Devices With the Menu Module
How to Display the Desktop Menu on Mobile Devices With the Menu Module

Learn how to show the desktop menu on mobile devices when using the Menu Module in Divi for user-friendly navigation across all platforms.

Updated over a week ago

Ensuring a consistent navigation experience across all devices can enhance user satisfaction and usability on your website.

Displaying the desktop menu on mobile devices allows for a seamless transition between different screen sizes, maintaining the familiar navigation structure your users are accustomed to.

This article will guide you through the steps to display the desktop menu on mobile devices using Divi, ensuring a cohesive and user-friendly experience across all platforms.

  1. Open the Menu module settings by clicking on the Gear icon

  2. Go to Advanced Tab β†’ Custom CSS β†’ Free Form CSS and add this CSS code:

    @media (max-width: 980px) {
    selector .et_pb_menu__menu {
    display: flex;
    }

    selector .et_mobile_nav_menu {
    display: none;
    }
    }

The result can be seen in the screenshot below:

Divi - Show the dekstop menu on mobile devices
Did this answer your question?