Welcome to WebmasterWorld Guest from 3.214.184.124
Forum Moderators: martinibuster
My idea is to make most of the text on the pages we want Adsense to appear on "images", however I do need to have some of the keywords on the page to get the right Ads.
A couple of points that I need help or advice with.
1. Does the Adsense bot use the Meta title, description and keywords when spidering a page?
2. Is there a minimum number of words or characters that must be on a page?
3. Are the ads only related to pages they are on or does Adsense look at the whole site?
Any advice would be very helpful.
joined:Oct 27, 2001
posts:10210
votes: 0
A simpler and more practical solution would be to use an image for every stop word. It might look a little funny to have images for words like "death," "murdered," or "maimed" scattered throughout the text, but maybe you could put black boxes around the words to give the impression that you're trying to show sympathy. :-)
For number of words on a page in relation to stop words, I think there is definitely a weight factor coming into play, since others have reported stop words with no PSAs.
Do you mean showing PSAs on pages without stop-words simply because your domain has a high incidence of them? There is a theming issue going on, not sure if it applies when looking at stop words or not though.
Maybe google takes a little time to get everything in context.
Perhaps you could first try just putting in the ads in the site as it is, and see if google gets it's head around your theme. It may just be that you will get perfectly targeted ads - either from the get-go, or after google has had a chance to get a grip of your site's focus.
If not, then you could move to the image-in-place-of-text thing.
Any advice would be very helpful.
I can't comment on whether what you are proposing is the right way to go but if you decide it is I know of a very good application for achieving wht you want to do.
Get yourself a Mac and a copy of Freeway by Softpress systems in the UK. Its a kind of DTP orientated web page desing program. Once you have input your text you can drag over any amount of it and select "gif text" it then creates the gifs from the text when the page is published and keeps it accurately inline with your other text. If you use a standard web font like Arial and specify your text size in pixels you can't tell what is or is not gif text in the browser. You could easily just turn the stop words into gifs and 99% of your visitors wouldn't even notice.
Please don't flame me for for having the timerity to suggest a minority platform and tool. Freeway currently only runs on Mac and OS X.
Best wishes
Sid
My topic overall is not offensive at all, but I wouldn't go through the trouble of image stop words, espeically if your topic is on that subject anyways
Why not do it with javascript that the bot is unlikely to decipher?
You could replace the word "death" with:
<script>document.write("de"+"ath");</script>
Or, if you're super paranoid, and think google's bot might be getting a little cleverer, do something a little more obfuscated like a rot13 encoding of the dangerous words. For example:
<!-- insert this near the start of your document -->
<script>
function r13(a) {
var map= new Array();
var s = "abcdefghijklmnopqrstuvwxyz";
for (i=0; i<s.length; i++)
map[s.charAt(i)] = s.charAt((i+13)%26);
for (i=0; i<s.length; i++)
map[s.charAt(i).toUpperCase()] = s.charAt((i+13)%26).toUpperCase();
s = "";
for (i=0; i<a.length; i++) {
var b = a.charAt(i);
s+= (b>='A' && b<='Z' ¦¦ b>='a' && b<='z'? map[b] : b);
}
return s;
}
</script>
Then output individual words like this wherever required in the document ("qrngu" is the rot13 encoding of "death"):
<script>
document.write(r13("qrngu"));
</script>
<script>
document.write(r13("qr"+"ngu"));
</script>
By the way, if it's not obvious already, you can use the same javascript function to work out the encoded values you should use for each word - no need to do it manually. For example:
<script>
alert(r13("death died")); //etc
</script>
RIP, HTML.
How can I see which ads are being displayed in the US when I am in the UK?