one of the sites i am working on seems to not have nice large full images on the lightbox.
see here >>> http://adrianholmesphotography.ca/fine-art/landscapes/
is there a way to make the images show bigger?
we’d like that very much
thank you
enb…//
Hey Erich Nolan,
Please add following code to functions.php file of your child theme in Appearance > Editor
add_filter( 'avf_avia_builder_masonry_lightbox_img_size', 'enfold_customization_change_popup_size' );
function enfold_customization_change_popup_size( $size ) {
return 'fullsize';
}
Best regards,
Yigit
thanks that’s a great piece of setting to have :)
cheers
ENB..//