Hello,
I created a Masonry Gallery. On the site, the images are perfect but when you open it in the lightbox, they are a little bit blurry.
I found a similar topic here but it didn´t help me.
I created a account for you, so you may have a look at it.
Thank in advance and by the way … love Enfold Theme!!,
Steffie
Found the solution:
Just added this code to the function.php.
add_filter(‘avf_avia_builder_masonry_lightbox_img_size’,’avia_change_image_size_masonry’, 10, 1);
function avia_change_image_size_masonry($size){ return ‘full’; }