Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #360145

    The lightbox for images is square. Can it be modified to match image aspect ratios?

    #360455

    Hey!

    Try adding this at the very end of your theme / child theme functions.php file:

    function change_lightbox_size() {
    	return "full"; 
    }
    add_filter('avf_avia_builder_helper_lightbox_size', 'change_lightbox_size', 10);

    Cheers!
    Josue

    #360607

    Awesome! Thanks a ton!

    #360670

    You are welcome, always glad to help :)

    Regards,
    Josue

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Can Lightbox match image aspect ratios?’ is closed to new replies.