Jquery Fancybox 2 adds a margin-right?

喜你入骨 提交于 2019-12-06 00:51:32

It's a CSS fix. On the .fancybox-lock style, get rid of the overflow-y: scroll, so the style that looks like this:

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

Should instead look like this:

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

This will handle it for you.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!