修复网站样式的错误

  • 本文关键字:错误 样式 网站 css
  • 更新时间 :
  • 英文 :


当我在网站上添加Google Adsense时,网站的内容向下移动

我如何使Google Adsense旁边的内容不在其下面。

这是我的网站:http://saledirection.com/

.wrapper {
    width: 990px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

将您的adsense代码替换为以下一个。您需要将position:absolute;添加到样式中,该样式将将垂直广告放在您的主要内容旁边。

<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js "></script>
<!-- lkl -->
<ins class="adsbygoogle"
     style="display:inline-block;width:120px;height:900px;position:absolute;"
     data-ad-client="ca-pub-5991916567520964"
     data-ad-slot="4537317534"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>

相关内容

  • 没有找到相关文章

最新更新