Trusted WordPress tutorials, when you need them most.
Beginner’s Guide to WordPress
WPB Cup
25 Million+
Websites using our plugins
16+
Years of WordPress experience
3000+
WordPress tutorials
by experts

How to Hide a Mobile Menu in WordPress (Beginner’s Guide)

Editorial Note: We earn a commission from partner links on WPBeginner. Commissions do not affect our editors' opinions or evaluations. Learn more about Editorial Process.

Do you want to hide a mobile menu in WordPress?

Most WordPress themes automatically turn your default navigation menus into mobile-friendly menus. However, you may want to show a different menu to people who visit your site using smartphones or tablets.

In this article, we will show you how to easily hide the default mobile menu in WordPress, so you can show a custom menu instead.

Hiding a WordPress menu on mobile

We will cover two different methods in this tutorial, and you can use the quick links below to jump to the method you want to use:

Method 1: Hide a Mobile Menu in WordPress Using a Plugin

The easiest way to hide the mobile menu provided by your WordPress theme is by using the WP Mobile Menu plugin.

This plugin allows you to create a unique menu and then show it to mobile users. You can also hide the mobile menu that many themes provide by default.

Create Your Mobile Menu

First, you need to create the navigation menu that you want to show on mobile devices. To get started, head over to the Appearance » Menus page in your WordPress dashboard.

Create a new menu to be used on mobile devices

On the next screen, you need to type in a name for the menu. It’s a good idea to use something that will help you identify the menu later, such as ‘Mobile Menu’.

After that, you can select all the posts and pages you want to add to the mobile menu.

Adding menu items

For more detailed instructions, see our guide on how to create a navigation menu in WordPress.

When you are happy with how the menu is set up, don’t forget to click on the ‘Save Menu’ button to store your changes.

Configure the Plugin Settings

With that done, it’s time to install and activate the WP Mobile Menu plugin. For more details, see our step-by-step guide on how to install a WordPress plugin.

Upon activation, head over to Mobile Menu Options to configure the plugin settings.

Creating a mobile friendly navigation menu

Here, you must scroll to the bottom of the page and choose whether to show the mobile menu on the left or right-hand side of the screen using the ‘Enable Left/Right Menu’ toggles.

Next, open the ‘Choose one menu’ dropdown and select the mobile menu you created earlier.

Hiding the mobile menu in WordPress

After that, simply click on ‘Save Changes.’

There are lots of ways to fine-tune how the mobile menu looks. For example, you can select ‘Font Options’ and then change the font size, weight, spacing, and more.

Customizing the fonts in a mobile menu

You can also select ‘Header Style’ and change how the mobile header looks and acts.

For example, you can add a shadow, change the header height, create a sticky navigation menu, and more.

Changing the header in a WordPress mobile menu

Most of these settings are straightforward, so you can look through them and see what different kinds of effects you can create.

When you are happy with how the mobile menu is set up, just click on ‘Save Changes.’

Add Your Mobile Menu to WordPress

Now that you have set up the plugin, the next step is telling WordPress where to show the mobile menu by going to Appearance » Menus.

If it isn’t already selected, then open the ‘Select a menu to edit’ dropdown and choose the mobile menu you created earlier.

Setting a mobile menu in WordPress

Then, under ‘Menu Settings’, you must select either ‘Left Mobile Menu’ or ‘Right Mobile Menu’, depending on where you want to show the menu.

After that, simply click on ‘Save Menu.’

Now, either visit your website on a mobile device or view the mobile version of your WordPress site from desktop. You should see the custom mobile menu.

Mobile menu replaced

Troubleshooting: How to Hide the Default Mobile Menu

By default, the plugin automatically hides menu elements used by most popular WordPress themes. This means your theme’s default mobile menu should be hidden without you needing to do anything.

However, if the default mobile menu is still appearing, then you will need to go to Mobile Menu Options » General Options » Visibility Options in the WordPress dashboard.

Changing the mobile menu visibility settings

Here, click on the ‘Find Element’ button.

This opens a mobile version of your website.

Finding an element on mobile devices

In this popup, click to select the content that you want to hide on mobile devices, such as the menu provided by your WordPress theme.

This adds the content’s CSS class to the ‘Hide Elements’ field.

Hiding elements on a mobile device

With that done, click on ‘Save Changes’. Now, the theme’s menu should no longer appear on mobile devices.

Method 2: Hide Mobile Menu Using CSS Code

This method is a bit advanced and requires you to add custom code to your website.

For this method, you can choose between two different approaches. You can hide the entire default mobile menu using CSS, or you can hide individual menu items on mobile devices.

1. Hiding a complete menu on mobile devices using CSS

One option is to completely remove the default mobile menu from your WordPress theme. This is a good choice if you want to use a different method of navigation on mobile, such as breadcrumb navigation links or interactive images.

First, you need to find the element that you need to modify. To do that, simply go to your WordPress website and hover the mouse over the navigation menu.

After that, right-click and select your browser’s Inspect tool.

Inspect tool

Your browser screen will now split into two, and you will see the page’s code, including the code for the navigation menu.

However, this isn’t the navigation menu we want to change since we can see it on the desktop screen.

