2016-01-21 269 views
0

我現在爲我的網站設置adsense,並試圖在廣告背後設置一個背景圖片,這樣如果有人用廣告塊訪問該頁面,就會有禮貌地要求他們轉向的圖片如果他們想要支持該網站,那就行了。目前,我已將adsense代碼封裝在一個div中,並在其上設置了一個背景圖像,但是當我這樣做時,我的adblock軟件能夠檢測到它並阻止背後的圖像。任何人都可以告訴我這是正確的嗎?乾杯放橫幅廣告behing Adsense

HTML -

<div class="ad-alert"> 
    <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> 
    <!-- Listings Banner --> 
    <ins class="adsbygoogle" style="display:inline-block;width:728px;height:90px" data-ad-client="ca-pub-9407013200292589" data-ad-slot="7535806952"></ins> 
    <script>(adsbygoogle = window.adsbygoogle || []).push({});</script> 
</div> 

CSS -

.ad-alert { 
    width: 728px; 
    height: 90px; 
    background-image: url("../images/ad-alert-banner.png"); 
} 

回答

0

好了,解決它自己。訣竅是通過CSS設置div背景色,然後使用透明背景設置具有所需文本的背景圖像。下面是一個例子。

CSS -

.ad-alert { 
    width: 728px; 
    height: 90px; 
    background: #cccccc; 
    background-image: url("../images/randompeople.png"); 
    margin: auto; 
    margin-top: 30px; 
} 
+0

現在,你需要接受你自己的答案,很元我知道。 –

+0

您只能在兩天後接受您自己的答案。 –

+1

謝謝你教育我!我沒有在這裏發佈問題,但已經發現許多預先提出的問題回答:-) –