Colorbox溢出是否仍然设置为隐藏? (试图追加)

时间:2011-09-12 12:08:48

标签: jquery css colorbox

我正在尝试将div添加到colorbox模式中,我所做的是将css设置设置为'overflow:visible',并且我还设置将jquery.colorbox.js中的每个字符串从隐藏更改为可见,但这就是我在萤火虫中的含义:

<div id="colorbox" class="" style="padding-bottom: 0px; padding-right: 0px; display: block; position: absolute; width: 796px; height: 300px; top: 164px; left: 442px; overflow: hidden;">

这是colorbox的CSS文件:

#colorbox, #cboxOverlay, #cboxWrapper{position:absolute; top:0; left:0; z-index:9997; overflow:visible; box-shadow: 0px 0px 5px #000000;}
/*#cboxOverlay{position:fixed; width:100%; height:100%;}*/
#cboxMiddleLeft, #cboxBottomLeft{clear:left;}
#cboxContent{position:relative; overflow: visible;}
#cboxLoadedContent{overflow:auto;}
#cboxTitle{margin:0;}
#cboxLoadingOverlay, #cboxLoadingGraphic{position:absolute; top:0; left:0; width:100%;}
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{cursor:pointer;}
.cboxPhoto{float:left; margin:auto; border:0; display:block;}
.cboxIframe{width:100%; height:100%; display:block; border:0;}

/* 
    User Style:
    Change the following styles to modify the appearance of ColorBox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay{background:#212121;}
#colorbox{}
    #cboxContent{margin-top:0px; overflow:visible;}
        #cboxError{padding:50px; border:1px solid #fff;}
        #cboxLoadedContent{background:#000; padding:0px; -moz-border-radius: 4px; border-radius: 4px;}
        #cboxLoadingGraphic{background:url(images/loading.gif) no-repeat center center;}
        #cboxLoadingOverlay{background:#000;}
        #cboxTitle{position:absolute; top:-22px; left:0; color:#000;}
        #cboxCurrent{position:absolute; top:-22px; right:205px; text-indent:-9999px;}
        #cboxSlideshow, #cboxPrevious, #cboxNext, #cboxClose{text-indent:-9999px; width:20px; height:20px; position:absolute; top:-20px; background:url(images/controls.png) no-repeat 0 0;}
        #cboxPrevious{background-position:0px 0px; right:44px;}
        #cboxPrevious.hover{background-position:0px -25px;}
        #cboxNext{background-position:-25px 0px; right:22px;}
        #cboxNext.hover{background-position:-25px -25px;}
        #cboxClose{background-position:-50px 0px; right:0;}
        #cboxClose.hover{background-position:-50px -25px;}
        .cboxSlideshow_on #cboxPrevious, .cboxSlideshow_off #cboxPrevious{right:66px;}
        .cboxSlideshow_on #cboxSlideshow{background-position:-75px -25px; right:44px;}
        .cboxSlideshow_on #cboxSlideshow.hover{background-position:-100px -25px;}
        .cboxSlideshow_off #cboxSlideshow{background-position:-100px 0px; right:44px;}
        .cboxSlideshow_off #cboxSlideshow.hover{background-position:-75px -25px;}

谢谢:)))))))

2 个答案:

答案 0 :(得分:2)

尝试在样式表中使用overflow:visible !important;,这不是一个非常简洁的解决方案,但如果找不到设置它的原始位置,这可能是一个有用的修复

答案 1 :(得分:0)

在第30行的colorbox.css中 - 删除#cboxClose,在第30行之后插入新行并过去

#cboxClose{position:absolute; top:-29px; right:0; background:url(../i/controls.png) no-repeat -25px 0; width:25px; height:25px; text-indent:-9999px;}

这解决了关闭(x)按钮位置错误的问题。