Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Problem with jQuery Lightbox Re: Problem with jQuery Lightbox

#114530
Watson90
Member

Hi @Raza

Your problem seems to be that in the CSS you (or the plugin code) has added some vertical scroll, probably there if the image is too large to fit on the screen. Make these changes and it goes away.

Find this code below;

.fancybox-lock .fancybox-overlay {
overflow-x: auto;
overflow-y: scroll;
}

And change it to;

.fancybox-lock .fancybox-overlay {
overflow: auto;
}