Title: remove entry header
Last modified: May 26, 2017

---

# remove entry header

 *  Resolved [gafm24](https://wordpress.org/support/users/gafm24/)
 * (@gafm24)
 * [9 years ago](https://wordpress.org/support/topic/remove-entry-header/)
 * hey there, it’s me again =)
 * if I’m using a post thumbnail the post itself has a header showing the post thumbnail,
   I already managed to hide the post thumbnail in the header(thanks again, s. other
   thread), but I’d like the post to look like as if there there weren’t post thumbnail,
   so to remove the entire header, is that possible?
 * here’s the post with post thumbnail: [http://green.pc-web.eu/gugel/](http://green.pc-web.eu/gugel/)
   
   and I want the post itself look like a post without thumbnail: [http://green.pc-web.eu/gummiringe/](http://green.pc-web.eu/gummiringe/)
 * any ideas?

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

 *  [dcoleonline](https://wordpress.org/support/users/dcoleonline/)
 * (@dcoleonline)
 * [8 years, 12 months ago](https://wordpress.org/support/topic/remove-entry-header/#post-9180588)
 * Hi there,
 * Were you able to try the second block of code here?
 * [https://wordpress.org/support/topic/post-image-only-on-summary-page/#post-9146833](https://wordpress.org/support/topic/post-image-only-on-summary-page/#post-9146833)
 * It will look slightly different because of where the theme puts the title, but
   it should be close.
 *  Thread Starter [gafm24](https://wordpress.org/support/users/gafm24/)
 * (@gafm24)
 * [8 years, 12 months ago](https://wordpress.org/support/topic/remove-entry-header/#post-9182239)
 * yes, and it worked, thanks again
 * I was hoping that maybe there’s a trick to tell the theme to make the post look
   as if there wasn’t a post thumbnail although there is one ^^
 *  [dcoleonline](https://wordpress.org/support/users/dcoleonline/)
 * (@dcoleonline)
 * [8 years, 12 months ago](https://wordpress.org/support/topic/remove-entry-header/#post-9188302)
 * Here’s some CSS that will make the two kinds of posts match a bit more closely:
 *     ```
       .entry-hero .post-thumbnail {
           display: none;
       }
       .entry-header-wrapper {
           background-image: none;
       }
       .entry-hero .entry-title {
           color: #000000;
           text-shadow: none;
       }
       .entry-hero .entry-meta a {
           color: #777;
           text-shadow: none;
       }
       .entry-hero + div .site-main {
           padding-top: 30px;
       }
       .entry-hero .entry-header-inner {
           padding-left: 8%;
       }
       @media screen and (min-width: 960px) {
           .entry-header-wrapper {
               padding: 0;
               position: relative;
               margin: 60px auto 0 auto;
           }
       }
       ```
   
 * Use it **instead** of the [code from the other thread](https://wordpress.org/support/topic/post-image-only-on-summary-page/#post-9146833).
 *  Thread Starter [gafm24](https://wordpress.org/support/users/gafm24/)
 * (@gafm24)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/remove-entry-header/#post-9200529)
 * it works perfectly
    thank you so much =D

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

The topic ‘remove entry header’ is closed to new replies.

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

## Tags

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

 * 4 replies
 * 2 participants
 * Last reply from: [gafm24](https://wordpress.org/support/users/gafm24/)
 * Last activity: [8 years, 11 months ago](https://wordpress.org/support/topic/remove-entry-header/#post-9200529)
 * Status: resolved