2017-05-15 84 views
0

我有一個comodo安全標誌,但懸停彈出窗口出現在其他頁面元素下。我的CSS是:如何使comodo彈出覆蓋其他元素?

a[onmouseout="tLpB('tl_popupCL1')"] { 
    position: fixed; 
    z-index: 99999; 
    width: 100px; 
} 

頁是here

魔島的安全標誌和行爲是所有罰款,這只是我需要的POPOP出現在頂部。如果需要,jscript在下面。

<script language="JavaScript" type="text/javascript">TrustLogo("https://www.stakeholdermap.com/comodo_secure_seal_113x59_transp.png", "CL1", "none");</script><a href="https://ssl.comodo.com" id="comodoTL">SSL Certificates</a> 
+0

凡在頁面上是你的這個環節? – Huangism

+0

向下滾動到項目符號列表。綠色手風琴正下方標誌。 – projectmonkey

+0

它看起來像是有一些定位算法放置箱子,當箱子低於標識時,它被容器切斷。你的容器溢出隱藏,我不確定爲什麼,所以如果你可以刪除它,它應該沒事 – Huangism

回答

0

像Hunagism在他的評論中說,從你的.eb2div刪除overflow: hidden;。然後,爲了獲取彈出顯示在廣告中,這個元素(#aswift_0_anchor):

<ins id="aswift_0_anchor" style="display:block;border:none;height:280px;margin:0;padding:0;position:relative;visibility:visible;width:336px;background-color:transparent"><iframe width="336" height="280" frameborder="0" marginwidth="0" marginheight="0" vspace="0" hspace="0" allowtransparency="true" scrolling="no" allowfullscreen="true" onload="var i=this.id,s=window.google_iframe_oncopy,H=s&amp;&amp;s.handlers,h=H&amp;&amp;H[i],w=this.contentWindow,d;try{d=w.document}catch(e){}if(h&amp;&amp;d&amp;&amp;(!d.body||!d.body.firstChild)){if(h.call){setTimeout(h,0)}else if(h.match){try{h=s.upd(h,i)}catch(e){}w.location.replace(h)}}" id="aswift_0" name="aswift_0" style="left:0;position:absolute;top:0;width:336px;height:280px;"></iframe></ins> 

添加z-index: -1;

+0

謝謝安東尼。不幸的是,似乎沒有工作。 – projectmonkey

+0

它不起作用?你正在向'id'' aswift_0_anchor'的元素添加'-1'的'z-index'? – Anthony

+1

知道了,正在添加到ins風格。衛生署。工作感謝! – projectmonkey