Hidden Content Whitehat Style

madcriz

Newbie
Joined
Oct 20, 2007
Messages
8
Reaction score
0
I dont see many people talking about this hidden content trick but its used everyday by sites like Youtube and others than I will post later.

I use this trick when adsense is showing ads that are not related to my page.
I have also used this trick in the past for stuffing keywords phrases and rss feeds with great results in SE term ranking

Here is a example if hidden content using javascript and css (display: none)
http://massinstaller.com/2/blackhat.php

Code:
<html>
<head>
<title>Banner Advertising For Home Base</title>
<style type="text/css">
<!--
* { font-family: Verdana, Arial, sans-serif;}
p { font-size: 11px; }
h1 { font-size: 18px; }
#menu { font-size: 11px; }
.hidden { font-size: 11px; display: none; }
#mainlinks { font-size: 11px;}
-->
</style>
</head>
<script language="javascript">
<!--
function toggle_visibility(id) {
//document.getElementById('Links').style.display = 'none';
//document.getElementById('Tutorials').style.display = 'none';
//document.getElementById('Photos').style.display = 'none';
if(document.getElementById(id).style.display == 'none')
document.getElementById(id).style.display = 'block';
else
document.getElementById(id).style.display = 'none';
}
//-->
</script>
<body bgcolor="#333333">
<div align="center">
<table border="1" width="457" cellpadding="7" bgcolor="#FFFFFF">
<tr>
<td valign="top" width="435">
<h1>Banner Advertising For Home Based Business</h1>
<span style="margin: 0pt 5px 3px 0pt; float: left">
<script type="text/javascript"><!--
google_ad_client = "pub-yours";
google_ad_width = 250;
google_ad_height = 250;
google_ad_format = "336x280_as";
google_ad_type = "text_image";
google_ad_channel = "";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "0033CC";
google_color_text = "000000";
google_color_url = "666666";
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></span>
<p>Venturing into the online world of
advertising? You have, no doubt, noticed that every click through is not
worth the price paid for it. Many visitors only stay on your web
property 2 to 5 seconds and it is very difficult to inform potential
buyers of the attributes of your products in that small window of time.
Before companies have sought to over come this problem by purchasing
larger numbers of ads and playing the numbers game. </p>
<div id="menu">
<b><font color="#0000FF"><u>
<a id="mainlinks" onclick="toggle_visibility('Links');">Read More</a></u></font></b>
<div id="Links" class="hidden">
<p>Venturing into the online world of advertising? You have, no doubt, noticed that every click through is not
worth the price paid for it. Many visitors only stay on your web
property 2 to 5 seconds and it is very difficult to inform potential
buyers of the attributes of your products in that small window of time.
Before companies have sought to over come this problem by purchasing
larger numbers of ads and playing the numbers game.
<p>This intense chess
game for advertisement position has resulted in higher ad prices due to
supply and demand and the subsequent raising of the barrier to quality
advertising for Home Based Business owners. A new advertising venue,
http://www.cheap-online-advertising dot com , is eliminating the
advertising barrier for Home Based Business. Advertising, advertising,
advertising, that is what grows a Home Based Business into a large
business. Most Home Based Business men and women go through the learning
curve of various methods of advertising, only to find out that they dont
have enough money to put their ad in front of the masses.<br>
</td>
</tr>
</table>
</div>
</body>
</html>
 
Hey thanks for the share this is refreshing. In detail how does this compare to just having content visible on your site? From a SE BOT perspective.
 
Hey thanks for the share this is refreshing. In detail how does this compare to just having content visible on your site? From a SE BOT perspective.

The SE bots would see no difference since its using css (display: none)

I mainly use this for Adsense Optimization, Its hard to get adsense to display related ads when using very little (text) content on the page. Over the years I discovered I get more clicks when using simple layouts displaying 1 adsense ad (some cases 2 ads). With this hidden content trick you can disply a small paragraph of (text) content wrapped around a adsense. Within the hidden area, (the content thats shown when (Read More) is clicked.) you continue to optimize your page for seo and adsense.
 
Here is a site that uses this trick
http://www.oreilly.com/catalog/googlehks3/toc.html
 
Back
Top