1

The problem is: the search autocomplete drop-down is overlapped by swf object despite its z-index is greater many values for both z-indexes tested - nothing works

.ac_results ul {
z-index: 100;
}
#main_banner {
    margin:0 auto;
    padding:0;
    vertical-align: baseline;
    float: left;
    display: block;
    height:385px;
    z-index:-1;
}

how to fix this? the link to mysite

4

2 回答 2

2
<object type="application/x-shockwave-flash" data="http://coxcamera.ru/theme/coxcamera.ru/swf/main.swf" width="100%" height="100%" id="main_banner" style="visibility: visible; "> 

<param name="wmode" value="transparent">

</object>

嗨添加<param>对象标签。它的工作正常

于 2012-05-24T11:43:49.620 回答
0
.ac_results ul {
z-index: 999;
}
#main_banner {
    margin:0 auto;
    padding:0;
    vertical-align: baseline;
    float: left;
    display: block;
    height:385px;
    z-index:1;
}

嗨,您的代码更改如下,

如果不正常,那是你的浏览器有问题。我看到你的网站使用 chrome 我看不到任何问题。

于 2012-05-24T11:03:35.437 回答