• Any help appreciated!

    My blog/website is chirpyroost.com. The one thing I’d like to change is how big the ‘featured image’ in the posts are. I have to set a featured image in order for it to show as a thumbnail view on my front page.

    But when you click through to the post, the picture is so big at the top that it takes up more than the entire screen! See example, http://chirpyroost.com/2014/04/05/goat-cheese-stuffed-peppers

    Please tell me how to fix it if you can. I have spent hours trying to figure it out.

Viewing 3 replies - 1 through 3 (of 3 total)
  • You would probably get a better solution from the theme’s support forum. However, a quick fix for you is to update style.css. Search for .featured-image-single and add the max-width property like this

    .featured-image-single {
        float: left;
        margin: 1.5rem 2rem 1.5rem 0;
        max-width: 100%;
    }

    One thing I can see if that you are using the same featured image as the first image in your post. Do you really want two same images one after the other?

    I haven’t looked in depth, but from the code it appears that there is a feature to hide the featured image when viewing the post alone. You can enable that and prevent duplicate images from appearing.

    Thread Starter kkellum

    (@kkellum)

    Thank you!That worked! Where would I find the feature to hide the featured images?

    I have responded to your question on the theme support page. It is a feature in the Customize section.

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

The topic ‘Featured Image in Pure & Simple Theme’ is closed to new replies.