如何让comodo popup覆盖其他元素?

时间:2017-05-15 14:12:13

标签: javascript jquery html css

我有一个comodo安全徽标,但在悬停时,弹出窗口显示在其他页面元素下。我的CSS是:

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

Page是here

comodo安全徽标和行为都很好,只是我需要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>

2 个答案:

答案 0 :(得分:0)

就像Hunagism在评论中所说,从overflow: hidden; .eb2中删除div。然后,要在此元素(#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;

答案 1 :(得分:0)

我也遇到了同样的问题,因此我使用了一个更简单的解决方案,即将鼠标悬停弹出式窗口的z-index从0顶部999999更改。请参见下面的代码,并将其添加到您的Comodo代码段旁边。

<style type="text/css">#tl_popupCL1 { z-index: 999999 !important }</style>