CSS Google广告定位

时间:2012-05-26 02:58:23

标签: html css adsense

我在www.FreeMinecraftHost.com

上显示我的Google广告时遇到问题

当我使用此代码时:

<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的底部,有什么想法吗?

1 个答案:

答案 0 :(得分:0)

将广告放在自己的div中并更改其z-index。您可以将其设置为某个高值(如1000)或以编程方式设置它,以防您的页面在将来结束时有很多元素。 E.g:

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