<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Web Cash &#187; link</title>
	<atom:link href="http://www.earn-web-cash.com/tag/link/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.earn-web-cash.com</link>
	<description>Writing, Designing, and Making Money Online</description>
	<lastBuildDate>Sun, 04 Dec 2011 22:52:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2</generator>
		<item>
		<title>How to Modify a WordPress RSS Feed Widget with Rel=Nofollow</title>
		<link>http://www.earn-web-cash.com/2008/02/09/modify-widget-nofollow/</link>
		<comments>http://www.earn-web-cash.com/2008/02/09/modify-widget-nofollow/#comments</comments>
		<pubDate>Sun, 10 Feb 2008 00:34:11 +0000</pubDate>
		<dc:creator>Walkere</dc:creator>
				<category><![CDATA[PHP Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[rss]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.earn-web-cash.com/2008/02/09/modify-widget-nofollow/</guid>
		<description><![CDATA[I just added an RSS feed widget to my site (see the lower right corner &#8211; the DZone links). I frequent dZone a decent amount, and I find a lot of the articles interesting. However, after some thought I became concerned that ten sitewide external links might be a bit of a drain on my [...]]]></description>
			<content:encoded><![CDATA[<p>I just added an RSS feed widget to my site (see the lower right corner &#8211; the DZone links).  I frequent dZone a decent amount, and I find a lot of the articles interesting.</p>
<p>However, after some thought I became concerned that ten sitewide external links might be a bit of a drain on my pagerank.  If only I could add &#8220;rel=nofollow&#8221; to all those links.  But there&#8217;s no option in the RSS Widget to do that.<br />
<span id="more-106"></span><br />
Well, I decided to dive in and fix it myself.</p>
<h5>Where the RSS Feed Widget is Located</h5>
<p>This is actually a very simple hack to the WordPress source files.  You&#8217;ll need to edit two lines of the file, upload it, and you should be good to go.</p>
<p>The file we&#8217;re looking for is &#8220;widgets.php&#8221; &#8211; it should be located in the wp-includes folder.  This holds all the functions related to creating widgets and it also holds the standard widgets available in the Dashboard.</p>
<p>We need to scroll down, find the &#8220;RSS Feed Widget,&#8221; find where the links are created, and add &#8220;rel=&#8217;nofollow&#8217;&#8221; to those anchor tags.</p>
<h5>Hack It Up &#8211; Add Some Code</h5>
<p>The function we&#8217;re looking for should be around line 935 &#8211; titled &#8220;wp_widget_rss.&#8221;  Once you&#8217;ve found the function, look for this line &#8211; it should be around 965.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$title</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;&lt;a class='rsswidget' href='<span style="color: #006699; font-weight: bold;">$url</span>' title='&quot;</span> <span style="color: #339933;">.</span> 
  attribute_escape<span style="color: #009900;">&#40;</span>__<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'Syndicate this content'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;'&gt;&lt;img 
  style='background:orange;color:white;border:none;' 
  width='14' height='14' src='<span style="color: #006699; font-weight: bold;">$icon</span>' alt='RSS' /&gt;&lt;/a&gt; 
  &lt;a class='rsswidget' href='<span style="color: #006699; font-weight: bold;">$link</span>' title='<span style="color: #006699; font-weight: bold;">$desc</span>'&gt;<span style="color: #006699; font-weight: bold;">$title</span>&lt;/a&gt;&quot;</span><span style="color: #339933;">;</span></pre></div></div>

<p>This creates the &#8220;RSS Icon&#8221; link to the original feed.  There&#8217;s a second link in there that makes the link for the title of the RSS feed.  To make these nofollow, simply add the phrase <code>rel='nofollow'</code> right after the <code>&lt;a</code>.  Be sure to use single quotes around the nofollow &#8211; or else you&#8217;ll break the PHP statement and cause an error.</p>
<p>When complete, it should look like this.  Notice that we&#8217;re adding rel=&#8217;nofollow&#8217; in two places.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$title</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;&lt;a rel='nofollow' class='rsswidget' href='<span style="color: #006699; font-weight: bold;">$url</span>' title='&quot;</span> <span style="color: #339933;">.</span> 
  attribute_escape<span style="color: #009900;">&#40;</span>__<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'Syndicate this content'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;'&gt;&lt;img 
  style='background:orange;color:white;border:none;' 
  width='14' height='14' src='<span style="color: #006699; font-weight: bold;">$icon</span>' alt='RSS' /&gt;&lt;/a&gt; 
  &lt;a rel='nofollow' class='rsswidget' href='<span style="color: #006699; font-weight: bold;">$link</span>' title='<span style="color: #006699; font-weight: bold;">$desc</span>'&gt;<span style="color: #006699; font-weight: bold;">$title</span>&lt;/a&gt;&quot;</span><span style="color: #339933;">;</span></pre></div></div>

<p>Now scroll down a bit more to roughly line 990.  The line we&#8217;re looking for creates the individual links to the articles.  You should see this bit of code.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;&lt;li&gt;&lt;a class='rsswidget' href='<span style="color: #006699; font-weight: bold;">$link</span>'
  title='<span style="color: #006699; font-weight: bold;">$desc</span>'&gt;<span style="color: #006699; font-weight: bold;">$title</span>&lt;/a&gt;<span style="color: #006699; font-weight: bold;">$summary</span>&lt;/li&gt;&quot;</span><span style="color: #339933;">;</span></pre></div></div>

<p>Again, add <code>rel='nofollow'</code> right after the <code>&lt;a</code>.  The result should look like this.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;&lt;li&gt;&lt;a rel='nofollow' class='rsswidget' href='<span style="color: #006699; font-weight: bold;">$link</span>'
  title='<span style="color: #006699; font-weight: bold;">$desc</span>'&gt;<span style="color: #006699; font-weight: bold;">$title</span>&lt;/a&gt;<span style="color: #006699; font-weight: bold;">$summary</span>&lt;/li&gt;&quot;</span><span style="color: #339933;">;</span></pre></div></div>

<h5>Upload the File</h5>
<p>That&#8217;s it.  Those two small changes should make your RSS Widgets nofollow from now on &#8211; preserving your pagerank.</p>
<p>Simply upload the file to the server (be sure to replace the old wp-includes/widgets.php) and reload your site.</p>
<p>If you run into an error, double check that you used single quotes around the &#8216;nofollow.&#8217;  The PHP string is started with a double quote (&#8220;), so if you place a double-quote there you&#8217;ll prematurely end the string &#8211; and cause a parse error.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.earn-web-cash.com/2008/02/09/modify-widget-nofollow/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Participate in Forums to Create Tons of Backlinks</title>
		<link>http://www.earn-web-cash.com/2008/02/02/forums-backlinks/</link>
		<comments>http://www.earn-web-cash.com/2008/02/02/forums-backlinks/#comments</comments>
		<pubDate>Sat, 02 Feb 2008 23:55:22 +0000</pubDate>
		<dc:creator>Walkere</dc:creator>
				<category><![CDATA[Online Tools]]></category>
		<category><![CDATA[Traffic]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[backlink]]></category>
		<category><![CDATA[forum]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.earn-web-cash.com/2008/02/02/forums-backlinks/</guid>
		<description><![CDATA[Ahh, the never ending quest for backlinks.

There are plenty of places to look for free backlinks - some of better quality than others.  One trick you can use to build up a decent collection of backlinks is to regularly post on forums in your niche.]]></description>
			<content:encoded><![CDATA[<p>Ahh, the never ending quest for backlinks.</p>
<p>There are plenty of places to look for free backlinks &#8211; some of better quality than others.  One trick you can use to build up a decent collection of backlinks is to regularly post on forums in your niche.<br />
<span id="more-96"></span></p>
<h5>Not All Backlinks Are Created Equally</h5>
<p>Before you go about posting on every forum you can find, understand that not all backlinks are of equal value.</p>
<p>Some forums (as well as blog comment areas) use the <code>rel="nofollow"</code> attribute in links.  This means that Google (and possibly other search engines) ignores the link when crawling and calculating search engine placement.</p>
<p>Some other search engines &#8211; like Yahoo &#8211; may still count these.  There&#8217;s no certain way to know how valuable they are, so I wouldn&#8217;t just ignore them.  However, if you have a choice you should steer your time and effort to forums where the links you create do <strong>not</strong> contain the <code>rel="nofollow"</code> attribute.</p>
<h5>Where Do I Put the Links?</h5>
<p>On most forums, it&#8217;s considered bad form to just run around posting links to your site.  Be sure to read the rules for the forum.  Some forums may allow you to link to your site <strong>if</strong> the article directly relates to a question someone else asked.</p>
<p>However, there are two places you&#8217;ll generally be able to put backlinks.</p>
<p>In your profile, you should be able to set a &#8220;Homepage&#8221; value.  Always do this.  On some forums &#8211; like <a href="http://www.programmingtalk.com/index.php">Programming Talk</a> &#8211; each post contains a link to your homepage by your name.</p>
<p>You can also create a signature.  This appears at the end of every post you make, and it is typically considered ok to place self-promoting links here.  Some forums will have special rules about this &#8211; so be sure to read them.</p>
<p>Once you place links in your signature, make them count.  This is a great place to start doing SEO.  If you already have a link to your homepage underneath your name, I would use the signature to link to some deeper pages &#8211; like content categories.  Give the links targeted text (like &#8220;PHP Tutorials&#8221; or &#8220;Web Design Tips&#8221;).</p>
<h5>A Few Forums to Start With</h5>
<p>Since you&#8217;re a webmaster, you&#8217;ll always find something interesting to talk about on webmaster forums.  Here are a few well-trafficked forums that I frequent.</p>
<ul>
<li><a href="http://www.daniweb.com/">DaniWeb</a> &#8211; I think signature links here are rel=nofollow, but it&#8217;s a good forum</li>
<li><a href="http://forums.digitalpoint.com/">Digital Point</a> &#8211; Lots of traffic, and links are followed</li>
<li><a href="http://www.programmingtalk.com/index.php">Programming Talk</a> &#8211; Decent traffic, and links are followed</li>
<li><a href="http://www.sitepoint.com/forums/">Site Point</a> &#8211; Lots of traffic, and links are followed</li>
</ul>
<h5>Start Posting!</h5>
<p>What are you waiting for?  Get out there and start posting!</p>
<p>If your website isn&#8217;t about websites, then you should probably search out some other forums based on your niche as well.</p>
<p>Forum backlinks aren&#8217;t going to make your website a success by themselves, but they are a good stepping stone to better SEO.  You can use them to quickly build up backlinks for a new site until you start getting better backlinks from other sites.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.earn-web-cash.com/2008/02/02/forums-backlinks/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>How to Create a 3D Button Using CSS and a Gradient Image</title>
		<link>http://www.earn-web-cash.com/2008/01/28/3d-button-gradient/</link>
		<comments>http://www.earn-web-cash.com/2008/01/28/3d-button-gradient/#comments</comments>
		<pubDate>Tue, 29 Jan 2008 00:30:43 +0000</pubDate>
		<dc:creator>Walkere</dc:creator>
				<category><![CDATA[HTML Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[anchor]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[gradient]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.earn-web-cash.com/2008/01/28/3d-button-gradient/</guid>
		<description><![CDATA[While I was browsing through <a href="www.dzone.com" title="Developer's Zone">dzone</a> today, I stumbled on this <a href="http://www.dave-woods.co.uk/?p=158">3d button css tutorial by Dave Woods</a>.

Using some simple css and a little color know-how, he shows you how to turn a square button into a pseudo 3-dimensional button.  I'll take it a step further and add a gradient background image to enhance the lighting effect.  Like this...]]></description>
			<content:encoded><![CDATA[<p>While I was browsing through <a href="http://www.dzone.com" title="Developer's Zone">dzone</a> today, I stumbled on this <a href="http://www.dave-woods.co.uk/?p=158">3d button css tutorial by Dave Woods</a>.</p>
<p>Using some simple css and a little color know-how, he shows you how to turn a square button into a pseudo 3-dimensional button.  I&#8217;ll take it a step further and add a gradient background image to enhance the lighting effect.  Like this&#8230;<br />
<span id="more-79"></span><br />
<a class="button" href="http://www.web-cash-com">Web Cash</a></p>
<p>We can build this button up in a couple of steps.  First, we need to make our anchor tag (link) into a block &#8211; with some padding and a background.</p>
<p><a class='button2' href="http://www.earn-web-cash.com">Web Cash</a></p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;">a<span style="color: #6666ff;">.button</span> <span style="color: #00AA00;">&#123;</span>
   <span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#ab7f20</span><span style="color: #00AA00;">;</span>
   <span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span> <span style="color: #933;">.5em</span><span style="color: #00AA00;">;</span>
   <span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">white</span><span style="color: #00AA00;">;</span>
   <span style="color: #000000; font-weight: bold;">text-decoration</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">none</span><span style="color: #00AA00;">;</span>
   <span style="color: #000000; font-weight: bold;">font-weight</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">bold</span><span style="color: #00AA00;">;</span></pre></div></div>

<p>That gives us a nice, squarish look&#8230; kind of like a button.  But it definitely looks flat and two dimensional.  The next step we&#8217;re going to take is to add a gradient background.  This will add a nice lighting effect &#8211; giving the button a bit of depth.</p>
<p>To do this, we need a background image.  I made a gradient image in GIMP (read this <a href="http://www.earn-web-cash.com/2008/01/24/how-to-create-a-gradient-background-image-in-gimp/">tutorial to learn how to create a gradient image</a> like this).  Then we need to add the image to the css declaration by changing one line.</p>
<p><a class='button3' href="http://www.earn-web-cash.com">Web Cash</a></p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;">a<span style="color: #6666ff;">.button</span> <span style="color: #00AA00;">&#123;</span>
   <span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#ab7f20</span> <span style="color: #993333;">url</span><span style="color: #00AA00;">&#40;</span><span style="color: #ff0000; font-style: italic;">uploads/2008/01/gradient-button.thumbnail.png</span><span style="color: #00AA00;">&#41;</span>
     <span style="color: #993333;">repeat-x</span> <span style="color: #000000; font-weight: bold;">top</span><span style="color: #00AA00;">;</span></pre></div></div>

<p>Notice that the color (#ab7f20) is the same as the second color in the gradient image.  This gradient is long enough to color the whole area &#8211; but if our button gets too tall, we want it to blend in nicely.</p>
<p>The last thing we need to do is give it some borders &#8211; light on the top and dark on the bottom.  This will give it the illusion of being hit by the light.  It&#8217;ll also accentuate the effect of the gradient background image.</p>
<p><a class="button" href="http://www.web-cash-com">Web Cash</a></p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;">a<span style="color: #6666ff;">.button</span> <span style="color: #00AA00;">&#123;</span>
   <span style="color: #000000; font-weight: bold;">border-top</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#f6daa3</span> <span style="color: #933;">3px</span> <span style="color: #993333;">solid</span><span style="color: #00AA00;">;</span>
   <span style="color: #000000; font-weight: bold;">border-right</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#724f05</span> <span style="color: #933;">3px</span> <span style="color: #993333;">solid</span><span style="color: #00AA00;">;</span>
   <span style="color: #000000; font-weight: bold;">border-bottom</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#724f05</span> <span style="color: #933;">3px</span> <span style="color: #993333;">solid</span><span style="color: #00AA00;">;</span>
   <span style="color: #000000; font-weight: bold;">border-left</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#f6daa3</span> <span style="color: #933;">2px</span> <span style="color: #993333;">solid</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
&nbsp;
a<span style="color: #6666ff;">.button</span><span style="color: #3333ff;">:hover </span><span style="color: #00AA00;">&#123;</span>
   <span style="color: #000000; font-weight: bold;">border-top</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#724f05</span> <span style="color: #933;">3px</span> <span style="color: #993333;">solid</span><span style="color: #00AA00;">;</span>
   <span style="color: #000000; font-weight: bold;">border-right</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#f6daa3</span> <span style="color: #933;">2px</span> <span style="color: #993333;">solid</span><span style="color: #00AA00;">;</span>
   <span style="color: #000000; font-weight: bold;">border-bottom</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#f6daa3</span> <span style="color: #933;">2px</span> <span style="color: #993333;">solid</span><span style="color: #00AA00;">;</span>
   <span style="color: #000000; font-weight: bold;">border-left</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#724f05</span> <span style="color: #933;">3px</span> <span style="color: #993333;">solid</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>Notice that the background colors are flipped when you hover over the button.  This gives the illusion that you are actually &#8220;pressing&#8221; the button &#8211; just by flipping the way the lighting hits.</p>
<p>You could also use the special &#8220;inset&#8221; and &#8220;outset&#8221; border types to cut down on that last css declaration.  You lose a little control over the color and light placement, but it gives a pretty decent effect.  Like this&#8230;</p>
<p><a class="button" style="border: #ab7f20 3px outset;" href="http://www.web-cash-com">Web Cash</a></p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;">a<span style="color: #6666ff;">.button</span> <span style="color: #00AA00;">&#123;</span>
   <span style="color: #000000; font-weight: bold;">border</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#ab7f20</span> <span style="color: #933;">3px</span> <span style="color: #993333;">outset</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
&nbsp;
a<span style="color: #6666ff;">.button</span><span style="color: #3333ff;">:hover </span><span style="color: #00AA00;">&#123;</span>
   <span style="color: #000000; font-weight: bold;">border</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#ab7f20</span> <span style="color: #933;">3px</span> <span style="color: #993333;">inset</span><span style="color: #00AA00;">;</span><span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>And that&#8217;s all there is to it.  Change the colors to your liking, add a custom gradient image, and you&#8217;ve got a nifty little 3 dimensional button.</p>
<p>All it takes is some css.  No need to create a bunch of fancy images, and it&#8217;s easily expandable to accommodate the text inside of your button.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.earn-web-cash.com/2008/01/28/3d-button-gradient/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Write Articles at Associated Content for Links and Traffic</title>
		<link>http://www.earn-web-cash.com/2008/01/26/ac-backlinks-traffic/</link>
		<comments>http://www.earn-web-cash.com/2008/01/26/ac-backlinks-traffic/#comments</comments>
		<pubDate>Sat, 26 Jan 2008 14:15:57 +0000</pubDate>
		<dc:creator>Walkere</dc:creator>
				<category><![CDATA[Sundry Musings]]></category>
		<category><![CDATA[Traffic]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Writing]]></category>
		<category><![CDATA[Advertising]]></category>
		<category><![CDATA[Article]]></category>
		<category><![CDATA[backlink]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[promotion]]></category>
		<category><![CDATA[Publish]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.earn-web-cash.com/2008/01/26/ac-backlinks-traffic/</guid>
		<description><![CDATA[You may have stumbled upon the section on writing for Associated Content &#8211; for money. But even if you&#8217;re not interested in being published on someone else&#8217;s site, AC can be a great tool for you as a webmaster. You can use it to get optimized backlinks and targeted traffic. If you&#8217;re not familiar with [...]]]></description>
			<content:encoded><![CDATA[<p>You may have stumbled upon the section on writing for <a href="http://www.earn-web-cash.com/writing-on-the-internet-where-to-earn-money/associated-content-what-is-it/" title="Associated Content - What Is It?">Associated Content &#8211; for money</a>.  </p>
<p>But even if you&#8217;re not interested in being published on someone else&#8217;s site, <a href="http://www.associatedcontent.com/join.html?refer=40409" title="Join Associated Content!">AC</a> can be a great tool for you as a webmaster.  You can use it to get optimized backlinks and targeted traffic.<br />
<span id="more-68"></span><br />
If you&#8217;re not familiar with AC, here&#8217;s a quick rundown of how it works.  You write an article which you can either submit for up front payment (in which you get paid ~3-8 bucks if they like it) or you can bypass the review process and get published immediately (without upfront payment).</p>
<p>Either way, once your article is published you earn a revenue share (Performance Payment, $1.50 per 1000 page views).  The good thing about skipping the up front payment is you can post articles that advertise your site &#8211; without it getting reviewed and picked over.</p>
<p>Although most of my AC articles are strictly for content, I have created a few as an experiment for gaining backlinks and traffic.  Here&#8217;s what I typically do.</p>
<p>I identify a topic on one of my sites that I&#8217;ve written a few articles on (3-4).  Then I write a brief &#8220;Guide&#8221; article that gives the reader an overview of the topic.  I dedicate one to two paragraphs to the sub-topics that each of my pages targets, and I include a link to my content page so that the reader can get more information.</p>
<p>You can see an example with this <a href="http://associatedcontent.com/article/552309/three_types_of_graphic_organizers_to.html">article on graphic organizers</a>.  It targets three content pages that I wrote on my other website (<a href="http://www.teachbabel.com">Babel</a>).  It also gives the user some useful information.</p>
<p>I originally tried this strictly as a method to gain backlinks.  On that grounds, it definitely worked.  I included four links to my site &#8211; one to the front page and three to individual content pages.  They were indexed quickly and picked up by the search engines.</p>
<p><a href='http://www.earn-web-cash.com/wp-content/uploads/2008/01/babel-google-analytics.png' title='Picture of Google Analytics Stats for Babel' target='_blank'><img class="alignright" src='http://www.earn-web-cash.com/wp-content/uploads/2008/01/babel-google-analytics.thumbnail.png' alt='Picture of Google Analytics Stats for Babel' /></a>The unintended consequence of this is that it directed a bit of traffic to my site, too.  It&#8217;s by no means a vast amount of traffic, but every little bit counts.  In the past week, that article sent 21 visits to my site &#8211; a couple of visits per day (see the Google Analytics screenshot).</p>
<p>Doesn&#8217;t sound like a lot, but consider this.  If you write ten guide articles that get an average of ten click throughs per week &#8211; that&#8217;s another 400 visits per month.  On top of that, you&#8217;ll get 30-40 backlinks with keywords that <em>you</em> chose to best benefit your site.</p>
<p>This seems like a great tool for promoting your site &#8211; especially a relatively new site.  You can get optimized backlinks, you can drive some traffic, and you even get income from Associated Content if people do read your article.</p>
<p>Get paid for advertising your own site?  I don&#8217;t think it gets any better than that.  Go sign up for <a href="http://www.associatedcontent.com/join.html?refer=40409">Associated Content</a> and write a few stump articles yourself.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.earn-web-cash.com/2008/01/26/ac-backlinks-traffic/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Five Non-Traditional Ways to Use Tooltips</title>
		<link>http://www.earn-web-cash.com/2008/01/20/five-ways-tooltips/</link>
		<comments>http://www.earn-web-cash.com/2008/01/20/five-ways-tooltips/#comments</comments>
		<pubDate>Sun, 20 Jan 2008 12:01:53 +0000</pubDate>
		<dc:creator>Walkere</dc:creator>
				<category><![CDATA[Sundry Musings]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[anchor]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[tooltip]]></category>

		<guid isPermaLink="false">http://www.earn-web-cash.com/2008/01/20/five-ways-tooltips/</guid>
		<description><![CDATA[In standard HTML, tooltips seem to be reserved for anchor tags &#8211; i.e. links. They get the all-powerful &#8220;title&#8221; attribute which is turned into a tooltip. There are plenty of other times that you&#8217;d want to use a tooltip, though. If you&#8217;re wondering how, check out this previous post on how to create a custom [...]]]></description>
			<content:encoded><![CDATA[<p>In standard HTML, tooltips seem to be reserved for anchor tags &#8211; i.e. links.  They get the all-powerful &#8220;title&#8221; attribute which is turned into a tooltip.</p>
<p>There are plenty of other times that you&#8217;d want to use a tooltip, though.  If you&#8217;re wondering how, check out this previous post on <a href="http://www.earn-web-cash.com/2008/01/19/create-css-tooltips/">how to create a custom tooltip with css</a>.</p>
<p>Otherwise, read on for some thoughts on <em>when</em> to use these tooltips.<br />
<span id="more-47"></span></p>
<h5>5. Definitions of Words</h5>
<p>One interesting way to use custom tooltips is to show the definition of a word.  This would be great for educational sites that aim to teach their users about a given subject.  Rather than link to a new page with information on a word, just include a brief explanation in a tooltip.</p>
<p>Likewise, this could be used on coding tutorial sites to pop-up information on built-in functions and such.  Hmm&#8230; do I smell a useful WordPress plug-in?</p>
<h5>4. Movie/Book/Television Spoilers</h5>
<p>Do you write about movies, books, or tv shows?  Well, I don&#8217;t.  But if you did&#8230; you might want to share spoilers and other information with your users.</p>
<p>The problem is that not all users <em>want</em> to have the ending spoiled for them.  I saw a similar thing used in a forum &#8211; all spoilers had to be wrapped in a bb-code tag that made them invisible until you moused-over them.</p>
<p>This way users can choose whether or not to learn the ending of the story.  If you leave it out on the screen, they might read it by accident and blame you for ruining the whole thing.</p>
<h5>3. Citations and Source Quotes</h5>
<p>Do you find yourself quoting other sources often?  Maybe your blog is a bit on the literary or academic side?</p>
<p>You could use these tooltips to contain footnoting and citation information.  Rather than clicking a link to go to the bottom of the screen (i.e. Wikipedia style), have the information pop-up on a tooltip.</p>
<p>I know that when I&#8217;m reading a book I&#8217;m far more likely to pay attention to footnotes that are on the same page than footnotes at the end of the chapter or book.  Convenience is key.</p>
<h5>2.  Puzzle or Logic Game Tips</h5>
<p>Do you have some kind of puzzle, quiz, or game on your website?  People love a challenge&#8230; but they hate a game that&#8217;s too hard.</p>
<p>The solution, of course, is to offer the user hints.  These can&#8217;t be readily visible, though, or it&#8217;ll spoil the game.</p>
<p>With the tooltip, the user can easily mouse-over some text that says &#8220;First Tip,&#8221; to get a little hint without opening up a new window.  Convenient indeed.</p>
<h5>1.  Instructions and Information for Forms</h5>
<p>I&#8217;m not a big fan of extra text hanging out on a form telling a user what to do.  It seems to get in the way and detract from the look of the form.</p>
<p>Instead, use a tooltip over the label (or add a &#8220;?&#8221; for the tooltip) to tell the user what to enter in a field.  That way you can include lots of information &#8211; so much that you might find it to be over-simplifying &#8211; and the user won&#8217;t have to read this &#8220;help&#8221; unless they actually need it.</p>
<p>You help the confused users without turning off the savvy ones.</p>
<h5>What Else?</h5>
<p>I&#8217;m sure there are dozens of other ways to use custom tooltips.  Got some ideas?</p>
<p>Then leave a comment.  I&#8217;d love to hear how you&#8217;d use them.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.earn-web-cash.com/2008/01/20/five-ways-tooltips/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Good-Tutorials.com: Niche Article Sites to Help Increase Traffic</title>
		<link>http://www.earn-web-cash.com/2008/01/18/good-tutorialscom-niche-article-sites-to-help-increase-traffic/</link>
		<comments>http://www.earn-web-cash.com/2008/01/18/good-tutorialscom-niche-article-sites-to-help-increase-traffic/#comments</comments>
		<pubDate>Sat, 19 Jan 2008 01:18:00 +0000</pubDate>
		<dc:creator>Walkere</dc:creator>
				<category><![CDATA[Redirected]]></category>
		<category><![CDATA[Traffic]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Article]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[Submit]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[Writing]]></category>

		<guid isPermaLink="false">http://www.earn-web-cash.com/2008/01/18/good-tutorialscom-niche-article-sites-to-help-increase-traffic/</guid>
		<description><![CDATA[This site is fairly new. Ok, it&#8217;s really new. So, naturally, I&#8217;ve been looking for ways to increase backlinks, search engine visibility, and traffic. I&#8217;ve tried out a few methods, with varying success. What has worked really well, so far, is submitting an article to a niche site: Good Tutorials. People often advise you to [...]]]></description>
			<content:encoded><![CDATA[<p>This site is fairly new.  Ok, it&#8217;s really new.  So, naturally, I&#8217;ve been looking for ways to increase backlinks, search engine visibility, and traffic.</p>
<p>I&#8217;ve tried out a few methods, with varying success.  What has worked really well, so far, is submitting an article to a niche site: <a href="http://www.good-tutorials.com">Good Tutorials</a>.<br />
<span id="more-42"></span><br />
People often advise you to submit your articles to social networking and article sites.  Often times this will get you a few backlinks and little to no traffic.</p>
<p>I stumbled on Good Tutorials when I was looking for some information on a different topic.  After browsing around the site, I noticed that they take and review submissions of tutorials for inclusion in the directory.  I thought what the hell, let me try it out.</p>
<p>I submitted the tutorial I wrote about <a href="http://www.earn-web-cash.com/2008/01/08/how-to-write-a-php-script-to-send-a-trackback/">creating a php script to send trackbacks</a>.  After signing up and submitting the tutorial, they told me it would take one to two days to be reviewed.</p>
<p>I never got an e-mail back confirming that my tutorial had been accepted or not.  I forgot about it for a couple of days &#8211; kind of busy at work.  Then, today, I logged in to see what the status was.</p>
<p>My tutorial had been accepted two days ago.  In that time frame, it got 95 clicks.  I logged into Google Analytics, and sure enough there was a big jump in traffic.  Good Tutorials had sent me approximately 90 visits, and some of those people had looked around the site at other entries and articles.</p>
<p>I also noticed a bit of traffic coming from another new site &#8211; <a href="http://www.tutsbuzz.com">Tuts Buzz</a>.  I checked it out and it was another tutorial directory.  A link to my tutorial had shown up there as well, probably from Good Tutorial&#8217;s feed.</p>
<p>Whether or not I&#8217;ll continue to get substantial traffic from these sites, I don&#8217;t know.  It may be that I&#8217;m getting some click throughs because my tutorial is on the &#8220;Newest Tutorials&#8221; list.  Maybe it&#8217;ll drop off to nothingness when it just becomes a filed away tutorial.</p>
<p>However, it definitely seems to be a worthwhile way to get some traffic.  Unlike a lot of article sites &#8211; that send you a few low PR backlinks and no traffic &#8211; I got a real measurable increase in traffic.</p>
<p>So, if you write any tutorials on coding, software, or technology &#8211; head over to <a href="http://www.good-tutorials.com">Good Tutorials</a> and see about getting your own listing.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.earn-web-cash.com/2008/01/18/good-tutorialscom-niche-article-sites-to-help-increase-traffic/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Why Don&#8217;t My Images Appear in My HTML E-mail?</title>
		<link>http://www.earn-web-cash.com/2008/01/16/why-dont-my-images-appear-in-my-html-e-mail/</link>
		<comments>http://www.earn-web-cash.com/2008/01/16/why-dont-my-images-appear-in-my-html-e-mail/#comments</comments>
		<pubDate>Wed, 16 Jan 2008 22:33:55 +0000</pubDate>
		<dc:creator>Walkere</dc:creator>
				<category><![CDATA[HTML Tutorials]]></category>
		<category><![CDATA[Redirected]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[e-mail]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[link]]></category>

		<guid isPermaLink="false">http://www.earn-web-cash.com/2008/01/16/why-dont-my-images-appear-in-my-html-e-mail/</guid>
		<description><![CDATA[I was browsing around the PHP forum on Daniweb and came across this problem in a post. Here&#8217;s the situation. The guy wanted to send out a newsletter, so he grabbed a pre-fabbed newsletter script. The PHP script seemed to work fine &#8211; it read an HTML template and then fired off the e-mail in [...]]]></description>
			<content:encoded><![CDATA[<p>I was browsing around the PHP forum on Daniweb and came across <a href="http://www.daniweb.com/forums/thread104769.html">this problem in a post</a>.</p>
<p>Here&#8217;s the situation.</p>
<p>The guy wanted to send out a newsletter, so he grabbed a pre-fabbed newsletter script.  The PHP script seemed to work fine &#8211; it read an HTML template and then fired off the e-mail in HTML form.</p>
<p>There was just one problem: none of the images were appearing in the HTML e-mail when he tried to view it.<br />
<span id="more-41"></span><br />
What was the culprit?  The PHP script?  Or simply some faulty HTML?</p>
<p>It turns out the PHP script was working just as intended.  If you view his post, you can get a copy of the source code.  I haven&#8217;t tested it, but he claims it worked fine.</p>
<p>The problem was a simple mistake in HTML coding.</p>
<p>When the img tags were declared, the src attribute was set with a <strong>relative url</strong>  instead of an <strong>absolute url</strong>.</p>
<p>What&#8217;s the difference?</p>
<p>A <strong>relative url</strong> tells the browser the path to a file from the current file&#8217;s directory location.  So, for example, let&#8217;s say I have a file &#8220;index.html&#8221; and a file &#8220;guide.html&#8221; inside the directory &#8220;web-design-guides&#8221; on the domain &#8220;http://www.earn-web-cash.com.&#8221;</p>
<p>If I want to create a link from &#8220;index.html&#8221; to &#8220;guide.html&#8221; using a relative url, I simply use this tag&#8230;</p>
<p><code>
<pre>&lt;a href="guide.html"&gt;Guide.html&lt;/a&gt;</pre>
<p></code></p>
<p>That tells the browser to look inside the same directory for the file &#8220;guide.html.&#8221;</p>
<p>A <strong>absolute url</strong> defines the absolute path to a file.  In the same example, we&#8217;d have to include in the href the domain, the directory, and the file name, like so&#8230;</p>
<p><code>
<pre>&lt;a href="http://www.earn-web-cash.com/
  web-design-guides/guide.html"&gt;Guide.html&lt;/a&gt;</pre>
<p></code></p>
<p>The advantage of relative URLs is that they&#8217;re quick to type and they make webpages easily portable.  If all of my links are relative and I move the entire site to a new server, I don&#8217;t have to edit anything.</p>
<p>If I had used absolute urls, I would have had to change the domain name in every anchor tag.  The advantage of absolute urls, though, is that they can be accessed no matter where the page is accessed.</p>
<p>So, for example, if I turn the webpage into an e-mail (or if it&#8217;s read in an rss reader), the absolute url is still valid.  If I use a relative url in an html e-mail, the reader&#8217;s browser won&#8217;t be able to find the file &#8211; it will look in the directory that the e-mail script is running to find the file you&#8217;re linking to.</p>
<p>So what&#8217;s the lesson here?</p>
<p>If you&#8217;re writing HTML that is going to be displayed somewhere <strong>other</strong> than your server &#8211; i.e. in an e-mail, cached on someone&#8217;s hard drive, or on an rss reader &#8211; remember to always use absolute urls.</p>
<p>This is especially important for <code>&lt;img&gt;</code> tags &#8211; because they are almost always declared in regular pages as relative urls.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.earn-web-cash.com/2008/01/16/why-dont-my-images-appear-in-my-html-e-mail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

