Title: Hide Menu
Last modified: April 22, 2017

---

# Hide Menu

 *  Resolved [claudiagiraldo](https://wordpress.org/support/users/claudiagiraldo/)
 * (@claudiagiraldo)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/hide-menu-3/)
 * Hi Team,
 * I want to know how to hide the main Menu in just some pages. And also I want 
   to have a footer menu in just a specific page.
 * My web page is meditaser.com
 * Thanks in advance,
 * Claudia

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

 *  Thread Starter [claudiagiraldo](https://wordpress.org/support/users/claudiagiraldo/)
 * (@claudiagiraldo)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/hide-menu-3/#post-9055624)
 * And I also want to hide my logo at header from some pages.
 * Thanks!!
 *  [hannah](https://wordpress.org/support/users/hannahritner/)
 * (@hannahritner)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/hide-menu-3/#post-9057056)
 * You can do this with page specific css. So hiding your menu on the blog page 
   would look like this:
 *     ```
       .blog #nav-main {
           display: none;
       }
       ```
   
 * Then to show a footer menu in only one page you would hide with menu with css
   like this:
 *     ```
       .footernav {
           display: none;
       }
       ```
   
 * Then use an important tag to make it show on a specific page like this:
 *     ```
       .blog .footernav {
           display: block !important;
       }
       ```
   
 * All css you can paste into your custom css box in Theme Options > Advanced Settings.
   
   This tutorial explains finding page id’s- [https://www.youtube.com/watch?v=fLg2T1AvmFE](https://www.youtube.com/watch?v=fLg2T1AvmFE)
 * Hope that’s helpful!
 * Hannah
 *  Thread Starter [claudiagiraldo](https://wordpress.org/support/users/claudiagiraldo/)
 * (@claudiagiraldo)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/hide-menu-3/#post-9059741)
 * Thanks Hannah.
 * It works great!

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

The topic ‘Hide Menu’ is closed to new replies.

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

## Tags

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

 * 3 replies
 * 2 participants
 * Last reply from: [claudiagiraldo](https://wordpress.org/support/users/claudiagiraldo/)
 * Last activity: [9 years, 1 month ago](https://wordpress.org/support/topic/hide-menu-3/#post-9059741)
 * Status: resolved