Title: Remove responsive menu
Last modified: August 21, 2016

---

# Remove responsive menu

 *  Resolved [tizz](https://wordpress.org/support/users/tizz/)
 * (@tizz)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/remove-responsive-menu/)
 * Please, theme author or someone else can tell me how to disable the responsive
   menu?

Viewing 11 replies - 1 through 11 (of 11 total)

 *  Thread Starter [tizz](https://wordpress.org/support/users/tizz/)
 * (@tizz)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/remove-responsive-menu/#post-3680521)
 * Nobody? I need it, because I’ve added search box in menu and in responsive way
   it’s a problem. I have few items and it would looks good anyway – or better –
   but mostly search box it would be usable
 *  [Andrew Nevins](https://wordpress.org/support/users/anevins/)
 * (@anevins)
 * WCLDN 2018 Contributor | Volunteer support
 * [13 years, 4 months ago](https://wordpress.org/support/topic/remove-responsive-menu/#post-3680522)
 * Hi Tizz, do you have a section in the dashboard named, “Custom CSS” or “Edit 
   CSS”?
 *  Thread Starter [tizz](https://wordpress.org/support/users/tizz/)
 * (@tizz)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/remove-responsive-menu/#post-3680523)
 * Sure.
    I mean, I use Leaf options for custom CSS But this can’t be done via CSS
 *  [Andrew Nevins](https://wordpress.org/support/users/anevins/)
 * (@anevins)
 * WCLDN 2018 Contributor | Volunteer support
 * [13 years, 4 months ago](https://wordpress.org/support/topic/remove-responsive-menu/#post-3680524)
 * In that section, can you add this code:
 *     ```
       .main-navigation ul {
        display: block !important;
       }
   
       #mm0 {
        display: none;
       }
       ```
   
 *  Thread Starter [tizz](https://wordpress.org/support/users/tizz/)
 * (@tizz)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/remove-responsive-menu/#post-3680525)
 * Thank you, but I had already tried that way and there are two problems:
    On mobile
   both menu are visible, main-navigation is good, but above it there’s also responsive
   menu as usual. On desktop submenu doesn’t work with that rule. But maybe I can
   resolve using media queries.
 *  [Andrew Nevins](https://wordpress.org/support/users/anevins/)
 * (@anevins)
 * WCLDN 2018 Contributor | Volunteer support
 * [13 years, 4 months ago](https://wordpress.org/support/topic/remove-responsive-menu/#post-3680526)
 * Oops I’m sorry, I meant to recommend this;
 *     ```
       @media all and (max-width: 480px) {
   
        .main-navigation ul {
         display: block !important;
        }
   
        #mm0 {
         display: none;
        }
   
       }
       ```
   
 * You’re absolutely right with media queries.
 *  Thread Starter [tizz](https://wordpress.org/support/users/tizz/)
 * (@tizz)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/remove-responsive-menu/#post-3680527)
 * Problem solved for the desktop, thanks!
    But first problem remains, also responsive
   is visible… I’m missing something, I remember that once time ago I was able to
   make it disappear with display: none;
 *  [Andrew Nevins](https://wordpress.org/support/users/anevins/)
 * (@anevins)
 * WCLDN 2018 Contributor | Volunteer support
 * [13 years, 4 months ago](https://wordpress.org/support/topic/remove-responsive-menu/#post-3680528)
 * You may need to add `!important` on the end of your `#mm0` style too.
    E.g,
 *     ```
       #mm0 {
         display: none !important;
        }
       ```
   
 *  Thread Starter [tizz](https://wordpress.org/support/users/tizz/)
 * (@tizz)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/remove-responsive-menu/#post-3680529)
 * Yeah, you’re right, that’s the thing!
    Thank you very much!
 * Optimized in that way:
 * [@media](https://wordpress.org/support/users/media/) all and (max-width: 800px){
   .
   main-navigation ul { display: block !important; } #mm0, .sf-sub-indicator, .sub-
   menu { display: none !important; } }
 *  [w.232101](https://wordpress.org/support/users/w232101/)
 * (@w232101)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/remove-responsive-menu/#post-3680612)
 * responsive menu thems 1.6 doesn’t show send me step by stem rull for ading in
   wordpress
 * _[ email deleted, support is not offered that way ]_
 *  Moderator [Jan Dembowski](https://wordpress.org/support/users/jdembowski/)
 * (@jdembowski)
 * Forum Moderator and Brute Squad
 * [12 years, 6 months ago](https://wordpress.org/support/topic/remove-responsive-menu/#post-3680613)
 * **[@w](https://wordpress.org/support/users/w/).232101** Per the [forum welcome](http://codex.wordpress.org/Forum_Welcome#Where_To_Post)
   please post your own topic.
 * [http://wordpress.org/support/theme/leaf#postform](http://wordpress.org/support/theme/leaf#postform)
 * Please do not post your email address in these forums.

Viewing 11 replies - 1 through 11 (of 11 total)

The topic ‘Remove responsive menu’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/leaf/1.1.2/screenshot.png)
 * Leaf
 * [Support Threads](https://wordpress.org/support/theme/leaf/)
 * [Active Topics](https://wordpress.org/support/theme/leaf/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/leaf/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/leaf/reviews/)

 * 11 replies
 * 4 participants
 * Last reply from: [Jan Dembowski](https://wordpress.org/support/users/jdembowski/)
 * Last activity: [12 years, 6 months ago](https://wordpress.org/support/topic/remove-responsive-menu/#post-3680613)
 * Status: resolved