Forum Moderators: martinibuster
Instead of using the PSAs (which are highly irrelevant, since I run a site outside of the USA), I am using the relatively new unsold redirect which enables me to put something else there instead.
I'm actually putting editorial into these unsold ad space areas - links to new posts on the website and latest news headlines that are relevant for users of my site. Since I've done this, I notice that the ads have been working better for me - presumably because users are getting used to looking at the ad-banner to discover what the latest news is, etc.
I'd recommend this to others - even a few links in the 468x60 unsold space seems to have a good effect on the ad click-rate when there are ads there. And it has the welcome effect of keeping people on the site for longer, since they're using internal links to see the latest news, etc.
Hope you find that handy.
That is a very good idea, I'm actually doing something similar using the alternate ads ... redirecting to an php script that allows me to count how many times AdSense wasn't able to publish an ad, because I'm running a bilingual site it happens a lot in my spanish version so that way you can also tune the application.. I'm counting the number of redirects and because it does counts towards the number of impresion I'm able to determine the % of no ads .. so tunning the content I have been able to reduce that %.
Hope this also help ;-)
CS.
Hope this help.
I have given some thought to using the space for quick links like James - I think it's a great idea.
To get the alt. ad page to work, I had to create a new html page, with nothing but the gif on it. You have to set the target of the gif link to open in a new window, otherwise it will open the target page in your banner space where the adsense usually is.
1. Create a stand-alone, perfectly valid HTML page, such as:
-------8<----------
<html>
<head>
<title>Blah</title>
</head>
<body>
Hi, this is an alternate ad. Click <a target="_blank" href="http://www.yahoo.com/">this link</a>.
</body>
</html>
-------8<----------
The page should be perfectly valid when accessed directly in an HTML browser.
2. Make sure your page's output fits the 468x60 format (if this is an alt for this format... adjust accordingly), otherwise it will be cropped when displayed as alt ad.
3. Put this page online on your web server.
4. Enter the full URL of that page in your Google's settings which will update your Google Adsense HTML/JS code.
5. Put the new Adsense HTML/JS code online in your web pages.
Now, if an alt ad must be displayed, the WHOLE alt HTML page will be fetched by the clients browser and displayed in the IFRAME instead of the adsense ad. Whatever you put in this HTML page will be displayed.
Make sure to make your links target="_blank" - otherwise, when clicked, the linked pages will be cropped to the banner/leaderboard/whatever format - the IFRAME's format.
Hope it helps.
If I have head tags in the html should I also be adding things such as <title> as in the example on the previous page and if I do that should I be adding meta tags such as content, keywords and description?
Would this not detract away from the page it is on which already has these attributes that target the pages content? and may it not cause complications with SE's spidering the site - surely some would see two head tags, two html tags etc.?
Google's example does not have any html, head, body tags only the html - but that is for an image and I want to add a table etc.
I can't see much merit in meta tags in an alternate ad, other than possibly some to control robots indexing the alternate ad page. But IMO that's better accomplished with robots.txt anyhow.
Mine look just about like runboard's example, except with target="_top" instead.
Since mine are .php scripts, I also get the benefit of my favorite PHP trick as well, the gzipped output buffer.
I mean the page the ads are on has those attributes plus all the needed meta tags for that page (the one the ads are on) so why do we have to input them all again.
I am more concerned about confusing bots with duplicated tags because of the ad, and like I say in Googles example it does not show any html, head or body tags.
Comments?
I am more concerned about confusing bots with duplicated tags because of the ad, and like I say in Googles example it does not show any html, head or body tags.
The content of the iframe (i.e. the alternate ad URL) is served just like any web page (and can be the output of a script). A plain text file would mostly work, just like a plain text "web page" is readable with most browsers. However there's no harm in making it valid html to be sure, with the html, head and body tags plus css etc. (note that as it's a separate page it doesn't know about the stylesheet of your main page).
There's no reason to have a title tag, as nothing will ever see it. You won't confuse any bots as they would have to execute the javascript and follow iframes to even see the page, we'd have probably have heard about any that do as they would already be clicking on the adsense ads... :-)
[edit]
Correction, the <title> tag is required for valid html, but should be empty as it's not used. So a minimalist but totally valid ad page would be something like
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<html><head><title></title></head><body>Ad text</body></html>
[/edit]
The ads looks very similar to Google ads, but since they aren't shown on the page at the same time as a Google ad, I believe it's in compliance with the TOS. I think it's very cool, although it's too early to know if visitors to the site think so too.
If it doesn't work out, maybe I'll switch to the idea of putting editorial in those spaces as the original poster suggested. It would be nice to use a script that chose a random editorial, so it wasn't the same on every page.
Google has indexed my alternate "ads", and they are appearing in Google SERPs.
Interesting. How does it find them? Could the alternate ad page be reachable from elsewhere on your site, such an auto-generated site map (or directory index)?
I can't see any way the alternate ad page could be indexed IF the only place it can EVER be reached from is within the Adsense javascript and iframe.
Google has indexed my alternate "ads", and they are appearing in Google SERPs.
I put an exclusion for the alternate ad in robots.txt. As Google is really good about honoring robots.txt, I worried that it might not like the exclusion, but Google has no seems to be showing the alt ad.
hmmm, If the google bot is reading the alt ad url from their java script header and giving it a page rank, the alternative ad will probably end up as one of the highest PR pages on a site....assuming you have an add on every page but the exit page.
I currently have my alt ads on one domain and the others read them from there but inside the ads on each domain the urls all point to the main domain where the alt ads reside.