Devlin
Devlin

Reputation: 3

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?

Upvotes: 0

Views: 3357

Answers (1)

JFK
JFK

Reputation: 41143

Use the API option padding like

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

See JSFIDDLE

Upvotes: 1

Related Questions