Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Bill Erickson

    (@billerickson)

    Did you change the image size dimensions in Settings > Media recently? My guess is that you used to have it set to 400×400, and at some point changed it to 200×200. Images are only resized when you originally upload them, so any images created when it was set to 400×400 will still be 400×400 now.

    You can install and run the Regenerate Thumbnails plugin to regenerate the thumbnails on your site.

    Another option that doesn’t solve the image size problem but improves the display is to add this to your theme’s style.css file:

    `
    .display-posts-listing img {
    max-width: 100%;
    height: auto;
    }
    `

    That will ensure that the image never expands beyond its container. So even if you have a 400×400 image, it won’t be larger than its wrapping element (in this case, 252px wide).

    Thread Starter delcip

    (@delcip)

    Thank your quick email reply, got it fixed now 🙂

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

The topic ‘Thumbnails large and overlapping’ is closed to new replies.