• Resolved simmyvos

    (@simmyvos)


    Hi Ben

    Thanks for the great theme!

    I am having some trouble with my featured images, which I’ve been trying to fix for the last two evenings but with no luck.

    When I add a featured image to my post it is not showing on my home page, to make sure that the image does not duplicate on my post i have used the following custom css:

    .entry .featured-image {
    display: none;
    }

    However the image is not showing on my homepage.

    Is there a way to fix this?

    Thank you!

    Simone
    http://www.simplysimone.me

Viewing 8 replies - 16 through 23 (of 23 total)
  • Thread Starter simmyvos

    (@simmyvos)

    Hey Ben!

    Hope you had a good weekend!

    This code worked, thank you so much! 😀 You are a genius/lifesaver/magician/awesomest person ever!

    The only thing I’ve bee trying to figure out now is how to get that the featured image doesn’t cover my post title.

    I have gone through the forum and read every post covering featured images and titles but I can’t see anything that relates to my issue.

    Would you mind helping me fix this please?

    Thanks a million for everything so far!

    Simone

    Theme Author Ben Sibley

    (@bensibley)

    Perfect, let’s figure it out 🙂

    I just took a look at the site, and this CSS should add some space around the Featured Images so they don’t overlap the titles anymore:

    .featured-image {
      margin: 1.5em 0 !important;
    }
    Thread Starter simmyvos

    (@simmyvos)

    Amazing! Thank you so much Ben! I really appreciate all your help!

    Theme Author Ben Sibley

    (@bensibley)

    You’re welcome, glad we finally got the images updated 🙂

    Thread Starter simmyvos

    (@simmyvos)

    Thank you Ben!
    I just checked the site on my phone and I have the same problem with the featured image overlapping the post title.
    Any idea how I can fix that?

    Theme Author Ben Sibley

    (@bensibley)

    It looks like the “/*freeze header*/” part of the CSS is missing the closing curly brace (}) for the media query.

    Add the curly brace after the code for “overflow-container” and the Featured Images will then have the space added on mobile devices too:

    /*freeze header*/
    @media all and (min-width: 800px){
    
    .site-header {
        position: fixed;
        width: 100%;
        z-index: 9;
      }
      .overflow-container {
        padding-top: 72px;
      }
    }
    Thread Starter simmyvos

    (@simmyvos)

    Thank you Ben! It worked like a charm! 🙂

    Theme Author Ben Sibley

    (@bensibley)

    Awesome, glad to hear 🙂

Viewing 8 replies - 16 through 23 (of 23 total)

The topic ‘Featured image issues’ is closed to new replies.