Title: Remove post-header
Last modified: August 22, 2016

---

# Remove post-header

 *  Resolved [NomadMik](https://wordpress.org/support/users/nomadmik/)
 * (@nomadmik)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/remove-post-header/)
 * Hello Anders,
 * Is there a way to eliminate the post header all together so I can raise up the
   post content box to tuck the featured image under the shadow of my page header
   image?
 * [http://www.fantasyislandecoresort.com/blog/about/](http://www.fantasyislandecoresort.com/blog/about/)
 * Thanks,
    Mik

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

 *  Thread Starter [NomadMik](https://wordpress.org/support/users/nomadmik/)
 * (@nomadmik)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/remove-post-header/#post-5198479)
 * To get rid of the .post-header I removed it from the page.php
 * <div class=”post-header”>
 * <h2 class=”post-title”><?php the_title(); ?></h2>
 * </div> <!– /post-header –>
 *  Thread Starter [NomadMik](https://wordpress.org/support/users/nomadmik/)
 * (@nomadmik)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/remove-post-header/#post-5198488)
 * To move the content up I edited the CSS
 *  .wrapper.section { padding: 0% 0; margin-top: -100px; }
 * However I don’t know where to change the z-index to get the header on top of 
   the wrapper content. My header image has a drop shadow that I want to cast on
   top of the featured image in the content.
 *  [CrouchingBruin](https://wordpress.org/support/users/crouchingbruin/)
 * (@crouchingbruin)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/remove-post-header/#post-5198529)
 * Just as a note of warning, you shouldn’t be editing the theme files directly.
   If the theme gets updated because of feature enhancements, bug fixes, or security
   patches, then your changes will be lost. Instead, either create a [child theme](http://codex.wordpress.org/Child_Themes)
   or use a CSS plugin like Jetpack or [Custom CSS Manager](http://wordpress.org/plugins/custom-css-manager-plugin/)
   for any CSS changes, i.e., you could have hidden the post title using CSS.
 * As far as your last question goes, you can just add this CSS rule:
 *     ```
       .header {
          z-index: 10;
       }
       ```
   
 * This should move the header over the main content area.
 *  [grosbouff](https://wordpress.org/support/users/grosbouff/)
 * (@grosbouff)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/remove-post-header/#post-5198636)
 * I agree with CrouchingBruin.
    Create a child theme to add css rules (or with 
   a plugin, like Jetpack Custom CSS, for example) ! You don’t even need to remove
   that block, you can just do .post-header( display:none )
 *  Thread Starter [NomadMik](https://wordpress.org/support/users/nomadmik/)
 * (@nomadmik)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/remove-post-header/#post-5198667)
 * Shoot, I should have done that. I will try to repair it and use Jetpack.
 * Does anyone know if Macs read CSS differently? I had moved the post up to tuck
   under the header but on a Mac it is still in the same place.
 *  .wrapper.section { padding: 0% 0; margin-top: -100px; }
 * Thanks again 🙂
 *  [grosbouff](https://wordpress.org/support/users/grosbouff/)
 * (@grosbouff)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/remove-post-header/#post-5198721)
 * > Does anyone know if Macs read CSS differently?
 * Nope. Maybe the somme CSS rules are involved in your element’s positionning.

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

The topic ‘Remove post-header’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/baskerville/2.3.1/screenshot.jpg)
 * Baskerville
 * [Support Threads](https://wordpress.org/support/theme/baskerville/)
 * [Active Topics](https://wordpress.org/support/theme/baskerville/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/baskerville/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/baskerville/reviews/)

## Tags

 * [post header](https://wordpress.org/support/topic-tag/post-header/)
 * [post-content](https://wordpress.org/support/topic-tag/post-content/)
 * [remove](https://wordpress.org/support/topic-tag/remove/)

 * 6 replies
 * 3 participants
 * Last reply from: [grosbouff](https://wordpress.org/support/users/grosbouff/)
 * Last activity: [11 years, 9 months ago](https://wordpress.org/support/topic/remove-post-header/#post-5198721)
 * Status: resolved