Hi kai,
u may have 3 banner on each page, the banner must not bother the user
1- i will recommend first a banner 728*90 in the top area under ( Deine Mathefrage: )
2- banner 160* 600 on the left side with position absolute, and the banner must only appear if screen size more then 1310, example
if( $(window).width() > 1310 ){ |
|
googletag.cmd.push(function() { googletag.display('div-gpt-ad-1385341340850-0'); }); |
} |
|
3- under each question description with 728*90
use in the 3 block the same color of your background website.
now about performance:
u may not use standard google adsense blocks. plz sign in google admanager, and create the ads block and placement, and the create tag for the 3 placement at one time, select asynchrom and not synchrome so the three ads will appear at one time with iframe, in this case can the browser make more http request at one time.
your code will show like this:
<script type='text/javascript'> |
|
var googletag = googletag || {}; |
|
googletag.cmd = googletag.cmd || []; |
|
(function() { |
|
var gads = document.createElement('script'); |
|
gads.async = true; |
|
gads.type = 'text/javascript'; |
|
var useSSL = 'https:' == document.location.protocol; |
|
gads.src = (useSSL ? 'https:' : 'http:') + |
|
'//www.googletagservices.com/tag/js/gpt.js'; |
|
var node = document.getElementsByTagName('script')[0]; |
|
node.parentNode.insertBefore(gads, node); |
|
})(); |
|
</script> |
|
|
|
<script type='text/javascript'> |
|
googletag.cmd.push(function() { |
|
googletag.defineSlot('/12281793/kai_right', [160, 600], 'div-gpt-ad-1341340850-0').addService(googletag.pubads()); |
|
googletag.defineSlot('/12281793/kai_top_left', [468, 60], 'div-gpt-ad-1341340850-1').addService(googletag.pubads()); |
|
googletag.defineSlot('/12281793/kai_under_', [728, 90], 'div-gpt-ad-1341340850-2').addService(googletag.pubads()); |
|
googletag.defineSlot('/12281793/kai_g', [468, 60], 'div-gpt-ad-1385341340850-3').addService(googletag.pubads()); |
|
googletag.pubads().enableSingleRequest(); |
|
googletag.enableServices(); |
|
}); |
|
</script> |
i hope that will help you