我正试图在我的网站上放置我的Google adsense广告下面的图片,但我无法让它工作。可能是我用CSS吮吸但是我想知道是否有人知道如何在它下面放一张图片。我是这样做的,所以如果有人有广告拦截器会有图片而不是广告支持我们请禁用您的广告拦截器。以下是我的测试广告的代码。
<script type="text/javascript"><!--
google_ad_client = "ca-pub-9190588463236669";
/* herp */
google_ad_slot = "8389049989";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
答案 0 :(得分:2)
我认为你的意思是隐藏在Google AdSense广告管理系统下方,以便用户只有在没有AdSense广告投放的情况下才能看到它?
我无法想到使用HTML和CSS可以做到的任何方式。相反,您可以尝试使用noscript元素告诉您的网页如果由于脚本被禁用而无法执行AdSense JavaScript阻止,该如何呈现。
例如:
<script type="text/javascript">
<!-- AdSense code goes here as normal -->
</script>
<noscript>
<img src="images/ads-support-this-site.jpg" width="750" height="75" alt="Ads support this site. Please do not use plugins to disable ads." />
</noscript>
如果脚本块没有运行,这应该允许您显示所选的JPEG图像(和/或其他HTML标记)。
有关详细信息,请参阅HTML5 noscript element definition on the W3 site。
我很长时间没有阅读Google AdSense的条款和条件,Google一直对其代码所做的更改感到挑剔。因此,您可能需要与Google联系并与他们核实他们的条款和条件是否允许使用noscript块,以避免让他们感到不安并被踢出该计划。