如何'修复'jquery灯箱,使其不滚动?

时间:2011-10-14 00:13:29

标签: jquery lightbox blogger

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

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

如何防止灯箱滚动。我想让它在滚动时保持原位。

感谢。

1 个答案:

答案 0 :(得分:0)

您需要更改页面上的#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;
}