• Resolved splinter1

    (@splinter1)


    When including a featured image, the blog page with all the posts shows huge thumbnails in spite of the fact that I always make sure post thumbnails are no larger than 350×200 anyway.
    I also want to get rid of ‘continue reading’ and just show a thumbnail.
    Does anyone have a few hints please?

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi @splinter1, I hope you are doing great,

    Unfortunately, I could see that theme does not limit the thumbnail size for some reason, our developers will review the GitHub issue you opened.

    In the meantime, here is a workaround that limits the thumbnail size, feel free to adjust the values as necessary:

    
    img.attachment-primer-featured.size-primer-featured.wp-post-image {
        max-width: 350px;
    }
    

    To hide the ‘continue reading’ button you may use this code:

    
    .blog .post .entry-summary a.button {
        display: none;
    }
    

    I hope this helps, for the time being at least.

    Have a nice day,
    Andrija

    Thread Starter splinter1

    (@splinter1)

    Hi @gdandrija
    Thanks very much indeed!
    Both of those codes immediately solved the issue for me.
    Cheers!
    https://compufixshop.com/blog/

    Thread Starter splinter1

    (@splinter1)

    I also found a way of displaying the blog page posts in two columns:
    .blog .post {
    max-width: 45%;
    margin-right: 10px;
    display: inline-block;
    vertical-align: top;
    }
    .blog .post:nth-of-type(even) {
    margin-right: 0;
    }

    And if the featured images are of different sizes, you can limit that size height to say, 300px
    .blog .wp-post-image {
    max-height: 300px;
    }

    Hi @splinter1,

    I can see that you found a way to set up the preferred appearance, and I’m delighted to hear that.

    It was my pleasure to assist you and thanks for the update, I wish you all the best.

    Have a nice day,
    Andrija

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Posts thumbnails far too large’ is closed to new replies.