Reputation: 3
Regarding Fancybox V2 - Is there way to modify the size of white border (skin?) on large image?
Upvotes: 0
Views: 3357
Reputation: 41143
Use the API option padding like
padding
jQuery(document).ready(function($) { $(".fancybox").fancybox({ padding: 50 // or whatever, 0 = nothing }); }); // ready
See JSFIDDLE
Upvotes: 1