Title: Remove Toggle Menu Option
Last modified: August 22, 2016

---

# Remove Toggle Menu Option

 *  Resolved [luckydays](https://wordpress.org/support/users/luckydays/)
 * (@luckydays)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/remove-toggle-menu-option/)
 * Hi Ben,
 * Thanks for you work!
 * Tell me please how could I remove the toggle menu option completely?
    Now it 
   appears at [@media](https://wordpress.org/support/users/media/) all and (min-
   width: 50em). I want to set the menu items’ display on my own, I don’t need this
   left-side bar.
 * Thanks in advance.
 * With the best wishes,
    Paul

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

 *  Theme Author [Ben Sibley](https://wordpress.org/support/users/bensibley/)
 * (@bensibley)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/remove-toggle-menu-option/#post-5221310)
 * Paul,
 * Thanks for using Ignite!
 * Removing the responsive menu will take quite a bit of CSS to accomplish. The 
   easiest way would be to take all the CSS for the menu that is currently inside
   the `@media all and (min-width: 50em)` media query and add it to a child theme
   outside of a media query, so it takes effect at all screen widths. There will
   be some additional styling needed, but that will get you most of the way there.
 * Here is [an empty child theme](http://www.competethemes.com/wordpress/wp-content/uploads/2014/06/ignite-child.zip)
   you can use for your customizations.
 *  Thread Starter [luckydays](https://wordpress.org/support/users/luckydays/)
 * (@luckydays)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/remove-toggle-menu-option/#post-5221314)
 * Hi Ben,
 * Thanks for your fast reply on Sunday.
 * Actually I’m already using a child theme with the Ignite.
 * Could you clarify please:
    -> so I need to remove all the code from the style.
   min.css file which has the menu parameters out of the _[@media](https://wordpress.org/support/users/media/)
   all and (min-width: 50em)_ (like this part): `.site-header{height:auto;min-height:
   130px;padding:0 11.11%}.site-header:after{content:".";display:block;clear:both;
   visibility:hidden;line-height:0;height:0}.toggle-navigation{display:none} ...`
 * and that toggle button with its functions will dissapear?
 * Also I’ve already tried to use another menu plugin and for now the Ignite toggle
   just overridden it.
    So, shall I be able to use the other menu after such a removal
   of the code?
 * Thanks for your time.
 *  Theme Author [Ben Sibley](https://wordpress.org/support/users/bensibley/)
 * (@bensibley)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/remove-toggle-menu-option/#post-5221374)
 * Sure, so if you wanted the menu to be styled exactly the same at all widths, 
   you’d want the menu styles that only affect the menu at 800px wide and above 
   to affect all widths. The easiest way would be to copy those styles and add them
   to your child theme outside of a media query, so they take affect right away.
 * The relevant styles are in style.css from lines 564-729.
 * There are going to be a few conflicts between the styles, but you should be able
   to override anything you want. When you have a child theme active, an id called`
   tracks-child` is added to `body` so you can use that to help override other selectors.
 * Ex.
 *     ```
       #tracks-child ul a {
         margin: 24px;
       }
       ```
   
 * You can also always use !important tags if necessary.
 * Ex.
 *     ```
       #tracks-child ul a {
         margin: 24px !important;
       }
       ```
   
 *  Thread Starter [luckydays](https://wordpress.org/support/users/luckydays/)
 * (@luckydays)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/remove-toggle-menu-option/#post-5221392)
 * Thanks Ben,
 * In this case I’ve found the solution in editing _.menu-primary_ class at _max-
   width:800px;_
 *     ```
       .menu-primary {
         left: 0;
         padding-top: 0;
         position: static;
         text-align: center;
         width: 100%;
         z-index: 30;
         background: transparent;
         margin-left: 75%;
       }
       ```
   
 * Thanks for your assistant.
 *  Theme Author [Ben Sibley](https://wordpress.org/support/users/bensibley/)
 * (@bensibley)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/remove-toggle-menu-option/#post-5221423)
 * You’re welcome, glad you reached a solution 🙂

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

The topic ‘Remove Toggle Menu Option’ is closed to new replies.

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

## Tags

 * [menu](https://wordpress.org/support/topic-tag/menu/)
 * [toggle](https://wordpress.org/support/topic-tag/toggle/)

 * 5 replies
 * 2 participants
 * Last reply from: [Ben Sibley](https://wordpress.org/support/users/bensibley/)
 * Last activity: [11 years, 8 months ago](https://wordpress.org/support/topic/remove-toggle-menu-option/#post-5221423)
 * Status: resolved