Search code examples
jqueryfancyboxborderfancybox-2

fancybox V2 - How to modify size of white border (skin?) on large image


Regarding Fancybox V2 - Is there way to modify the size of white border (skin?) on large image?


Solution

  • Use the API option padding like

    jQuery(document).ready(function($) {
        $(".fancybox").fancybox({
            padding: 50 // or whatever, 0 = nothing
        });
    }); // ready
    

    See JSFIDDLE