<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">
<channel>
	<title>Side Income Blogging</title>
	
	<link>http://sideincomeblogging.com</link>
	<description>Earn income online, on the side</description>
	<lastBuildDate>Thu, 15 Mar 2012 12:08:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/SideIncomeBlogging" /><feedburner:info uri="sideincomeblogging" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>SideIncomeBlogging</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><feedburner:browserFriendly></feedburner:browserFriendly><item>
		<title>How put ads in the middle of your post content</title>
		<link>http://sideincomeblogging.com/how-put-ads-in-the-middle-of-your-post-content/</link>
		<comments>http://sideincomeblogging.com/how-put-ads-in-the-middle-of-your-post-content/#comments</comments>
		<pubDate>Thu, 15 Mar 2012 12:07:30 +0000</pubDate>
		<dc:creator>Larry</dc:creator>
				<category><![CDATA[Blogging Tips]]></category>
		<category><![CDATA[Thesis Tips]]></category>
		<guid isPermaLink="false">http://sideincomeblogging.com/?p=285</guid>
		<description><![CDATA[I recently did a site design and build for a client who had a special request: He wanted to put ads in in the middle of his page content.  Generally my clients ask for ad blocks to be inserted, but they&#8217;ve always wanted them either at the top or at the bottom of a post [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://sideincomeblogging.com/how-put-ads-in-the-middle-of-your-post-content/" title="Permanent link to How put ads in the middle of your post content"><img class="post_image aligncenter" src="http://sideincomeblogging.com/wp-content/uploads/in-the-middle.jpg" width="600" height="200" alt="In the middle" /></a>
</p>
<p>I recently did a site design and build for a client who had a special request: He wanted to put ads in in the middle of his page content.  Generally my clients ask for ad blocks to be inserted, but they&#8217;ve always wanted them either at the top or at the bottom of a post or page.  Placing an ad block at the top or bottom of a page is easy, placing an ad block in the middle, automatically, is a bit more challenging and requires some special coding.</p>
<h3>How to put ads in the middle of your page content</h3>
<p>While I&#8217;m sure the code I&#8217;m about to share with you would work with a few changes on any theme, the code as a whole is specific to the <a href="/thesis">Thesis</a> theme.</p>
<p>The easiest way to insert an ad block into the middle of your post or page is to just manually insert it.  This is easily done using the WordPress editor, and literally takes all of a few seconds.  That is not what we&#8217;re addressing here.  The code below will automatically insert an ad close to the middle of your article on every single post automatically.  Slick huh?</p>
<h3>Code for ads in the middle of page content</h3>
<p>Here&#8217;s the code:</p>
<pre class="qoate-code">
/**
* Insert ads in the middle of a post - after 3rd paragraph
*/
function inject_ad_text_after_n_chars($content) {
$enable_length = 1500;
$after_character = 1000;
if (is_single() &amp;&amp; strlen($content) &gt; $enable_length) {
$before_content = substr($content, 0, $after_character);
$after_content = substr($content, $after_character);
$after_content = explode('&lt;/p&gt;', $after_content);
array_splice($after_content, 1, 0, wp_ozh_wsa("AdSense-MidParagraph",false));
$after_content = implode('&lt;/p&gt;', $after_content);
return $before_content . $after_content;
} else {
return $content;
}
}
add_filter('the_content', 'inject_ad_text_after_n_chars');
</pre>
<h3>How the code works</h3>
<ul>
<li>The code first determines if the current page is a single post page or not, if not the ad won&#8217;t be shown.  It then determines if the post is more than $enable_length characters long, if not the ad won&#8217;t be shown.</li>
<li>The code then gets all of the post text up to position 1000 ($after_character) and all of the rest after this character position.  The first part is stored in before_content the rest in after_content.</li>
<li>The next line (explode(&#8216;&lt;/p&gt;&#8217;, $after_content)) basically breaks the after_content sections using the paragraph tags.</li>
<li>Next, an array_splice is done to place the ad code right after the first &lt;/p&gt; tag found.  This is done so that the ad is placed between paragraphs &#8211; meaning the ad won&#8217;t be placed at exactly $after_character, but at the end of the paragraph end tag following $after_character.</li>
<li>Note the ad code is: wp_ozh_wsa(&#8220;AdSense-MidParagraph&#8221;,false).  This particular example uses a plugin called <a href="http://sideincomeblogging.com/monetize-your-blog-adsense/">Who Sees Ads</a>.</li>
<li>The $before_content is then concatenated with $after_content and returned.</li>
</ul>
<div>The code above should be placed into your Thesis custom_functions.php file and Who See Ads configured to include the ad code you want to show.  This particular strategy of placing ads inside of your content is particularly effective with Google Adsense.</div>
<div></div>
<div>Let me know how this works for you and if you have any questions or problems using the code by adding a comment below!</div>
<p>Photo by: <strong id="yui_3_4_0_3_1331813132638_1800"><a href="http://www.flickr.com/photos/deks/3618803169/">christopher.woo</a></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://sideincomeblogging.com/how-put-ads-in-the-middle-of-your-post-content/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>August Side Income Report</title>
		<link>http://sideincomeblogging.com/august-side-income-report/</link>
		<comments>http://sideincomeblogging.com/august-side-income-report/#comments</comments>
		<pubDate>Wed, 14 Sep 2011 11:57:45 +0000</pubDate>
		<dc:creator>Larry</dc:creator>
				<category><![CDATA[Side Income Reports]]></category>
		<guid isPermaLink="false">http://sideincomeblogging.com/?p=279</guid>
		<description><![CDATA[While I would love for this post to be another &#8220;best month ever&#8221; update, unfortunately it&#8217;s not.  In early August, I shared with you that the traffic to one of main income generating niche stores plummeted.  Here&#8217;s a screenshot of site visits from Google Analytics from the end of July to early August, the sudden [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://sideincomeblogging.com/august-side-income-report/" title="Permanent link to August Side Income Report"><img class="post_image aligncenter" src="http://sideincomeblogging.com/wp-content/uploads/panda.jpg" width="600" height="196" alt="Panda" /></a>
</p>
<p>While I would love for this post to be another &#8220;best month ever&#8221; update, unfortunately it&#8217;s not.  In early August, I shared with you that the traffic to one of main income generating <a href="http://sideincomeblogging.com/importance-of-links/">niche stores plummeted</a>.  Here&#8217;s a screenshot of site visits from Google Analytics from the end of July to early August, the sudden drop is obvious:</p>
<p><a href="http://sideincomeblogging.com/wp-content/uploads/sib-traffic.jpg"><img class="aligncenter size-full wp-image-280" title="Side Income Blogging Traffic Drop" src="http://sideincomeblogging.com/wp-content/uploads/sib-traffic.jpg" alt="Side Income Blogging Traffic Drop" width="600" height="125" /></a></p>
<p>&nbsp;</p>
<p>As you&#8217;ll see below, this significant drop in traffic, about an 80% decrease, had a huge negative impact on my niche store income.  My eBay Partner Network and Adsense income went from around  $1000/month to about $150/month.  Huge hit.  Fortunately in August, I had a good bit of development and design work from my <a title="Web Designer and Developer" href="http://emptycabinmedia.com">Empty Cabin Media</a> business.</p>
<p>Why the sudden drop?  Well, to be honest, I&#8217;m not exactly sure.  I think it&#8217;s a combination of a few things: 1) The <a href="http://searchengineland.com/google-rolls-out-its-panda-update-internationally-and-begins-incorporating-searcher-blocking-data-72497">Google Panda Updates</a> 2) My niche site is summer sports related, and with fall coming, traffic declined.  3) A site with a fairly high page rank had a number of back links to me, this site suddenly disappeared and with it, all of my back links.</p>
<p>I&#8217;d be lying if I told you I wasn&#8217;t miffed about this.  Perhaps I don&#8217;t have the right perspective, but I think my site provided value and had a good mix of text and image content.  Frankly, it looked much like any other normal online store.  What I think (and I stress think as there is no way to be sure) is that Google dinged affiliate stores.  Affiliate stores being stores that promote other people&#8217;s products.  In my case, that was eBay.  But, regardless of whether I think it&#8217;s fair or not, Google controls the internet and thus the traffic sent to our sites.  As a result, I really can&#8217;t do much other than move forward.</p>
<h3>Income</h3>
<p>eBay Partner Network (Niche Stores) – $127.56</p>
<p>Adsense – $56.75</p>
<p>Affiliates – $67.51</p>
<p>Consulting/Hosting (Empty Cabin Media) – $1547.50</p>
<p><strong>Total June Income: $1799.32</strong></p>
<h3><strong>Expenses:</strong></h3>
<p><a href="https://emptycabinmedia.freshbooks.com/refer/www">Freshbooks</a> (used for invoicing for my consulting work) – $24.48</p>
<p><a href="http://sideincomeblogging.com/mediatemple">Media Temple</a> (hosting) – $82.00</p>
<p>iPad AT&amp;T Data Service  - $14.99</p>
<p><a href="/mydomain">MyDomain</a> Domain Registrations: $50.82</p>
<p><a href="/backup-buddy">Backup Buddy</a> Developer&#8217;s Suite (my blog backup package of choice): $112.50</p>
<p><strong>Total Expenses: $284.79</strong></p>
<h3><strong>Net Income: (Income – Expenses): $1514.53</strong></h3>
<p>Certainly not a bad income by any means, just frustrating that it could have been higher.  I do expect my Empty Cabin Media business to slow down starting in September through the end of the year based on past years experience.  People&#8217;s budgets are being reached, and spending gets reduced in preparation for Christmas.  I think my September earnings will show the real negative impact of my niche store earnings.</p>
<p>As I said though, I&#8217;m moving forward.  I&#8217;m building a new niche site and rather than being product focused, it will be content focused offering products as a supplement to the content, rather than the content being a supplement to the products.  I&#8217;ll be writing about this more in the coming weeks.  I&#8217;ll also be doing my best to focus on writing more here on Side Income Blogging and marketing myself a little more to keep my <a href="http://www.emptycabinmedia.com">Empty Cabin Media</a> income up.  I&#8217;m not alarmed, just frustrated.</p>
<p><em>For those of you more experienced, any perspectives on this sudden drop?  Have you seen similar things on your sites?  Have a question about anything?  Add a comment below and ask away!</em></p>
<p>Photo by: <a href="http://www.flickr.com/photos/kevinamcgill/4204078161/">kevinamcgill</a></p>
]]></content:encoded>
			<wfw:commentRss>http://sideincomeblogging.com/august-side-income-report/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Monetize your blog with Adsense</title>
		<link>http://sideincomeblogging.com/monetize-your-blog-adsense/</link>
		<comments>http://sideincomeblogging.com/monetize-your-blog-adsense/#comments</comments>
		<pubDate>Mon, 12 Sep 2011 12:07:05 +0000</pubDate>
		<dc:creator>Larry</dc:creator>
				<category><![CDATA[Blogging Tips]]></category>
		<category><![CDATA[Start a money making blog]]></category>
		<guid isPermaLink="false">http://sideincomeblogging.com/?p=275</guid>
		<description><![CDATA[If you&#8217;ve been following my Start a money making blog series, together we have: set-up your blog, consistently published content, and worked to increase your traffic.  If you&#8217;re averaging more than 100 visits per day, it&#8217;s time to consider placing some advertising on your blog so you can begin earning that side income we&#8217;ve been talking [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://sideincomeblogging.com/monetize-your-blog-adsense/" title="Permanent link to Monetize your blog with Adsense"><img class="post_image aligncenter" src="http://sideincomeblogging.com/wp-content/uploads/cash.jpg" width="600" height="200" alt="Cash" /></a>
</p>
<p>If you&#8217;ve been following my <a href="http://sideincomeblogging.com/start-a-money-making-blog/">Start a money making blog series</a>, together we have: set-up your blog, consistently published content, and worked to increase your traffic.  If you&#8217;re averaging more than 100 visits per day, it&#8217;s time to consider placing some advertising on your blog so you can begin earning that side income we&#8217;ve been talking about!</p>
<p>A great way to start monetizing your blog is with <a href="http://adsense.google.com">Google Adsense</a>.  Adsense is an advertising network run by Google and allows publishers (that&#8217;s you) to display text, image, and rich media ads on your blog.  What makes Google Adsense so slick, is that the ads are automatically targeted at your site&#8217;s content.  Adding Adsense ads to your site is also easy: all you have to do is add some script where you want the ad to be shown or use one of the many available WordPress plugins.</p>
<p>Here&#8217;s the catch: <em>Optimization and placement of your ads is <span style="text-decoration: underline;">key</span> to how well your ads will perform</em>.  One of the biggest mistakes new and inexperienced bloggers make is just slapping Adsense ads on their blog, without giving consideration to who should see them, where they should be placed, what size should be used and how they should look.  No need to be concerned, I&#8217;ll help you through all of that.</p>
<h3> How to make a Google Adsense Account</h3>
<p>The first thing you&#8217;ll need to do is sign-up for Google Adsense.  To sign up:</p>
<ol>
<li>Visit the <a href="http://adsense.google.com">Google Adsense Page</a>.</li>
<li>Click on the <strong>Sign-up now</strong> button.</li>
<li>Complete all of the required information, paying particular attention to your website address.  Make sure this is correct.  This URL cannot contain anything that violates the <a href="https://www.google.com/support/adsense/bin/topic.py?hl=en&amp;topic=8423">program policies</a>.  Press submit when you&#8217;re done.</li>
<li>Next you&#8217;ll either link your existing Google Account or you&#8217;ll create a new one.</li>
<li>The final page will display a summary of the information you&#8217;ve submitted and ask that you confirm.</li>
</ol>
<div>That&#8217;s it.  Your Adsense account request has now been submitted and you&#8217;ll need to wait for your site to be approved.  This process takes anywhere from a day to a week, depending on how many requests Google has at the time.  You&#8217;ll receive an email from Google notifying you once you&#8217;ve been approved.</div>
<div>In the rare instance that you are not approved, the email from Google will contain information on why and how to resubmit your site.  The most common reason for a decline is due to content.  Google reviews your content closely, and will not approve a site that doesn&#8217;t meet it&#8217;s guidelines.   If this happens, you&#8217;ll just have to resolve the issue and resubmit your site.</div>
<h3>Adsense Placement</h3>
<p>One of the key factors to success with Adsense is the placement of ads.  The following diagram from the <a href="http://www.google.com/adsense/support/bin/answer.py?answer=17954">Google Help</a> pages shows optimal placement using a heat map (dark orange &#8211; strongest performance, light yellow &#8211; weakest performance):</p>
<p><a href="http://sideincomeblogging.com/wp-content/uploads/adsense_placement.jpg"><img class="aligncenter size-full wp-image-277" title="Adsense Placement Heatmap" src="http://sideincomeblogging.com/wp-content/uploads/adsense_placement.jpg" alt="" width="576" height="767" /></a></p>
<p>Note a few things:</p>
<ul>
<li>Adsense does better below your nav bar &#8211; not above</li>
<li>The closer Adsense is to your content, the better it performs.  The best placement is right above your content</li>
<li>If you have a 3 column theme with a left side column, Adsense does well placed in this left side column as well.</li>
</ul>
<div>In this article, we&#8217;ll focus on adding your Adsense ads just above your content.  For all of my sites, this has been the optimal position.  With that being said though, let me take a minute to address testing.  Each and every website is unique, and while you will see patterns with placement and performance, it is critically important test placement on your site.  By testing I mean play around with different placements and types of ads.  Track each ad&#8217;s performance and use that data for determining where to place your ads.  There is actually a way to show one ad to some set of your visitors and another ad to the rest.  This is called A/B Testing.  I&#8217;ll review how to do that in a future article.</div>
<h3>How to create your first Adsense ad</h3>
<p>Assuming your account has been approved, let&#8217;s jump in and create your very first Adsense ad.  As I mentioned, for this article we&#8217;ll create an ad above your content.  More specifically, we&#8217;ll create a 336&#215;280 (large square ad) and place it below your post title but before your content on each of your articles.  We&#8217;ll additionally only show this ad to search engine visitors.  I&#8217;ll explain why below.</p>
<p>To create your ad, do the following:</p>
<ol>
<li>Login to your <a href="http://adsense.google.com">Adsense</a> account.</li>
<li>Click on the <strong><em>My ads</em></strong> tab at the top.</li>
<li>Press the <strong><em>New ad unit</em></strong> button.  The new ad screen will appear prompting you for information about your new ad.</li>
<li>In the <strong>Name</strong> field, put a name for your ad.  I generally use the name of my blog, followed by the ad size.  For example: <em>Side Income Blogging &#8211; Large Square</em>.  The name really doesn&#8217;t matter, as long as it is meaningful to you.</li>
<li>In the Size field, select: <strong>336 x 280 &#8211; Large Rectangle</strong> (<em>this tends to be the best performing Adsense ad</em>)</li>
<li>For Ad type, use the default: <strong>Text &amp; Image / Rich Media Ads.  </strong>This will allow a combination of text, image and animated ads.</li>
<li>Custom Channels allow you to view and track detailed about your ads, so you&#8217;ll definitely want to use a channel.   To create a new custom channel, click on the <em><strong>Create new custom channel</strong></em> link.  In the pop-up, type a name for your channel and press Save.   The new channel will automatically be associated with your ad.</li>
<li><strong>Ad style/color Palette</strong> will allow you to select the colors for your ad.  Proper color selection is <em>critical</em> to good performance.  The ad should blend with your content and specifically with your link colors.  Here&#8217;s how to select your colors: <em><strong>Border</strong></em> &#8211; Use the same color as your background.  Generally this will be #FFFFFF (white), you don&#8217;t want a border to show.  <em><strong>Title</strong></em> &#8211; Same as your link color.  <em><strong>Background</strong></em> &#8211; Same color as Border.  <em><strong>Text</strong></em> &#8211; #CCCCCC.  <em><strong>URL</strong></em> &#8211; #cccccc.  Use the defaults for the remainder of the settings.  These colors are based on testing I&#8217;ve done and the experience of other bloggers I&#8217;ve talked with.</li>
<li>Click <em><strong>Save and get code</strong></em>.</li>
<li>Copy the ad code, and save it somewhere handy, as we&#8217;ll be using it shortly to show the ad on your site.</li>
</ol>
<p>Adsense performs very well for search engine visitors, and not well at all for normal visitors or readers of your site.  On my blogs, I focus on my readers as much as I can and I don&#8217;t generally like to show them ads, especially non-affiliate ads.  As a result, I only show Adsense ad to search engine visitors, meaning that only visitors coming from a search engine SERP (Search Engine Result Page) will see my Adsense ads.  Fortunately there is a really great plugin that takes care of this for us called: <a href="http://wordpress.org/extend/plugins/ozh-who-sees-ads/">Ozh&#8217; Who Sees Ads</a>.</p>
<p>Here&#8217;s how to set-up the Adsense ad we just created so that it is only shown to search engine visitors:</p>
<ol>
<li>If not already installed, install the <a href="http://wordpress.org/extend/plugins/ozh-who-sees-ads/">Ozh&#8217; Who Sees Ads</a> WordPress plugin and activate it.</li>
<li>Now let&#8217;s get it configured.   In your WordPress admin menu, navigate to <strong>Settings&gt;&gt;Who Sees Ads</strong>.  Who See Ads uses something called Contexts.  Context allow you to set-up rules around who will see your ads (or who won&#8217;t).  There are a number of rules available (in the Possible Rules section).</li>
<li>The first thing you&#8217;ll want to do is name the new context we&#8217;re creating.  Since we&#8217;re only showing our ads to search engine visitors, I&#8217;d suggest calling it something like <em>search-engine-only</em>.  Avoid using spaces, and use dashes instead, as it will make it easier to reference your name when we insert the Who Sees Ads code here in a bit.</li>
<li>Next, we&#8217;ll set-up the rule.  Drag the rule named: &#8220;If Visitor comes from a search engine display&#8221; to the <em>Active Rules </em>box.  This is generally the only rule I use, but you can add others.  For example, you may want to consider showing adsense on your older posts (usually your normal viewers won&#8217;t view older posts).  To do this, drag the rule named: &#8220;If Post is older than XX days then display&#8221;.  As you can see, there are many rules available, and I would encourage you to try out various rules to see what works best for you for earning revenue.</li>
<li>Remember earlier I told you to save off your Adsense code?  Time to pull it up, copy it and paste it into the box named &#8220;Ad Code&#8221;.</li>
<li>Click on <strong><em>Save Context</em></strong>.</li>
</ol>
<div>You&#8217;ve now created a context in Who Sees Ads that you can use to control whether your ads are seen or not.  Next, we&#8217;ll need to add a little code to call Who See Ads.  If the context evaluates to true, your ad code will be displayed, if not, it won&#8217;t.  The code below is for the <a href="/thesis">Thesis theme</a>, if you run a different theme, the way you add this code will vary.</div>
<p>If you&#8217;ll recall, we&#8217;ll be adding your Adsense ad below the post title, but before your post content.  To do this, we&#8217;ll insert some code into the Thesis hook named: <strong><em>thesis_hook_after_headline</em></strong>.  Open up your custom_functions.php file and insert the following code:</p>
<pre class="qoate-code">
&lt;pre&gt;/**
 * Insert Adsense
 */
function show_adsense() {
     if (is_single()) {&lt;/pre&gt;
&lt;pre&gt;             wp_ozh_wsa("search-engine-only");&lt;/pre&gt;
&lt;pre&gt;     }
}
add_action('thesis_hook_after_headline', 'show_adsense');&lt;/pre&gt;
</pre>
<p>Save your changes.  If you are running a caching plugin like W3 Total Cache or Super Cache, you&#8217;ll need to delete/purge your cache as well.</p>
<p>At this point, your blog should be showing Adsense ads on your single post pages only if a visitor arrives on your site from a search engine.  Adsense generally takes a few hours to get working, so I would suggest stopping at this point and working on something else for a few hours before proceeding.  I&#8217;d suggest reading a few articles from the <a href="http://sideincomeblogging.com/archives/">Side Income Blogging archives</a>, but that&#8217;s just me.</p>
<h3>Testing your Adsense code</h3>
<p>Assuming you&#8217;ve waiting a few hours, it&#8217;s time to test your changes and make sure everything is working.  Pick your post that ranks highest in the search engines (often the one that gets the most search engine traffic).  You can use <a href="http://analytics.google.com">Google Analytics</a> to determine this.  Make sure you are logged out of your WordPress administration console, then head over to Google, and search on the title of your post.  When you find it, click on it.  Since you came from a search engine, Who Sees Ads should recognize that, and at the top of your post you should see an Adsense Ad just below your post title and before your post content.</p>
<p>If you navigate to your blog then view the same post (without using Google), you should <strong>not</strong> see the ad.</p>
<p>If for some reason you don&#8217;t see an ad or see an error, double check the code above, and recheck your adsense ad settings.</p>
<h3>Tweaking your Adsense ad</h3>
<p>Let your adsense ad run for a few weeks and see how your performance does.  Make some notes, then try changing the colors or size of the ad.  To change the colors, all you have to do is go into your Adsense account, edit the ad and save it.  If you want to change sizes, you&#8217;ll need to edit the ad and re-paste the code into Who Sees Ads.</p>
<p>As I mentioned, I&#8217;ll discuss A/B testing in a future article, but it&#8217;s important to try different ad sizes and colors to see what performs the best for you.</p>
<p>&#8212;&#8211;</p>
<p>Long article, but hopefully it wasn&#8217;t too bad.  I do think a big congratulations are in order though for those of you following my Start a Money Making Blog series.  You started with a blank slate, built a website, wrote your content, grew your traffic and now took the first steps toward earning a side income.  That is a huge milestone!  So <span style="color: #ff0000;"><strong>Congratulations!!</strong></span>  Don&#8217;t stop though, continue writing and doing everything you can to grow your traffic.  Remember, the more traffic you have, the more income you make.</p>
<p>Stay tuned, as I&#8217;ll be addressing affiliate and private advertising soon.</p>
<p>Photo by: <a href="http://www.flickr.com/photos/dborman2/3290560161/">borman818</a></p>
]]></content:encoded>
			<wfw:commentRss>http://sideincomeblogging.com/monetize-your-blog-adsense/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Building traffic to your blog</title>
		<link>http://sideincomeblogging.com/building-traffic-blog/</link>
		<comments>http://sideincomeblogging.com/building-traffic-blog/#comments</comments>
		<pubDate>Mon, 29 Aug 2011 11:48:52 +0000</pubDate>
		<dc:creator>Larry</dc:creator>
				<category><![CDATA[Start a money making blog]]></category>
		<guid isPermaLink="false">http://sideincomeblogging.com/?p=271</guid>
		<description><![CDATA[In addition to continually writing on your blog to build up your content, you&#8217;ll want to begin building traffic to your blog as well.  Traffic will become the key ingredient in earning a side income from your blog.  The more traffic you get, the more visibility and click throughs your ads and affiliate offers will [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://sideincomeblogging.com/building-traffic-blog/" title="Permanent link to Building traffic to your blog"><img class="post_image aligncenter" src="http://sideincomeblogging.com/wp-content/uploads/traffic2-e1314618174380.jpg" width="600" height="246" alt="Blog Traffic" /></a>
</p>
<p>In addition to <a href="http://sideincomeblogging.com/finding-your-blogging-voice/">continually writing</a> on your blog to build up your content, you&#8217;ll want to begin building traffic to your blog as well.  Traffic will become the key ingredient in earning a side income from your blog.  The more traffic you get, the more visibility and click throughs your ads and affiliate offers will get.</p>
<p>I&#8217;ve already shared a number of <a href="http://sideincomeblogging.com/category/traffic-tips/">traffic tips</a> before here on Side Income Blogging and specifically <a href="http://sideincomeblogging.com/increase-your-blog-traffic-5-easy-ways/">some strategies</a> you should be doing from the very start.  Given that, I won&#8217;t drive into the details again, but here&#8217;s a summary of things you should be doing in the early stages of your blogging daily:</p>
<ol>
<li><strong>Comment on articles from other blogs in your niche</strong>, making sure that when you do, you include a link back to your blog.</li>
<li><strong>Be active on Social Media sites</strong> like &#8211; Facebook, Twitter, and Google+.  Social Media is becoming more and more critical in today&#8217;s blogging environment.  Use it to promote your articles but more importantly use it interact with others in your niche and your readers.</li>
<li><strong>Link out to other blogs and blog articles from your articles.</strong>  Not only will this help your search engine rankings, but it will help get you noticed by other bloggers, who in turn just may starting linking back to you.  This builds links to your site (giving it more credibility with Google) but can also drive new readers and traffic to your blog.</li>
<li><strong>Guest Post</strong> &#8211; <a href="http://sideincomeblogging.com/traffic-building-tuesday-tip-guest-post/">Guest posting</a> is when you write another article to be published on someone else&#8217;s blog.  Guest posting is a great way to get visibility and links to your site.  Absolutely something you should be trying to do.</li>
<li><strong>Be active in online forums</strong> &#8211; Find a forum in your blogs niche, register and beginning being active.  Don&#8217;t include a link to your blog initially, but do so after you&#8217;ve contributed and have gotten to know the members.</li>
<li><strong>Join or start a blog network</strong> &#8211; <a href="http://sideincomeblogging.com/blog-networks/">Blog networks</a> are a grouping of like bloggers who partner together to promote their blogs and help each other out.  I&#8217;m a huge advocate, especially for new bloggers just starting out.  Blog networks are a great way to meet people, learn about blogging, and grow your blog.</li>
</ol>
<h3>Income and Traffic</h3>
<p>I cannot emphasize enough the importance of traffic to blog revenue.  Click through rates on blog advertisements are relatively low and as a result in order to earn any reasonable amount of money, you generally have to have at least 100+ visitors a month.  Even then, your earnings will be low.</p>
<p>I recently worked with a client that wanted Adsense installed on their blog.  They were getting frustrated that their blog wasn&#8217;t earning them any money.  This particular client had a strong reader base, but their overall blog traffic is about 100 &#8211; 200 visitors per day.  A few weeks after adding Adsense, they asked that I remove it as it wasn&#8217;t earning anything.  I think they said that over a 4 week period, they had only earned about $4.00.  Now, in all fairness, the blog niche is not one easily monitized, so your specific income milage might vary some, but hopefully you get the idea: Low Traffic = Low Income.</p>
<h3>Get started</h3>
<p>If you aren&#8217;t actively doing things almost on a daily basis to grow traffic to your blog, get started today.  Trust me, I fully realize how constrained most people&#8217;s time is.  The trick is to block off a set amount of time to do nothing but build traffic.  This could be 15 minutes, 30 minutes or maybe even an hour.  While the time spent will equate to the amount of traffic received, even a small amount helps.  As you do this each day, you&#8217;ll slowly see your traffic build over time which I personally find very encouraging.  I&#8217;ve found that the more I see my traffic grow, the more encouraged I am to spend time traffic building.</p>
<p>photo by: <strong id="yui_3_4_0_3_1314617745223_1125"><a href="http://www.flickr.com/photos/zouny/4348302981/">Design By Zouny</a></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://sideincomeblogging.com/building-traffic-blog/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>The importance of diversity on your blog</title>
		<link>http://sideincomeblogging.com/diversity-blog/</link>
		<comments>http://sideincomeblogging.com/diversity-blog/#comments</comments>
		<pubDate>Mon, 15 Aug 2011 13:39:42 +0000</pubDate>
		<dc:creator>Larry</dc:creator>
				<category><![CDATA[Blogging Tips]]></category>
		<guid isPermaLink="false">http://sideincomeblogging.com/?p=269</guid>
		<description><![CDATA[When someone mentions diversity, two things generally come to mind: 1) Diversity as it pertains to corporations &#8211; who and how they hire and 2) Investment diversity.  I&#8217;m going to give you a third to consider: Diversity and your blog.  Diversity is defined simple as variety. Side income diversity as a whole I learned a [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://sideincomeblogging.com/diversity-blog/" title="Permanent link to The importance of diversity on your blog"><img class="post_image aligncenter" src="http://sideincomeblogging.com/wp-content/uploads/colors.jpg" width="600" height="200" alt="Colors" /></a>
</p>
<p>When someone mentions diversity, two things generally come to mind: 1) Diversity as it pertains to corporations &#8211; who and how they hire and 2) Investment diversity.  I&#8217;m going to give you a third to consider: <em><strong>Diversity and your blog</strong></em>.  Diversity is defined simple as variety.</p>
<h3>Side income diversity as a whole</h3>
<p>I learned a few years back that having all of your &#8220;income eggs&#8221; in one basket, just isn&#8217;t smart.  With the economy the way it is, and companies watching out for themselves, having only one income source that your livelihood depends on is risky to say the least.  You just may find yourself coming into work one day only to find out you&#8217;ve been laid off with no other income.  Not a good situation to be in.  While my side income certainly doesn&#8217;t match my primary income, it&#8217;s enough to pay the basic bills.</p>
<p>To diversify your side income, make sure that your income comes from as many diverse areas as possible: multiple websites, multiple topics, multiple advertisers, multiple sources, etc.  As an example, here are a few examples of how my side income (and it&#8217;s still not as diverse as I would like):</p>
<ul>
<li><a title="Website Development and Design" href="http://www.emptycabinmedia.com">Website Development and Design</a> through my Empty Cabin Media business</li>
<li>Blog consulting and hosting through my Empty Cabin Media business</li>
<li>eBay Niche sites</li>
<li>Adsense Niche sites</li>
<li>Blogs on various topics that include various forms of advertising</li>
<li>Paid writing on other websites or blogs.</li>
</ul>
<div>On all of these sites, I use a combination of Adsense, Affiliate offers, and eBay affiliate links.  I&#8217;ll soon be offering products in the form of eBooks and I&#8217;m researching offering some paid membership sites as well.</div>
<div>I&#8217;ve known all along that maining diverse and multiple sources of income on my blogs and websites was important, but I recently  got a nice little reminder.  For some reason the search engine traffic to one of my big income earning niche sites was hit hard.  As a result, my <a href="http://sideincomeblogging.com/importance-of-links/">eBay and Asense earnings plummeted</a>.  While my overall earnings will be negatively impacted, my other revenue sources are helping me to avoid losing my income all together.</div>
<h3>Blog Income Diversity</h3>
<p>The most common way people associate diversity with their blogs is through income diversity.  Income diversity is the concept of using different advertising and income earning opportunities all at the same time on your blog or website.  By doing so, your blog isn&#8217;t dependent on just one income stream, but many.  If one stream declines, perhaps others will pick up.</p>
<p>Monetizing with multiple income streams can not only increase your overall earnings, but can insulate you from the often unexplainable income declines from various sources, which as I referenced above can and do occur.  This is even more true as Google continues to tweak and modify their search engine algorithms.</p>
<p>In order to maintain income diversity on your blogs or websites, you have to utilize different sources of income.  Here are just a few examples of possible options:</p>
<ul>
<li><strong><a href="http://adsense.google.com">Google Adsense</a></strong> &#8211; Google Adsense performs very well for search engine traffic, especially if you&#8217;re getting a decent amount of it.  If you aren&#8217;t showing Adsense ads on your blog or website to your search engine visitors, you&#8217;re missing out.</li>
<li><strong>Affiliate Offers</strong> &#8211; Affiliate offers provide a way for you to promote a product to your readers and if the reader purchases the product, you earn money.  Generally this is either a % of the sale or a fixed amount.  Affiliate offers are commonly promoted via banners in your sidebar or above or below your posts.  A more effective strategy  though it to include them as text links in articles.  I often do this through review articles or product comparison articles.  These types of articles not only provide potential income for you, but value to your readers as well.</li>
<li><strong>Paid Advertising</strong> &#8211; As your blog grows and begins to get more traffic, advertisers will approach you to place ads on your site.  This is absolutely something you should consider.  Private advertising income can often become one of your main sources of income.  One word of caution: Beware of companies offering text link advertising.  While it can certainly generate a decent income stream, Google frowns heavily on paid text links.  As a result, if they detect your selling paid text links, Google can and will negatively impact your search engine traffic.</li>
<li><strong>Consulting</strong> &#8211; Once you establish yourself as an expert or authority in your niche, you can often provide consulting services to your readers.  I do that through my <a href="http://www.emptycabinmedia.com">Empty Cabin Media</a> business, but offering these services through your blog can work well too.  One of my friends and clients Christopher Foster recently started offering <a href="http://www.thehappyseeker.com/discover-the-joys-and-comfort-of-writing/">writing consulting</a> for bloggers.  What Chris is doing is a perfect example of what I&#8217;m referring to here.</li>
<li><strong>Speaking Engagements</strong> &#8211; Also, as your blog grows and you become a little more well known, you can often earn money from speaking engagements.  This can include: TV spots, radio spots, and speaking at conferences in your niche.  While not all of these are always paid engagements, some of them are.  Even the ones that aren&#8217;t can benefit your bottom line through increased traffic.</li>
</ul>
<h3>Writing Diversity</h3>
<p>Another key area where diversity plays an important role in your blog is writing, and specifically I mean your topics.  The concept here is to stay within your niche, but write on various topics within that niche.  For example, here on Side Income Blogging I write on: <a href="http://sideincomeblogging.com/category/thesis-tips/">Thesis Theme Tips</a>, <a href="http://sideincomeblogging.com/category/tips/">Blogging Tips</a>, and <a href="http://sideincomeblogging.com/category/traffic-tips/">Traffic Tips</a> just to name a few.  Keeping your topics varied but still honed in on your niche is key to keeping people coming back to your blog and key to rating successfully on Google for your various articles.  I mean who wants to come back to the same blog day after day just to read about the exact same thing?  Certainly not me.</p>
<p>In addition to writing on different topics, try different writing techniques as well.  Be controversial, tell a story, ask questions, take a stand on a topic, or even disagree with another blogger (and link to them).  All of these are ways to keep your articles interesting for your readers, and frankly make it more enjoyable for you when writing as well.</p>
<h3>Wrapping up</h3>
<p>I&#8217;m quit sure I&#8217;m just touching the surface of this topic, and am confident there are many other areas where diversity is an important aspect of your blog.  As you continue to write, build traffic and ad income earning opportunities, I would encourage you to focus on and think about diversity and look for opportunities as often as you can.</p>
<p><em>What are your thoughts on diversity in blogging?  Did I miss something?  Have you found an area where diversity is important?  If so, please add a comment and add value to the article!</em></p>
<p>photo by: <strong id="yui_3_3_0_3_13134150079391778"><a href="http://www.flickr.com/photos/nikonvscanon/">david.nikonvscanon</a></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://sideincomeblogging.com/diversity-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Importance of links – a real example</title>
		<link>http://sideincomeblogging.com/importance-of-links/</link>
		<comments>http://sideincomeblogging.com/importance-of-links/#comments</comments>
		<pubDate>Mon, 08 Aug 2011 14:00:35 +0000</pubDate>
		<dc:creator>Larry</dc:creator>
				<category><![CDATA[Traffic Tips]]></category>
		<guid isPermaLink="false">http://sideincomeblogging.com/?p=264</guid>
		<description><![CDATA[Most of us know the importance of links and link building when it comes to getting search engine traffic.  Incoming links to our blog or website from other credible websites are critically important to the ranking of your site on Google search engine result pages and on other search engines.  Personally, I&#8217;ve known this for [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://sideincomeblogging.com/importance-of-links/" title="Permanent link to Importance of links &#8211; a real example"><img class="post_image aligncenter" src="http://sideincomeblogging.com/wp-content/uploads/traffic-stopped.jpg" width="600" height="200" alt="Traffic Stopped" /></a>
</p>
<p>Most of us know the importance of links and link building when it comes to getting search engine traffic.  Incoming links to our blog or website from other credible websites are critically important to the ranking of your site on Google search engine result pages and on other search engines.  Personally, I&#8217;ve known this for some time and link building, while a constantly changing strategy has been a key focus for me on this blog and my niche stores.</p>
<p>While I knew the importance of links, I never really experienced first hand until this weekend.</p>
<h3>The impact of losing a valuable link</h3>
<p>I logged in on Saturday to check Google Analytics for my various websites.  I checked my number one niche store, as it has been the <a href="http://sideincomeblogging.com/july-side-income-report/">main income source</a> for for the past few months.  Right after I pulled it up, I said &#8220;WHAT?&#8221;  I noticed that I jumped from 400 visits on Thursday to 141 visits on Friday.  I tried to convince myself that maybe it was just one of those things where you&#8217;ll sometimes see unexplainable traffic hits.  I also wondered if maybe the Google Panda updates had negatively impacted me finally.  In any case I was shocked and confused.</p>
<p>Fortunately I have all of my sites registered in <a href="http://sideincomeblogging.com/register-blog-with-google/">Google Webmaster tools</a>, and headed over there to check things out, thinking maybe my site was down or something was messed up.  Everything looked fine.  I&#8217;m not really sure what caused me to do this, but I decided to check out the top 5 sites that had incoming links to me to see if they were up.  I pulled up the first one, the one with 63 incoming links: <em>Website is not available</em>.  What?  Ok, so maybe it&#8217;s just down.  I watched it all weekend and it&#8217;s still down.  I emailed the owner a couple of times, the email bounced back.</p>
<p>So far, it looks like the site doesn&#8217;t exist anymore, thus removing all 63 of my incoming links.  The site was a blog in a similar niche as my store.  The owner and I had done a link exchange sometime back.  I had no idea how important those links were to my search engine traffic.  Losing those links resulted in a 65% drop in search engine traffic to my site.  Here&#8217;s the screen shot from Google Analytics:</p>
<p><a href="http://sideincomeblogging.com/wp-content/uploads/Screen-shot-2011-08-08-at-7.54.36-AM.png"><img class="aligncenter size-full wp-image-265" title="Screen shot 2011-08-08 at 7.54.36 AM" src="http://sideincomeblogging.com/wp-content/uploads/Screen-shot-2011-08-08-at-7.54.36-AM.png" alt="" width="478" height="124" /></a></p>
<p>As I&#8217;ve told you before, search engine traffic is directly proportional to income and losing that much traffic from search engines definitely hit my bottom line.  This particular niche store&#8217;s primary income earner is eBay Partner network.  Here is the impact to my eBay sales:</p>
<p><a href="http://sideincomeblogging.com/wp-content/uploads/Screen-shot-2011-08-08-at-7.54.08-AM.png"><img class="aligncenter size-full wp-image-266" title="Screen shot 2011-08-08 at 7.54.08 AM" src="http://sideincomeblogging.com/wp-content/uploads/Screen-shot-2011-08-08-at-7.54.08-AM.png" alt="" width="563" height="338" /></a></p>
<p>The blue line is traffic, yellow line is earnings <img src='http://sideincomeblogging.com/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /> </p>
<h3>What to do when you lose a valuable link</h3>
<p>While I&#8217;m still pretty upset about losing the link, this is just an example of some of the hardships you have to deal with on the internet.  Google changes their search engine algorithms, keyword values fluctuate, links appear and disappear, etc, etc.  The trick is to just move on and adjust.  For me, I have to reclaim some of that link juice.  Here&#8217;s what I&#8217;ve done so far:</p>
<ol>
<li>Sent out a few emails to site owners introducing myself and seeing if they would interested in doing a link exchange.</li>
<li>Sent out some emails asking for <a href="http://sideincomeblogging.com/traffic-building-tuesday-tip-guest-post/">guest posts</a> along with sending a few ideas for topics I could write on and why I&#8217;m a credible source to do so.</li>
<li>I&#8217;ve been reading up on some of the newer strategies for link building and planning on implementing these soon.  I&#8217;ll share these with you along with my results.</li>
<li>I plan to write and publish more content on that niche stores blog, just in case part of this was a result of the panda changes.  In a nutshell, Panda is putting less focus on sites with low amounts of text content.</li>
</ol>
<div>The silver lining in the dark cloud of this is that this will be a really great case study to share with you on how to increase search engine traffic to your sites.  So stay tuned!</div>
<div>photo by: <a href="http://www.flickr.com/photos/fredodf/3095148685/">Fredo in (((Stereo)))</a></div>
]]></content:encoded>
			<wfw:commentRss>http://sideincomeblogging.com/importance-of-links/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>July Side Income Report</title>
		<link>http://sideincomeblogging.com/july-side-income-report/</link>
		<comments>http://sideincomeblogging.com/july-side-income-report/#comments</comments>
		<pubDate>Fri, 05 Aug 2011 11:02:57 +0000</pubDate>
		<dc:creator>Larry</dc:creator>
				<category><![CDATA[Popular]]></category>
		<category><![CDATA[Side Income Reports]]></category>
		<guid isPermaLink="false">http://sideincomeblogging.com/july-side-income-report/</guid>
		<description><![CDATA[Seems August is here along with preparations for school and football.  I have 6 kids so this time of year is always very busy (and expensive) for us.  We have to buy schools supplies and new clothes for our kids.  Additionally, all of my kids are involved in football.  Our 5 boys play football and [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://sideincomeblogging.com/july-side-income-report/" title="Permanent link to July Side Income Report"><img class="post_image aligncenter" src="http://sideincomeblogging.com/wp-content/uploads/footballview.jpg" width="600" height="200" alt="Sunset at the football field" /></a>
</p>
<p>Seems August is here along with preparations for school and football.  I have 6 kids so this time of year is always very busy (and expensive) for us.  We have to buy schools supplies and new clothes for our kids.  Additionally, all of my kids are involved in football.  Our 5 boys play football and our daughter is a cheerleader.  The picture above was taken from the high school football field during practice.  Beautiful huh?</p>
<p>Speaking of expenses, it&#8217;s time for another <a href="http://sideincomeblogging.com/category/side-income-reports/">Side Income Report</a> where I share all of the earnings from my various online ventures with you.   Here&#8217;s my income and expenses for July:</p>
<h3><strong>Income:</strong></h3>
<p>eBay Partner Network (Niche Stores) &#8211; $1110.18</p>
<p>Adsense &#8211; $186.57</p>
<p>Affiliates &#8211; $168.20</p>
<p>Consulting/Hosting (Empty Cabin Media) &#8211; $817.50</p>
<p><strong>Total June Income: $2282.45</strong></p>
<h3><strong>Expenses:</strong></h3>
<p><a href="https://emptycabinmedia.freshbooks.com/refer/www">Freshbooks</a> (used for invoicing for my consulting work) &#8211; $24.48</p>
<p><a href="http://sideincomeblogging.com/mediatemple">Media Temple</a> (hosting) &#8211; $82.00</p>
<p><strong>Total Expenses: $106.48</strong></p>
<h3><strong>Net Income: (Income &#8211; Expenses): $2175.97</strong></h3>
<p>I&#8217;m incredibly happy to share that July was my biggest income month ever!!  There are a couple of reasons for this:</p>
<ol>
<li>I had a large amount of Empty Cabin Media work in July.  While this did distract me a bit from making the progress I wanted here on Side Income Blogging and on my niche stores, the extra income was really nice.  I enjoyed the work I did as well.</li>
<li>My eBay niche stores, and in particular one that is focused on a summer sport continued to do very well and accounted for more than 95% of my niche store income.  I&#8217;m expecting to see this drop either this month (August) or in September as we move into winter.</li>
</ol>
<p>Overall another awesome month for my side income.  As with last month, I still have lots of work I&#8217;d like to get done:</p>
<ol>
<li>Writing and selling a few eBook ideas I have &#8211; To be honest, I haven&#8217;t even started on this yet as I&#8217;m really having trouble coming up with ideas.</li>
<li>Increasing my traffic and income here on Side Income Blogging</li>
<li>Getting more traffic to my other eBay based niche stores</li>
<li>Writing more on the other two blogs I&#8217;ve created (sorry, not sharing these just yet, but maybe down the road).</li>
<li>Creating a new more niche sites targeted at Adsense income instead of eBay.  This is to diversify my income more.</li>
</ol>
<div>Of course doing these things while maintaining a full-time job, attending football practices every evening and games on weekends is going to be tough!  I&#8217;ll just have to remain very focused on my time early in the mornings to get things done.</div>
<p>If you have any questions, feel free to ask in the comments.  Certainly willing to answer anything I can.</p>
<p>Photo by: Me <img src='http://sideincomeblogging.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://sideincomeblogging.com/july-side-income-report/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Register your blog with Google</title>
		<link>http://sideincomeblogging.com/register-blog-with-google/</link>
		<comments>http://sideincomeblogging.com/register-blog-with-google/#comments</comments>
		<pubDate>Thu, 28 Jul 2011 16:27:43 +0000</pubDate>
		<dc:creator>Larry</dc:creator>
				<category><![CDATA[Popular]]></category>
		<category><![CDATA[Start a money making blog]]></category>
		<guid isPermaLink="false">http://sideincomeblogging.com/?p=258</guid>
		<description><![CDATA[At this point in our Start a Money Making Blog series, you should have your blog up and running, looking great and have at least 10 high quality articles published.  A common mistake many bloggers make is to think that their blog will just suddenly get picked up by Google and a rush of traffic [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://sideincomeblogging.com/register-blog-with-google/" title="Permanent link to Register your blog with Google"><img class="post_image aligncenter" src="http://sideincomeblogging.com/wp-content/uploads/webmaster-tools.jpg" width="600" height="191" alt="Webmaster Tools" /></a>
</p>
<p>At this point in our <a href="http://sideincomeblogging.com/start-a-money-making-blog/">Start a Money Making Blog series</a>, you should have your blog up and running, looking great and have at least 10 high quality articles published.  A common mistake many bloggers make is to think that their blog will just suddenly get picked up by Google and a rush of traffic will arrive. Unfortunately, this is not the case.  Unless your blog is linked from another credible blog or website, Google won&#8217;t find you right away, if at all.  In lieu of getting a link from a credible site, one way to get your site on Google&#8217;s radar is to register your blog with Google.</p>
<h3>Register your blog with Google</h3>
<p>To register your blog with Google, we&#8217;ll use a site Google provides for webmasters (yes that&#8217;s you) called <a href="http://www.google.com/webmasters/tools">Google Webmaster Tools</a>.  Just login using your Google account (if you don&#8217;t have one, create one) and you&#8217;ll be presented with the main home page.  Follow these steps to add your site:</p>
<ol>
<li>Click the <em><strong>Add a Site&#8230;</strong></em> button</li>
<li>Enter the URL of your site and press <em><strong>Continue</strong></em>.  One note here, it&#8217;s very important that you use the right URL.  If your site is set-up to be preceeded by www, than enter the www, otherwise leave it off.  If you aren&#8217;t sure how your site is set-up, login to your hosting account and see how you set it up.  Most sites have the www.</li>
<li>Now we&#8217;ll have to verify your site.  I recommend using Google&#8217;s recommended method which involves downloading an HTML file and uploading it to your server.  Just follow the instructions Google provides.  If you need a refresher on how to upload a file to your server, read over my <a href="http://sideincomeblogging.com/what-is-ftp-blog/">What is FTP article</a>.</li>
<li>Once your HTML file is uploaded, click the verify button.</li>
<li>That&#8217;s it, your site is now registered with Google.</li>
</ol>
<h3>Submit a Sitemap</h3>
<p>Next you&#8217;ll want to submit a sitemap so that Google can easily find and index all that great content you&#8217;ve been writing.  A sitemap is a special file that is placed on your website that contains a listing of all the URLs to each of your websites pages.  So instead of Google having to find your content, the sitemap actually maps out all of your content for Google so that it can easily find it.  If you&#8217;re curious, you can view the sitemap for Side Income Blogging <a href="http://sideincomeblogging.com/sitemap.xml">here</a>.</p>
<p>The easiest way to do this is to install the <a href="http://wordpress.org/extend/plugins/google-sitemap-generator/">Google XML Sitemaps</a> plugin.  Once installed and activated, head over to the settings page (Settings&gt;&gt;XML-Sitemap).  At the top will be text that says &#8220;The sitemap wasn&#8217;t built yet. <span style="text-decoration: underline;">Click here</span> to build it the first time.&#8221;  Click the &#8220;Click here&#8221; link to generate your sitemap for the first time.  From that point on, the plugin will automatically update your sitemap and notify Google of your new content.</p>
<p>Now that we have a sitemap, we need to return to Google Webmaster tools and tell it about your new sitemap.  To do this, do the following:</p>
<ol>
<li>Login to <a href="www.google.com/webmasters/tools">Google Webmaster Tools</a></li>
<li>From the home page, select your site.  You&#8217;ll be presented with the Dashboard for your site.</li>
<li>Open the Site configuration menu to left by clicking on the + sign.  Select <strong>Sitemaps</strong>.</li>
<li>Click on Submit a Sitemap.  When prompted for the location, your domain name will already be populated.  All you have to type is: sitmap.xml.</li>
<li>Click on Submit Sitemap.</li>
</ol>
<div>That&#8217;s it, your sitemap is now submitted.  Come back in a few minutes, view your sitemap and it should show a green check box indicating it was successfully processed.  If not, just follow the steps above again, you most likely typed something wrong or the Google XML Sitemaps plugin isn&#8217;t working correctly.</div>
<h3>A little help</h3>
<p>While registering your site and sitemap with Google Webmaster tools certainly doesn&#8217;t guarantee it will help your site, in my personal experience it has proven to get my sites indexed much quicker and results in seeing search engine traffic much sooner.  As we&#8217;ll explore soon, getting search engine traffic is critical for earning money from advertisements.  Getting search engine traffic is the key strategy we&#8217;ll explore to earn a side income blogging.  So stay tuned.</p>
<p><em>Those of you with experience has registering your site with Webmaster tools and submitting a sitemap helped your site?  Any cons that you can think of?  Join in, add a comment!</em></p>
]]></content:encoded>
			<wfw:commentRss>http://sideincomeblogging.com/register-blog-with-google/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Friday Most Excellent – Google+ Edition</title>
		<link>http://sideincomeblogging.com/the-friday-most-excellent-google-edition/</link>
		<comments>http://sideincomeblogging.com/the-friday-most-excellent-google-edition/#comments</comments>
		<pubDate>Fri, 15 Jul 2011 12:24:19 +0000</pubDate>
		<dc:creator>Larry</dc:creator>
				<category><![CDATA[The Friday Most Excellent]]></category>
		<guid isPermaLink="false">http://sideincomeblogging.com/?p=255</guid>
		<description><![CDATA[I&#8217;ve spent a decent amount of time this week hanging out on Google+ along with 10 million other people.  I&#8217;m still learning all the ins and outs and still struggling with exactly how to set up my circles, but so far I really like it.  For me, it&#8217;s like the perfect blend of Twitter and [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://sideincomeblogging.com/the-friday-most-excellent-google-edition/" title="Permanent link to The Friday Most Excellent &#8211; Google+ Edition"><img class="post_image aligncenter" src="http://sideincomeblogging.com/wp-content/uploads/googleplus.jpg" width="600" height="200" alt="Google Plus Logo" /></a>
</p>
<p>I&#8217;ve spent a decent amount of time this week hanging out on <a title="Google+" href="http://plus.google.com">Google+</a> along with 10 million other people.  I&#8217;m still learning all the ins and outs and still struggling with exactly how to set up my circles, but so far I <strong>really</strong> like it.  For me, it&#8217;s like the perfect blend of <a href="http://twitter.com/larryecm">Twitter</a> and <a href="http://www.facebook.com/larry.deane">Facebook</a>.  Most of my friends and family aren&#8217;t on there yet, but many if not all of my blogging friends are.  Of course all of A-list bloggers are as well.</p>
<p>Google+ still has a few growing pains, but it&#8217;s definitely my social media site of choice right now.  The interface is great and it seems to solve all of the beefs I&#8217;ve had for sometime now with Facebook.  The concept of circles is just amazing, and the more I think about it, the more I find ways to use them.  I really like how they handle the display and management of photos as well. Now if iPhoto will just add a Google+ share feature&#8230;</p>
<p>If you haven&#8217;t tried it out yet, <a href="http://plus.google.com">head over</a> and give it a try, I think you&#8217;ll really like it.  Oh, and make sure you <a href="https://plus.google.com/105057861642716051675/posts">add me</a> to one of your circles.</p>
<h3>The Friday Most Excellent</h3>
<p>In the spirit of Google+, below are just a few of the best articles,tips and tutorials I&#8217;ve read from my circles about it this week:</p>
<ul>
<li><strong><a href="http://www.slideshare.net/supernovastudios/google-101-b-8578866">Google+ 101</a> and <a href="http://www.slideshare.net/supernovastudios/google-201-8598889#googleplustips">Google+ 201 - Tips</a></strong> shared by <a href="https://plus.google.com/101083665324103748439/posts">Nancy Bain</a></li>
<li><strong><a href="http://www.huffingtonpost.com/2011/07/12/google-plus-guide-tips-for-newbies_n_896350.html?1310581801#s307613&amp;title=Start_By_Finding">Your Google+ Guide: 15 Tips for Newbies</a></strong> shared by <a href="https://plus.google.com/103399926392582289066/posts">Craig Kanalley</a></li>
<li><strong><a href="https://plus.google.com/102615863344410467759/posts/3knJzE9jjtG">Stop treatingGoogle+ like Facebook</a></strong> shared by <a href="https://plus.google.com/102615863344410467759/posts">Christina Trapolino</a> - <em>Christina has had a ton of great write-ups on G+ this week</em></li>
<li><strong><a href="http://pureinfotech.com/2011/07/13/google-plus-privacy-settings-that-you-may-want-to-consider-changing/">Google Plus Privacy Settings That You May Want To Consider Changing</a></strong></li>
<li><strong><a href="http://www.problogger.net/archives/2011/07/12/why-bloggers-should-consider-engaging-on-google/">Why Bloggers Should Consider Engaging on Google+</a></strong> shared by <a href="https://plus.google.com/112726038360301567381/posts">Darren Rowse</a></li>
</ul>
<div>Have any good G+ articles you&#8217;ve found, add them in a comment below.  Hope you have a great weekend!</div>
]]></content:encoded>
			<wfw:commentRss>http://sideincomeblogging.com/the-friday-most-excellent-google-edition/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Build community on your blog</title>
		<link>http://sideincomeblogging.com/build-community-on-your-blog/</link>
		<comments>http://sideincomeblogging.com/build-community-on-your-blog/#comments</comments>
		<pubDate>Thu, 14 Jul 2011 11:00:36 +0000</pubDate>
		<dc:creator>Larry</dc:creator>
				<category><![CDATA[Blogging Tips]]></category>
		<guid isPermaLink="false">http://sideincomeblogging.com/?p=252</guid>
		<description><![CDATA[Let&#8217;s face it, blogging is a very social activity.  For those of you that might think you can just write a blog, hit publish everyday and nothing more, your blog will in all likelihood not be successful.  Sure, you&#8217;ll get some traffic eventually and maybe even a few comments, but your blog won&#8217;t foster. Look [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://sideincomeblogging.com/build-community-on-your-blog/" title="Permanent link to Build community on your blog"><img class="post_image aligncenter" src="http://sideincomeblogging.com/wp-content/uploads/community.jpg" width="600" height="200" alt="Blogging Community" /></a>
</p>
<p>Let&#8217;s face it, blogging is a very social activity.  For those of you that might think you can just write a blog, hit publish everyday and nothing more, your blog will in all likelihood not be successful.  Sure, you&#8217;ll get some traffic eventually and maybe even a few comments, but your blog won&#8217;t foster.</p>
<p>Look at people like Darren Rowse of <a href="http://www.problogger.net">Problogger</a>, Leo Babauta of <a href="http://zenhabits.net/">Zen Habits</a>, and Trent Hamm of <a href="http://www.thesimpledollar.com">The Simple Dollar</a> just to name a few.  These bloggers have very successful blogs and thousands of readers everyday.  Sure they are all very talented, but one of the key things you&#8217;ll note is that they have have a very passionate reader following.  How did this occur?  They built community on and off their blogs. We&#8217;ll hit on building community off your blog in another article, for this article, let&#8217;s focus on building community on your blog.</p>
<h3>Building Community on your blog</h3>
<p>One my clients and friends, Christopher Foster blogs at <a href="http://thehappyseeker.com">The Happy Seeker</a>.  I really enjoy reading Chris&#8217; articles.  While I generally read articles in Google Reader, I always read Chris&#8217; on his site.  Why?  Because of his comments. Given the amount of traffic Chris&#8217; blog receives his comment numbers are very high.   What this means is that the readers Chris has a are very engaged and active in his blog.</p>
<p>Take a look at a recent article Chris published: <a href="http://www.thehappyseeker.com/2011/07/05/how-listening-to-your-hunches-can-change-your-life">How to listen to your hunches</a>.  If you scroll below the article and look at the comments and read them, you&#8217;ll note three things:</p>
<ol>
<li><strong>Chris&#8217; commentators back up and support Chris&#8217; content.</strong>  This helps Chris with authority.  Almost every comment on Chris&#8217; content is positive, helpful and supportive.  His commentators support what he is writing about, support him and add value by sharing their own related stories and perspectives.</li>
<li><strong>Chris responds to almost every single comment.</strong>  Not only does he respond, but he responds with a thoughtful and meaningful reply and not just a &#8220;thanks for the comment&#8221; many bloggers use.  Chris does this because he is sincere, he sincerely appreciates his readers and them taking the time to comment on his articles.  Do you sincerely appreciate your readers comments?  Do you really?</li>
<li><strong>The whole air of his blog is positive</strong> and at the point of being cheesy, his site seems &#8220;Happy&#8221;.  Why?  Well, number one because of Chris, but also because Chris is building a community on his blog and Chris and his community set that tone.  That community will help him go far.</li>
</ol>
<p>When I wrote on my personal finance blog, I built a community as well, a strong one.  I&#8217;d love to be able to tell you I did this with intention, but I was too new to blogging to claim that.  Frankly I had no clue early on.  In hindsight, now that I have a great deal more knowledge of blogging, I built a community there by:</p>
<ol>
<li><strong>Being sincere and being real. </strong> I put a piece of myself into every article.  I shared my personal experiences with my readers.  I told them about my wife, my kids, our trips, our home and lots more.  I always tied this back to a personal finance message.  I allowed my readers to know me and relate to me.  Again, at the time I didn&#8217;t do this intentionally, but it worked.  Allow your readers to know you.</li>
<li><strong>I responded sincerely to all comments.</strong>  Like Chris, I responded to all comments.  Being a new blogger, I was really excited when I got a comment.  I&#8217;d always respond, thanking them and commenting about their comment or answering their question.  Some comment questions even resulted in me writing an article to answer.  When I wrote the article, I always referenced the commentator and thanked them.  Your readers like to be recognized.</li>
<li><strong>I paid attention to readers that had blogs.</strong>  When readers would comment and they had a blog, I would always visit their blog and make a comment.  I would often add their blogs to my Google Reader list and highlight their blog post on my blog if I enjoyed reading it.</li>
<li><strong>I posed questions at the end of almost every article to encourage my readers to comment.</strong>  I made it very clear that I wanted their feedback, thoughts and perspective and that when they added a comment, their comment increased the value of my article as a whole.  I still believe to this day that comments can often be as valuable if not more so than the original article.</li>
</ol>
<h3>The power of community</h3>
<p>I wrote an article one time that I knew would be a bit controversial, it involved credit cards (I am very much against them).  The article was linked by a number of other blogs and those readers came over and started attacking my article hard.  I didn&#8217;t get to see the comments until later in the day and when I went out to respond, I saw that my reader community had already defended me and where fighting for my thoughts and my beliefs.  I was in awe.  My readers were linking to other articles I had written, arguing to defend my position and defending me personally.  I couldn&#8217;t thank them enough.  I realized then the power of community and the power of what myself and my readers had built together.  From then on, I told them often that they were the best community on the Internet.</p>
<blockquote><p><em><strong>Tip:</strong></em> Lady Gaga might be a bit different, but she has two key things going for her 1) She makes great music 2) She named her fans.  Yep, her fans are called Little Monsters.  Giving them a name is a trival but powerful thing.  The name gives it the essence of an exclusive club that people want to be part of.  Everyone wants to claim they are a Little Monster.  How about naming your community?  Instead of saying subscribe, say &#8220;Become a Little Monster&#8221; or maybe &#8220;Join the hundreds of other Little Monsters&#8221;.  See the difference?</p></blockquote>
<p>When you have a strong community, new visitors arriving on your blog will pick up your community and want to be part of it.   A strong community can make your blog and take it to levels you never thought possible.  Don&#8217;t ever forgot your community, because without them (your readers), your blog is just a bunch of text.   Your community will promote your blog, defend your blog, link to your blog, and even write on your blog (I often had readers write guest posts for me).  Don&#8217;t neglect them, cherish each of them and do so sincerely.</p>
<p><strong><em>What are you doing to build community on your blog?  Did I miss anything?  Share your thoughts on the importance of community and strategies for building on by adding a comment.</em></strong></p>
<p>photo by: <a href="http://www.flickr.com/photos/84123084@N00/2450393952">eddiehosa</a></p>
]]></content:encoded>
			<wfw:commentRss>http://sideincomeblogging.com/build-community-on-your-blog/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss><!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced
Database Caching 11/16 queries in 0.026 seconds using disk: basic

Served from: sideincomeblogging.com @ 2012-05-05 21:13:08 -->

