By Dom Martin on Friday, 30 October 2020
Posted in General Issues
Replies 3
Likes 0
Views 580
Votes 0
Hey so I'm trying to use easyblog as primarily an editorial platform for photography and I'm not 100% happy with how the thumbnails block is displayed. Specifically how when in lightbox view, there's an animation that zooms in the new photo every time, which is not my ideal design. I can't seem to find any sort of settings in the backend to configure this. Am I just missing something or is there a way for me to jump into code to remove the animation?
Hello Dom,

I am not entirely sure which effect are you referring to because the lightbox does not zoom in into images. All it does, is open the large version of the image.
·
Friday, 30 October 2020 23:32
·
0 Likes
·
0 Votes
·
0 Comments
·
Sorry I'm referring to the animation when switching between images in the lightbox view!
·
Saturday, 31 October 2020 01:44
·
0 Likes
·
0 Votes
·
0 Comments
·
Do you mean when you hover over the thumbnails at the bottom? These are controlled via CSS,


#eb .eb-image-popup-thumb.active img, #eb .eb-image-popup-thumb:hover img {
-webkit-transform: scale(1);
-moz-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
·
Saturday, 31 October 2020 14:58
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post