0
votes

I hid the scrollBar at window fancyBox. But I do not need scrolling content inside FancyBox with a scrollBar - I need only hidden scrolling outside window FancyBox.

It is mean, that scroll must be, but invisible, and when I scroll down windows Fancy, I must scroll down all block fancyBox.

I tried to add helper:

helpers: {
     overlay: {
     locked: false
    }
}

Also I added a option scrolling : 'no' it hide scroll, but window Fancy is not scrolling. It must be float block...

1
Mmmmmm Again what's your code, situation and try? - DaniP

1 Answers

0
votes

You also need to set autoCenter to false like

jQuery(document).ready(function ($) {
    $(".fancybox").fancybox({
        autoCenter: false,
        helpers: {
            overlay: {
                locked: false
            }
        }
    });
}); // ready

See JSFIDDLE