我该如何“修复” jquery lightbox 使其不滚动?

发布于 2024-12-09 21:33:27 字数 305 浏览 0 评论 0原文

我在我的博主博客中添加了一个灯箱:BibleProphecyBlog.com,使用此处的代码:

http://www.spiceupyourblog.com/2011/09/add-one-time-email-subscription-pop-up.html

怎么做我阻止灯箱滚动。我希望它在滚动时保持在原位。

谢谢。

I added a lightbox to my blogger blog: BibleProphecyBlog.com, using code from here:

http://www.spiceupyourblog.com/2011/09/add-one-time-email-subscription-pop-up.html

How do I prevent the lightbox from scrolling. I want it to stay in place when scrolling.

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

贱贱哒 2024-12-16 21:33:28

您需要更改页面上的 #popupContact 规则(第 451 行)以具有 position:fixed !important 值。见下文。

#popupContact
{
    display: none;
    position: fixed !important; /* changed this part */
    _position: absolute;
    height: 384px;
    width: 408px;
    background: white;
    border: 2px solid #CECECE;
    z-index: 2;
    padding: 12px;
    font-size: 13px;
}

You need to change the #popupContact rule on your page (line 451) to have a position:fixed !important value. See below.

#popupContact
{
    display: none;
    position: fixed !important; /* changed this part */
    _position: absolute;
    height: 384px;
    width: 408px;
    background: white;
    border: 2px solid #CECECE;
    z-index: 2;
    padding: 12px;
    font-size: 13px;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文