Gazette theme posts: header image link broken, image under entry data

  • Unknown's avatar

    I removed the featured images from my posts with the following code

    .single .post-thumbnail img {
        display: none;
    }

    Then removed the gradient of the featured image area with this code

    .entry-header-wrapper {
    	background-image: none;
    }

    I think this resulted in;
    – the “homelink” of the header image is broken (on posts only)
    -It seems like the entry-data space is placed “over” the header image. It looks like the featured area is just removed, and should have been replaced with a blank space of some sort….

    I’m not sure if my problems have anything to do with these particular codes (I messed up a bit (much)…. see another thread ) but it seemed logical to me….

    My questions;
    -Is there any way I can add the “home” link to my Header image again?
    -How do I position the entry-data neatly just above the post again?

    Thanks in advance for support!
    Best Antonia

    Gazette Theme/www.antonia.com

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    The entry title div is overlaying the site title image, which is blocking it from being clickable. The following would be my suggestion on fixing this on single post pages. Add the following to the very bottom of your custom CSS.

    .single .entry-header-wrapper {
        background-image: none;
        padding-top: 0;
        position: relative;
    }
    .single .header-image {
        margin-bottom: 20px;
    }
  • Unknown's avatar

    ahh that’s a relief!
    Thanks very much!

  • Unknown's avatar
  • The topic ‘Gazette theme posts: header image link broken, image under entry data’ is closed to new replies.