Source code while viewing your desktop menu

Thankfully, there’s an easy way to access the mobile menu instead.

Simply drag the corner of the browser to make it smaller until WordPress replaces the desktop navigation menu with the mobile menu.

Mobile menu identifier

Now, you need to figure out the identifier and CSS class used by the mobile navigation menu. Simply move your mouse over the source code until your browser highlights the menu area. This section contains the class and identifier that you need to use.

Once you have this information, you can hide the menu on mobile devices using code.

Often, WordPress guides will ask you to add custom code to your functions.php file. However, this isn’t very user-friendly, and even a small mistake in the code can cause all sorts of common WordPress errors. The custom code may even completely break your website.

Instead, it’s safer to add custom code using WPCode.

This free plugin makes it easy to add custom CSS, PHP, HTML, and more to WordPress without putting your site at risk. You can simply paste the plugin’s code into WPCode’s editor and then activate and deactivate the code with the click of a button.

To start, you will need to install and activate WPCode. For more information, see our step-by-step guide on how to install a WordPress plugin.

After that, go to Code Snippets » Add Snippet in the WordPress dashboard.

Adding custom code to your WordPress website

Here, you will see all the pre-made snippets you can add to your site. This includes a snippet that allows you to completely disable comments, upload file types that WordPress doesn’t usually support, disable attachment pages, and much more.

To add CSS to your site, just hover over ‘Add Your Custom Code’ and then select ‘Use snippet’.

Adding custom CSS to WordPress using WPCode

To start, type in a title for the code snippet. This could be anything that helps you identify the snippet in your WordPress dashboard.

With that done, open the ‘Code Type’ dropdown menu and choose ‘CSS’.

Hiding the mobile menu using WPCode

After that, you can paste or type the following code into the code editor:

.navbar-toggle-wrapper {
display:none;
}

Don’t forget to replace .navbar-toggle-wrapper with the identifier you found using your browser’s Inspect tool.

When you are ready to publish the code snippet, scroll to the top of the screen and click on the ‘Inactive’ toggle so it changes to ‘Active’.

Finally, click on ‘Save Snippet’ to make the snippet live.

How to hide the menu on smartphones and tablets using WPCode

Now, your theme’s mobile menu will be hidden on smartphones and tablets.

2. Hiding specific menu items in mobile menu using CSS

This method allows you to create a navigation menu and then selectively show or hide items that you don’t want to appear on mobile or desktop devices.

In this way, you can use the same navigation menu for mobile and desktop visitors.

First, go to Appearance » Menus and click on the ‘Screen Options’ button at the top right corner of the screen. From here, you need to check the box next to the ‘CSS Classes’ option.

Screen Options

After that, scroll to a menu item that you want to hide on mobile and click to expand it.

In the menu item settings, you will see the option to add a CSS class. Here, simply go ahead and add a .hide-mobile CSS class.

Add CSS class

Repeat the process for all menu items that you want to hide on mobile.

Similarly, you can click on any menu items that you want to hide on desktop computers. However, this time add the .hide-desktop CSS class instead.

When you’ve finished, don’t forget to click on the ‘Save Menu’ button to store your changes.

With that done, you are ready to hide these menu items using custom CSS. Simply create a new custom code snippet by following the same process described above.

Now, you can add the following CSS to the WPCode code editor:

@media (min-width: 980px){

    .hide-desktop{
    display: none !important;
    }

}

    @media (max-width: 980px){
    .hide-mobile{
    display: none !important;
    }

}

After that, simply publish the code snippet.

Now, if you visit your WordPress blog, you will see that the menu items you wanted to hide on desktop are no longer visible.

To test how the menu looks on mobile, simply shrink the browser screen until WordPress switches to the mobile menu.

Different menus on desktop and mobile screens

We hope this article helped you learn how to easily hide a mobile menu in WordPress. You may also want to see our expert picks for the best drag and drop WordPress page builders and our guide on how to choose the best web design software.

If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.

Disclosure: Our content is reader-supported. This means if you click on some of our links, then we may earn a commission. See how WPBeginner is funded, why it matters, and how you can support us. Here's our editorial process.

Editorial Staff

Editorial Staff at WPBeginner is a team of WordPress experts led by Syed Balkhi with over 16 years of experience in WordPress, Web Hosting, eCommerce, SEO, and Marketing. Started in 2009, WPBeginner is now the largest free WordPress resource site in the industry and is often referred to as the Wikipedia for WordPress.

The Ultimate WordPress Toolkit

Get FREE access to our toolkit - a collection of WordPress related products and resources that every professional should have!

Reader Interactions

1 CommentLeave a Reply

  1. Syed Balkhi says

    Hey WPBeginner readers,
    Did you know you can win exciting prizes by commenting on WPBeginner?
    Every month, our top blog commenters will win HUGE rewards, including premium WordPress plugin licenses and cash prizes.
    You can get more details about the contest from here.
    Start sharing your thoughts below to stand a chance to win!

Leave A Reply

Thanks for choosing to leave a comment. Please keep in mind that all comments are moderated according to our comment policy, and your email address will NOT be published. Please Do NOT use keywords in the name field. Let's have a personal and meaningful conversation.