Title: Remove Headers
Last modified: August 21, 2016

---

# Remove Headers

 *  [cobbyrowan](https://wordpress.org/support/users/cobbyrowan/)
 * (@cobbyrowan)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/remove-headers-1/)
 * Hello,
 * I was wondering if anyone could advise me how to remove these headers:
 * [http://cobbyrowan.com/wp-content/uploads/2013/11/help.jpg](http://cobbyrowan.com/wp-content/uploads/2013/11/help.jpg)
 * I find them a bit distracting and would prefer to just have my content if possible.
   Thanks in advance for the help.
 * – Cobby Rowan

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

 *  [tomaja](https://wordpress.org/support/users/tomaja/)
 * (@tomaja)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/remove-headers-1/#post-4353569)
 * Hi cobby,
    place this function in functions.php of your Customizr child theme:
 *     ```
       add_action ('__before_body' , 'remove_post_header');
   
       function remove_post_header() {
               remove_action  ( '__before_content' , array( TC_post::$instance , 'tc_post_header' ));
       }
       ```
   
 *  Thread Starter [cobbyrowan](https://wordpress.org/support/users/cobbyrowan/)
 * (@cobbyrowan)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/remove-headers-1/#post-4353572)
 * Thank you for your quick response. I guess I don’t quite understand how you set
   up a child theme so I’ll be unable to change it until I get that figured out.
   I tried to follow [http://codex.wordpress.org/Child_Themes](http://codex.wordpress.org/Child_Themes)
   but I’m trying to understand if this is done in the WordPress editor or on your
   host (I have GoDaddy)…if in WordPress how do you edit this without deactivating
   your theme? And if on the host how do you create the css file?
 *  [tomaja](https://wordpress.org/support/users/tomaja/)
 * (@tomaja)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/remove-headers-1/#post-4353573)
 * [@cobbyrowan](https://wordpress.org/support/users/cobbyrowan/)
 * here is how can you do it with css only, just copy the code bellow to custom 
   css field at your [http://cobbyrowan.com/wp-admin/customize.php](http://cobbyrowan.com/wp-admin/customize.php),
   tab “Custom CSS”
 *     ```
       header h1.entry-title {
       display: none;
       }
       ```
   
 *     ```
       header h2.entry-title {
       display: none;
       }
       ```
   
 *  Thread Starter [cobbyrowan](https://wordpress.org/support/users/cobbyrowan/)
 * (@cobbyrowan)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/remove-headers-1/#post-4353575)
 * Thank you!

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

The topic ‘Remove Headers’ is closed to new replies.

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

 * 4 replies
 * 2 participants
 * Last reply from: [cobbyrowan](https://wordpress.org/support/users/cobbyrowan/)
 * Last activity: [12 years, 5 months ago](https://wordpress.org/support/topic/remove-headers-1/#post-4353575)
 * Status: not resolved