Hi!
I recently transferred my entire site to new domain (within bluehost). After I did this I noticed that when clicking on the thumbnails for my portfolio the images seem to be 2/3 cropped. The thumbnails show up fine on my portfolio page, its when you try to see the full image that is the problem. I have no idea what to do, I’ve tried re-uploading the images, but i still get the same problem. I’m using a portfolio grid.
Thank you,
Sofia.
Hi spadasof!
In the portfolio grid settings select “Choose the portfolio grid image size manually” in the “Portfolio grid image size” option and then set the image size to “No Scaling”.
Best regards,
Elliott
Thanks so much, Elliott, but I did as you said and the thumbnail images are now all different sizes and the images are still cropped when you click on them and try to open the full image up. Heres the link: http://www.sofiaspadafora.com/?page_id=29
Thanks again for your help.
Hey!
Alrighty, switch it back to how you had it before and then try adding this to the bottom of your functions.php file.
add_filter( 'avf_avia_builder_masonry_lightbox_img_size', 'enfold_customization_masonry_size', 10, 1 );
function enfold_customization_masonry_size ($size)
{
return "full";
}
Cheers!
Elliott