2012-05-26 172 views
0

我在與www.FreeMinecraftHost.comCSS谷歌廣告定位

顯示我的谷歌廣告的一個問題,當我使用此代碼:

<div class="top-bar"> 
     <div class="logo"> 
      <a href=""><img src="FMHLogo.png" alt="Logo" border=0></a> 
      <div style="top:-25;"></div> 
      <script type="text/javascript"> 
       <!-- 
       google_ad_client ="ca-pub-3955111504945324"; 
       /* Banner */ 
       google_ad_slot = "6834015980"; 
       google_ad_width = 468; 
       google_ad_height = 60; 
       //--> 
      </script> 
      <script type="text/javascript" 
      src="https://pagead2.googlesyndication.com/pagead/show_ads.js"></script></div> 
     </div> 

    </div> 

它打破了頂欄DIV,並在廣告下面去標誌,如果我拿出

<div style="top:-25;"> 

則廣告旁邊的標誌,但已置頂欄div的底部,任何想法?

+0

您想如何確定它?它應該如何正確看待? – DaneSoul

回答

0

把廣告放在它自己的div並更改它的z-index。您可以將其設置爲1000之類的較高值,或者以編程方式設置它,以防萬一您的網頁將來會有很多元素。例如:

div.google 
{ 
    z-index: 1000; /*or do this programmatically with jQuery*/ 
    /*Other properties if required*/ 
}