How to limit the size of Google AdSense ads

FateKid

DEVIL DID IT

Status

offline

Posts

14,667

Likes

125,866

Resources

3,373

Bits Credits

363

Admin

LEVEL

11

5,910 XP

This code is directly from Google support. Please note that this will not work for AutoAds.


Code:
If you find that our responsive ad code doesn't do everything you need, you may modify your ad code to better meet the requirements of your responsive site. The following examples show you how to correctly make these modifications.

Note: The examples described in this article are acceptable modifications of the AdSense ad code. You won't violate the AdSense Program policies by modifying your responsive ad code in these approved ways.

Code:
Exact ad unit size per screen width example
This example shows you how to modify your responsive code to set specific ad unit sizes for three ranges of screen widths, i.e., mobile, tablet and desktop. You don't need to have any previous experience of CSS media queries or modifying AdSense ad code to follow this example.

Here's some modified responsive ad code that sets the following exact ad unit sizes per screen width:
For screen widths up to 500px: a 320x100 ad unit.
For screen widths between 500px and 799px: a 468x60 ad unit.
For screen widths of 800px and wider: a 728x90 ad unit.

HTML:
<style>
.example_responsive_1 { width: 320px; height: 100px; }
@media(min-width: 500px) { .example_responsive_1 { width: 468px; height: 60px; } }
@media(min-width: 800px) { .example_responsive_1 { width: 728px; height: 90px; } }
</style>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- example_responsive_1 -->
<ins class="adsbygoogle example_responsive_1"
style="display:inline-block"
data-ad-client="ca-pub-XXXXXXX11XXX9"
data-ad-slot="8XXXXX1"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>

Code:
To adapt this sample code for your own site:
Create a display ad unit in your AdSense account, making sure you leave Responsiveselected in the "Ad size" section. Note down the following information from your responsive ad code:
Your publisher ID, for example, ca-pub-1234567891234567
Your ad unit's ID (data-ad-slot), for example, 1234567890.
In the sample code:
Replace all instances of example_responsive_1 with a unique name, e.g., Home_Page, front_page_123, etc.
Notes:
Your unique name must only contain English letters (A-Z), numbers, and underscores, and the first character must be an English letter.
You must use a different unique name each time that you adapt this sample code.
Replace ca-pub-XXXXXXX11XXX9 with your own publisher ID.
Replace 8XXXXX1 with your own ad unit's ID.
Decide on the sizes you want your ad unit to take per screen width:
If you're happy with the existing ad unit sizes in the sample code, then you don't need to make any additional changes.
If you want to set different ad unit sizes per screen width, then, in the sample code:
Replace 320px and 100px with the width and height of the ad unit you want to use for screen widths up to 500px.
Replace 468px and 60px with the width and height of the ad unit you want to use for screen widths between 500px and 799px.
Replace 728px and 90px with the width and height of the ad unit you want to use for screen widths of 800px and wider.
Copy and paste your modified ad code into the HTML source code of the page where you'd like the ads to appear.
Note: After you’ve placed your ad code, we recommend that you test your ads on different devices and screens to make sure that the responsive behavior is working correctly.
Specify an expandable width and a fixed height
You may modify your responsive ad code to specify an expandable width and a fixed height for your ad unit via CSS. The following example shows you how to make these modifications:

Expandable width with fixed height example

This example shows you how to modify your responsive ad code to specify a fixed height of 90px and a variable width from min-width 400px to max-width 970px:

HTML:
<ins class="adsbygoogle"
style="display:inline-block;min-width:400px;max-width:970px;width:100%;height:90px"
data-ad-client="ca-pub-1234"
data-ad-slot="5678"></ins>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<script>(adsbygoogle = window.adsbygoogle || []).push({});</script>

Code:
Specify an exact size per screen width
You may modify your responsive ad code to specify the exact size for your ad unit via CSS. The following example shows you how to make these modifications:

Exact size per screen width example

If you know the exact ad unit sizes per device that best fit your responsive site, then you can use CSS3 media queries to set the size of your responsive ad unit. The following example shows you how to modify your ad code to use CSS3 media queries:

Code:
<style type="text/css">
.adslot_1 { width: 320px; height: 100px; }
    @media (min-width:500px) { .adslot_1 { width: 468px; height: 60px; } }
@media (min-width:800px) { .adslot_1 { width: 728px; height: 90px; } }
</style>
<ins class="adsbygoogle adslot_1"
style="display:inline-block;"
data-ad-client="ca-pub-1234"
data-ad-slot="5678"></ins>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<script>(adsbygoogle = window.adsbygoogle || []).push({});</script>
 

Status

offline

Posts

49

Likes

83

Resources

3

Bits Credits

0

LEVEL

0

120 XP

The post above, may came from Einstein.
So, this for manual code placement, right? So modification will saved in child style?
 
Liked by:

FateKid

DEVIL DID IT

Status

offline

Posts

14,667

Likes

125,866

Resources

3,373

Bits Credits

363

Admin

LEVEL

11

5,910 XP

The post above, may came from Einstein.
So, this for manual code placement, right? So modification will saved in child style?
Yes - You'll want to make sure to read all of the added code, some items are named on examples. Change the code to correspond with your website.
 

Latest threads

Forum statistics

Threads
53,981
Messages
84,033
Members
50,603
Latest member
peppinogabdy
Top Bottom