Skip to main content

Which Adsense Format and Color Scheme Performs Best

Should I use the 300x250 Adsense Rectangle or the much wider 336x280 for maximizing clicks? What do I select - 4 or 5 ads per adlink unit ? Will text only ads perform better than text+image ads ? Should I hide the colored border ?

These are some very common questions among web publishers especially those who have just gained admission to the University of Adsense. While the answer is to keep on experimenting, most Adsense experts employ a simple technique called "AB Split Testing" to optimize their Adsense ads.

The basic idea is to display different Adsense formats at the same location simultaneously but randomly. [This is done using the random() function in Javascript that generates a number between 0 and 1 with equal probability]

Here's a sample scenario to help you determine what format works best for your site - 300x250 or 338x280 ?

Step 1: Create two custom Adsense channels - name them as 300x250 and 336x280.

Step 2: Generate the Adsense Javascript code for each of these Adsense formats. Everything will be common in two code snippets except the value of following variables: google_ad_channel, google_ad_width, google_ad_height and google_ad_format.

Step 3: This is an important step, you will merge the two Adsense snippets in such a fashion that each makes an appearance on your web pages nearly 50% of the time. Here's a sample code:

<script type="text/javascript">
 var google_ads = Math.random();
    if (google_ads < .5){
      google_ad_channel = "300x250Channel";google_ad_width = 300;
      google_ad_height = 250;google_ad_format = "300x250_as";
    } else {
      google_ad_channel = "336x280Channel";google_ad_width = 336;
      google_ad_height = 280;google_ad_format = "336x280_as";
    }
      google_ad_client = "pub-xxx";google_ad_type = "text_image";
      google_color_border = "FFFFFF";google_color_bg = "FFFFFF";
      google_color_link = "0000FF";google_color_text = "000000";
      google_color_url = "0000FF"; 
</script>
<script type="text/javascript" 
      src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>

Monitor the performance (CTR, eCPM) of the two Adsense channels for a week or two to know which of the two Ad formats are converting better. [Switch to Advanced reports, select the two Adsense for Content channels and group by both date and channel]

In the next iteration, you may try the same trick with two different color schemes but keeping the Ad format same - just create separate Adsense channels for each color scheme.

If you are displaying Adsense ads on the homepage of blogs or other places where content changes very frequently, it's a good idea to test between Text and Text+Image ads.

The contextual ads may not be very relevant on blog homepage or archives because of the dynamic content and therefore CPM based Image ads may bring in more revenue.

Related Reading: Google Adsense Tips and Tricks

Popular posts from this blog

Learn to Create a Firefox Search Plugin in Less Than 2 Minutes

Almost every blog has a site search form where you just type in the search query and press enter to digg through the archives of that blog . The only drawback here is that you first have to visit the site homepage to locate the search box. And there's also a possibility that the site has no search form at all. This tutorial will show you a very simple Firefox hack that allows you to search any blog straight from the Firefox search bar without having to visit the actual blog . And there's something for IE users as well. Related: Firefox Search Bar Hacks First the not-so-good approach though it works with IE: Type the following query in the Google IE toolbar or in the Firefox Search Box with Google selected as the default engine: site:labnol.blogspot.com adobe captivate This query will retrieve all documents about Adobe Captivate on Digital Inspiration. You can replace labnol.blogspot.com with any site URL that you intend to search. You may have know the above trick already but i

How to Download Contacts from Facebook To Outlook Address Book

Facebook users are not too pleased with the "walled garden" approach of Facebook. The reason is simple - while you can easily import your Outlook address book and GMail contacts into Facebook, the reverse path is closed. There's no "official" way to export your Facebook friends email addresses or contact phone numbers out as a CSV file so that you can sync the contacts data with Outlook, GMail or your BlackBerry. Some third-party Facebook hacks like "Facebook Sync" (for Mac) and "Facebook Downloader" (for Windows) did allow you to download your Facebook friends' names, emails, mobile phone number and profile photo to the desktop but they were quickly removed for violation of Facebook Terms of Use. How to Download Contacts from Facebook There are still some options to take Friends data outside the walls of Facebook wall. Facebook offers the Takeout option allowing you to download all Facebook data locally to the disk (include

Digital Inspiration

Digital Inspiration is a popular tech blog by  Amit Agarwal . Our popular Google Scripts include  Gmail Mail Merge  (send personalized emails with Gmail ),  Document Studio (generate PDFs from Google Forms ) and   File Upload Forms ( receive files  in Google Drive). Also see  Reverse Image Mobile Search , Online Speech Recognition and Website Screenshots , the most useful websites on the Internet.