Title: Nu Studio's Replies | WordPress.org

---

# Nu Studio

  [  ](https://wordpress.org/support/users/nu-studio/)

 *   [Profile](https://wordpress.org/support/users/nu-studio/)
 *   [Topics Started](https://wordpress.org/support/users/nu-studio/topics/)
 *   [Replies Created](https://wordpress.org/support/users/nu-studio/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/nu-studio/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/nu-studio/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/nu-studio/engagements/)
 *   [Favorites](https://wordpress.org/support/users/nu-studio/favorites/)

 Search replies:

## Forum Replies Created

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

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [A way to remove the mobile menu from twenty twelve theme](https://wordpress.org/support/topic/a-way-to-remove-the-mobile-menu-from-twenty-twelve-theme/)
 *  Thread Starter [Nu Studio](https://wordpress.org/support/users/nu-studio/)
 * (@nu-studio)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/a-way-to-remove-the-mobile-menu-from-twenty-twelve-theme/#post-3662535)
 * See an example of how this works here – [http://detoxmatters.com/](http://detoxmatters.com/)
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [A way to remove the mobile menu from twenty twelve theme](https://wordpress.org/support/topic/a-way-to-remove-the-mobile-menu-from-twenty-twelve-theme/)
 *  Thread Starter [Nu Studio](https://wordpress.org/support/users/nu-studio/)
 * (@nu-studio)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/a-way-to-remove-the-mobile-menu-from-twenty-twelve-theme/#post-3662533)
 * Apologies, I did try to correct this yesterday, but this forum would not let 
   me edit or repost to the thread for some reason.
 * Anyway, just add this code to the bottom of the style.css. The code above is 
   the whole CSS file.
    ** _[Moderator note – it is NOT recommended to modify any
   theme files, especially in a default theme ]_
 *     ```
       /* remove mobile menu */
       	.main-navigation ul.nav-menu,
       	.main-navigation div.nav-menu > ul {
       		border-bottom: 1px solid #ededed;
       		border-top: 1px solid #ededed;
       		display: inline-block !important;
       		text-align: left;
       		width: 100%;
       	}
       	.main-navigation ul {
       		margin: 0;
       		text-indent: 0;
       	}
       	.main-navigation li a,
       	.main-navigation li {
       		display: inline-block;
       		text-decoration: none;
       	}
       	.main-navigation li a {
       		border-bottom: 0;
       		color: #6a6a6a;
       		line-height: 3.692307692;
       		text-transform: uppercase;
       	}
       	.main-navigation li a:hover {
       		color: #000;
       	}
       	.main-navigation li {
       		margin: 0 40px 0 0;
       		margin: 0 2.857142857rem 0 0;
       		position: relative;
       	}
       	.main-navigation li ul {
       		display: none;
       		margin: 0;
       		padding: 0;
       		position: absolute;
       		top: 100%;
       		z-index: 1;
       	}
       	.main-navigation li ul ul {
       		top: 0;
       		left: 100%;
       	}
       	.main-navigation ul li:hover > ul {
       		border-left: 0;
       		display: block;
       	}
       	.main-navigation li ul li a {
       		background: #efefef;
       		border-bottom: 1px solid #ededed;
       		display: block;
       		font-size: 11px;
       		font-size: 0.785714286rem;
       		line-height: 2.181818182;
       		padding: 8px 10px;
       		padding: 0.571428571rem 0.714285714rem;
       		width: 180px;
       		width: 12.85714286rem;
       	}
       	.main-navigation li ul li a:hover {
       		background: #e3e3e3;
       		color: #444;
       	}
       	.main-navigation .current-menu-item > a,
       	.main-navigation .current-menu-ancestor > a,
       	.main-navigation .current_page_item > a,
       	.main-navigation .current_page_ancestor > a {
       		color: #636363;
       		font-weight: bold;
       	}
       	.menu-toggle {
       		display: none;
       	}
       ```
   

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