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