Error » Search Engines » Google » AdSense » Easy CSS for Maximising AdSense Earnings

Post New Thread Reply
  Easy CSS for Maximising AdSense Earnings
LinkBack Thread Tools Display Modes
Old 02-Jan-2007, 04:07 AM   #1 (permalink)
Administrator
 
Anilrgowda's Avatar

Posts: 18,702
Join Date: Jan 2006
Rep Power: 10 Anilrgowda is on a distinguished road

IM:
Default Easy CSS for Maximising AdSense Earnings

AdSense publishers know, above all, that if website visitors can't see their ads then they can't click on them either. When it comes to placing AdSense ad blocks or link units, there are an infinite number of variations possible, but did you know that some have been proven to be more effective at converting the visitor into a clicker?Being able to convert more clickers ultimately means greater earnings from the same amount of traffic. Extensive tests have proven that certain areas of a webpage receive more viewing time than others. It can be shown that with all else being equal, the likelihood of a click conversion is proportional to the amount of exposure to a particular ad block. So it makes sense to try and keep ads in the visitor's field of vision, particularly in the most popular areas of a webpage known as the hotspots.
Google is known for supporting AdSense publishers. This isn't surprising when you consider that they want to provide the best performance for their advertisers as well as making as much profit as possible from their own cut of each ad click. To this end, Google have provided AdSense publishers with a 'heat map' that shows where these visual hotspots are located.
When it comes to positioning ad units on a page, CSS comes into its own. Developed for the control of presentation, CSS can reduce the amount of work you have to do in order to implement some of the ad placements suggested by the heat map. In particular, the two ad units that I've found to be most effective are the rectangular blocks when in a floating position within an article body and the link units placed where navigation links are usually found -- in the top left corner of a web page.
Why Use CSS?
There are many benefits to using CSS for the positioning of ad units, including:
  • Faster page load times -- CSS stylesheet files can be cached by web browsers so the same files referenced by multiple pages don't need to be downloaded repeatedly as the local copies can be used instead.
  • Easier website maintenance -- the appearance of each webpage that references a stylesheet can be changed by modifying the stylesheet alone. If every webpage of a website uses the same stylesheet then changing it would allow you to make site-wide changes from a centralised file.
  • Separating presentation from the logic of a webpage by means of an external stylesheet allows a designer to work on the appearance, whilst a programmer works on the functionality without their being any conflict between the two.
Floating, Embedded Ad Blocks
More specifically, CSS can be used to implement one of the more effective ad placements much easier than using older techniques involving tables. In order to embed an ad block within the body of a piece of content, simply wrap the AdSense code with SPAN tags and apply a float style e.g.
< span style="float: left; margin: 0 10px 10px 0;" >AdSense code here< /span > Content here
This snippet of code is all that's needed to float an AdSense block within a body of content. The content automatically wraps itself around the ad block with a margin of 10 pixels to keep the two from crashing.
Using CSS can provide an AdSense publisher with much more elegant coding that's faster, easier to maintain, more accessible and more search engine friendly than with the common use of nested tables.
Anilrgowda is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Reply With Quote
   


   
Post New Thread Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump


All times are GMT -8. The time now is 09:17 PM.

Powered by vBulletin® Version 3.7.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0

DMCA Policy

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227