If you look at http://staging.biztimes.com/acts-housing-campaign-celebration/ or http://staging.biztimes.com/visit-milwaukee-annual-meeting-2019/ ] you will see the TagDiv gallery is not scaling the images up or resizing them to the container. I know the images are not that large, but they are getting displayed at 385×280 when the actual image size is 770×560
Any suggestions on fixing this?
Hello !
Please take a look at this topic to see the fix for your issue: https://forum.tagdiv.com/thumbnails-fix-strange-looking-images-on-blocks/
Hope this helps !
Thank you !
Hey Vlad,
I JUST uploaded those gallery images, the theme was already active when I uploaded the new gallery images. Regenerating thumbnails only helps if you just switched themes or something along those lines.
Hello !
We are sorry for the inconvenience !
Try disabling the modal image from the general settings and enable it from the image itself in the post: https://www.screencast.com/t/6AsQIgI69 ; https://www.screencast.com/t/m5vCRYWU
Let me know if this helps.
Thank you !
Actually I fixed this issue myself by adding the following to the CSS
// Fix for Galleries
.td-doubleSlider-1 .td-slide-item .td-slide-galery-figure img {
width: auto;
height: 100%;
}
If anyone ever search for this. The best code for the gallery images in the slider is this one:
/*Gallery fix*/
.td-doubleSlider-1 .td-slide-item .td-slide-galery-figure img {
max-width: 100%;
height: auto;
}
With this code all images in the gallery with fit 100% perfect.
