Title: Removing panel headings/titles?
Last modified: April 25, 2017

---

# Removing panel headings/titles?

 *  Resolved [poormanwp](https://wordpress.org/support/users/poormanwp/)
 * (@poormanwp)
 * [9 years ago](https://wordpress.org/support/topic/removing-panel-headingstitles/)
 * Hello!
 * I tried going through all the support questions, but I may have missed it.
 * How do I remove the headings/title of a page from showing up on the panel (just
   like in the demo of this theme on the “Find Us” page?
 * Thanks in advance

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

 *  [TUT Support](https://wordpress.org/support/users/phpexpert21/)
 * (@phpexpert21)
 * [9 years ago](https://wordpress.org/support/topic/removing-panel-headingstitles/#post-9065367)
 * Hello poormanwp,
 * Please provide us the “Find Us” page link so we can provide you the custom css
   as per the need.
 * Regards,
 * Manoj
 *  Thread Starter [poormanwp](https://wordpress.org/support/users/poormanwp/)
 * (@poormanwp)
 * [9 years ago](https://wordpress.org/support/topic/removing-panel-headingstitles/#post-9066423)
 * Hello,
 * On the demo you can see the Find Us page has no header on the panel. I would 
   like to be able to do the same for certain of my panels.
 * [https://piquedemo.wordpress.com/](https://piquedemo.wordpress.com/)
 *  [dcoleonline](https://wordpress.org/support/users/dcoleonline/)
 * (@dcoleonline)
 * [9 years ago](https://wordpress.org/support/topic/removing-panel-headingstitles/#post-9066692)
 * Hi poormanwp,
 * You can do it using CSS. When open the editor of your page, look closely at the
   URL to find a number.
 * For instance:
 * `example.com/wp-admin/post.php?post=128&action=edit`
 * Here, the 128 is the post’s ID. So you can combine that with CSS to hide the 
   title of the page.
 * If you wanted to hide a post with the ID of 128, you would add this to the **
   Customize > Additional CSS** area of your site:
 *     ```
       .post-128 .entry-header {
       	display: none;
       }
       ```
   
 * Just change the 128 there to the number that matches your post’s ID. (It’s okay
   if it uses more/fewer than three digits.)
 * That code will hide the page title on your home page and also on the direct URL
   for the page. If you want to limit the scope of this code so that it only hides
   the title on the home page, just use this:
 *     ```
       .home .post-128 .entry-header {
       	display: none;
       }
       ```
   
 * Let me know if this helps.
 *  Thread Starter [poormanwp](https://wordpress.org/support/users/poormanwp/)
 * (@poormanwp)
 * [9 years ago](https://wordpress.org/support/topic/removing-panel-headingstitles/#post-9066838)
 * Hi David, the second code is what I needed! Thanks so much.
 * I had another question, what if I wanted to hide the panel from being listed 
   in the dynamic menu that is at the top of the screen?
 * What i would like to do is use a panel with an image to break up text panels,
   but not make them show up in the menu because they would be only images.
 * Is this possible?
 *  Thread Starter [poormanwp](https://wordpress.org/support/users/poormanwp/)
 * (@poormanwp)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/removing-panel-headingstitles/#post-9165752)
 * solved
 *  [dcoleonline](https://wordpress.org/support/users/dcoleonline/)
 * (@dcoleonline)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/removing-panel-headingstitles/#post-9167689)
 * Hi [@poormanwp](https://wordpress.org/support/users/poormanwp/),
 * Sorry I somehow missed your previous reply. Did you end up disabling the dynamic
   menu and creating custom links to the sections you wanted in the menu?
 *  Thread Starter [poormanwp](https://wordpress.org/support/users/poormanwp/)
 * (@poormanwp)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/removing-panel-headingstitles/#post-9167813)
 * No problem!
 * I actually got help from another user on here, she wrote a CSS code that hid 
   the pages I didn’t want showing up in the menu.
 * That was the only way of making it easy to work with the dynamic menu.
 *  [dcoleonline](https://wordpress.org/support/users/dcoleonline/)
 * (@dcoleonline)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/removing-panel-headingstitles/#post-9168187)
 * Nice! I see it [here](https://wordpress.org/support/topic/hiding-panels-from-menu-bar-but-keeping-them-visible-on-webpage/#post-9138302).
   Glad you were able to get that sorted!

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

The topic ‘Removing panel headings/titles?’ is closed to new replies.

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

## Tags

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

 * 8 replies
 * 3 participants
 * Last reply from: [dcoleonline](https://wordpress.org/support/users/dcoleonline/)
 * Last activity: [8 years, 11 months ago](https://wordpress.org/support/topic/removing-panel-headingstitles/#post-9168187)
 * Status: resolved