Tagged: galery
Hi everyone !
I have created a Masonry Galery in a page.
Uploaded images where at 1200 pixel but when I clic on an image to watch the full size image, I just have a tiny image (around 400 pixels).
See galery at the bottom of page:
http://www.gites-pyrenees.net/location-gite-de-groupe-15-personnes-a-laruns/
How can I have big images when I click ?
Thanks for any help.
Hey bielle64,
Could you please provide us with a temporary admin login so that we can take a closer look? You can post the details in the Private Content section of your reply.
Best regards,
Rikard
Done
Hey!
try this code in functions.php:
add_filter( 'avf_avia_builder_masonry_lightbox_img_size', 'enfold_customization_change_popup_size' );
function enfold_customization_change_popup_size( $size ) {
return 'fullsize';
}
Regards,
Andy