The quality of images in the grid view is poor, as they are using a 150 x 150 px scaled down version of the featured image, but then the div id 200 x 200 px, meaning that it is stretched and of poor quality.
The grid template uses the thumbnail version of your images (by default this is 150 x 150 within WordPress) and then applies this:
.ee_grid_box img {
width: 200px;
height: 200px;
}
There are a couple of options, you can either increase the ‘thumbnail’ dimensions that WordPress is using so that the images are larger than 150 x 150. (You will need to regenerate the thumbnails if doing this)
Or use a custom style such as this:
.ee_grid_box img {
width: auto;
height: auto;
}
So that the images remain at the original size. However doing this may cause the text to overflow the parent element so that may also need some custom styles.
Thanks Tony. I changed the default thumbnail size in WP to 200×200 and then used a plugin to regenerate thumbnails and the images look nice and clear now.
The support post ‘Quality of images in grid view’ is closed to new replies.
Have a question about this support post? Create a new support post in our support forums and include a link to this existing support post so we can help you.
Support forum for Event Espresso 3 and Event Espresso 4.