<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="http://feedproxy.google.com/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feedproxy.google.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" version="2.0">

<channel>
	<title>Blogging Tips</title>
	
	<link>http://www.bloggingtips.com</link>
	<description>Blogging Guides, News, Tips, Resources</description>
	<pubDate>Thu, 20 Nov 2008 20:00:37 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
	<language>en</language>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feedproxy.google.com/blogging-tips" type="application/rss+xml" /><feedburner:emailServiceId xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">blogging-tips</feedburner:emailServiceId><feedburner:feedburnerHostname xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>CSS Basics: Styling Links</title>
		<link>http://www.bloggingtips.com/2008/11/20/css-basics-styling-links/</link>
		<comments>http://www.bloggingtips.com/2008/11/20/css-basics-styling-links/#comments</comments>
		<pubDate>Thu, 20 Nov 2008 20:00:37 +0000</pubDate>
		<dc:creator>Sarah from http://www.stuffbysarah.net/</dc:creator>
		
		<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://www.bloggingtips.com/?p=4345</guid>
		<description><![CDATA[<p>Last week I explained about <a href="http://www.bloggingtips.com/2008/11/13/html-basics-linking-pages/">linking pages</a> using the anchor tag. This week is about styling those links. For the basics of styling read my previous post <a href="http://www.bloggingtips.com/2008/10/23/understanding-css/">Understanding CSS</a>.</p>
<h3>Target the anchor tag</h3>
<p>In our CSS we can simply target the anchor tag using the <strong>a</strong> as the selector. So if we wanted our links to always be green and bold we could use</p>
<pre name="code" class="css">
a {
    color: green;
    font-weight: bold;
}
</pre>
<p>If you wanted to have links in a div with the id of topmenu to be white (because perhaps the topmenu has a black&#8230;</p>]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.googleadservices.com/~a/6u_60Hjnsw0bKJE4i-jP_zSewjY/a"><img src="http://feedads.googleadservices.com/~a/6u_60Hjnsw0bKJE4i-jP_zSewjY/i" border="0" ismap="true"></img></a></p><p>Written by <a href="http://www.bloggingtips.com/author/sarah/" title="Posts by Sarah">Sarah</a> from <a href="http://www.stuffbysarah.net/">Stuff By Sarah</a></p><p>Last week I explained about <a href="http://www.bloggingtips.com/2008/11/13/html-basics-linking-pages/">linking pages</a> using the anchor tag. This week is about styling those links. For the basics of styling read my previous post <a href="http://www.bloggingtips.com/2008/10/23/understanding-css/">Understanding CSS</a>.</p>
<h3>Target the anchor tag</h3>
<p>In our CSS we can simply target the anchor tag using the <strong>a</strong> as the selector. So if we wanted our links to always be green and bold we could use</p>
<pre name="code" class="css">
a {
    color: green;
    font-weight: bold;
}
</pre>
<p>If you wanted to have links in a div with the id of topmenu to be white (because perhaps the topmenu has a black background) but all other links to be in blue then we could have</p>
<pre name="code" class="css">
a {
    color: blue;
}

#topmenu a {
    color: white;
}
</pre>
<p>Notice here, the first ruleset uses just <b>a</b> as the selector. This means all anchor links. However, the second ruleset uses <b>#topmenu a</b> as the selector, and this means all anchor links enclosed in the element with an id of topmenu i.e.</p>
<pre name="code" class="html">
&lt;div id=&quot;topmenu&quot;&gt;
   &lt;a href=&quot;/&quot;&gt;Home&lt;/a&gt; | &lt;a href=&quot;about.htm&quot;&gt;About&lt;/a&gt; | &lt;a href=&quot;contact.htm&quot;&gt;Contact&lt;/a&gt;
&lt;/div&gt;
</pre>
<p>By putting the &#8216;#topmenu a&#8217; ruleset second you automatically override the properties in the first ruleset with the second ruleset&#8217;s property values. This means that the colour is set in the first ruleset and the second ruleset overrides the colour for that particular selector. However, if you set perhaps the font weight to be bold in the first ruleset, if you didn&#8217;t specify anything for the font weight in the second ruleset then it would inherit the font weight setting from the first ruleset.</p>
<p>So to recap:</p>
<ul>
<li>Single tag selectors apply to every instance of that tag on a page eg. a, p, h1, div</li>
<li>You can override some or all properties by specifying a second (anywhere later in the file), more targeted selector eg. #idname a, #content p</li>
<li>Any properties not specified in the second ruleset will automatically be inherited from any rulesets already applied to that tag.</li>
</ul>
<p>If, for example, you had a top menu with a black background colour and a side menu with a blue background colour, and you wanted white links in the top menu, yellow links in the side menu, and blue links everywhere else, but you wanted bold links for the side menu and the page links then you would use</p>
<pre name="code" class="css">
a {
    color: blue;
    font-weight: bold;
}

#topmenu a {
    color: white;
    font-weight: normal;
}

#sidemenu a {
    color: yellow;
}
</pre>
<p>As you can see here, the topmenu links have had both their colour and font weight over written, whereas the sidemenu just has the colour changed. Both the topmenu and the sidemenu will only inherit their rules from the first ruleset for the anchor tag. The sidemenu ruleset will not inherit anything from the topmenu ruleset as they are unrelated, so the order of these two rulesets has no bearing on the outcome.</p>
<h3>Styling Link States</h3>
<p>With page links we can go one step further and style the different states for a hyperlink. A hyperlink typically has 5 states which we target using pseudo-classes:</p>
<dl>
<dt>:link</dt>
<dd>The state for a link that has not yet been visited</dd>
<dt>:visited</dt>
<dd>The state of a visited link</dd>
<dt>:hover</dt>
<dd>The state of a link when the mouse is hovering over it</dd>
<dt>:active</dt>
<dd>The state of a link when it is being clicked</dd>
<dt>:focus</dt>
<dd>The state of a link when it is selected but hasn&#8217;t been clicked (this is unsupported in current versions of Internet Explorer)</dd>
</dl>
<p>These pseudo-classes are not just limited to the anchor tag in browsers that support them (such as Internet Explorer 7, Firefox and Opera).</p>
<p>So now we can specify what colour link to use before and after the link has been visited, and we can also have the link change to a third, different colour, when someone hovers their mouse over it. So, for example, we could have all links, in all states, in bold, and then we&#8217;d have non visited, visited and hover states in blue, purple and red respectively. To do this we&#8217;d use</p>
<pre name="code" class="css">
a {
    font-weight: bold;
}
a:link {
    color: blue;
}
a:visited {
    color: purple;
}
a:hover {
    color: red;
}
</pre>
<p>Another common property with links is the text-decoration which is used to control whether a link is underlined or not. Often you&#8217;ll see sites with non underlined links until you hover over them. To achieve this we can use the following:</p>
<pre name="code" class="css">
a {
    font-weight: bold;
    text-decoration: none;
}
a:link {
    color: blue;
}
a:visited {
    color: purple;
}
a:hover {
    color: red;
    text-decoration: underline;
}
</pre>
<p>The other values that the text-decoration property can have besides none and underline are overline, line-through, blink and inherit (although I wouldn&#8217;t ever recommend using blink as it&#8217;s just distracting).</p>
<p>You can set other properties on links such as a background colour, font size, font family and more. Next week I&#8217;ll explain more of these properties and how they can be used.</p>
<hr>Copyright &copy; 2008 <strong><a href="http://www.bloggingtips.com">Blogging Tips</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please <a href=http://www.bloggingtips.com/contact/>contact us</a> so we can take legal action immediately.<div class="feedflare">
<a href="http://feedproxy.google.com/~f/blogging-tips?a=2ChDrs19"><img src="http://feedproxy.google.com/~f/blogging-tips?d=41" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=rHehox7f"><img src="http://feedproxy.google.com/~f/blogging-tips?d=43" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=BRODiOtM"><img src="http://feedproxy.google.com/~f/blogging-tips?i=BRODiOtM" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=sJzZyg1E"><img src="http://feedproxy.google.com/~f/blogging-tips?d=50" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=G2xKce0d"><img src="http://feedproxy.google.com/~f/blogging-tips?i=G2xKce0d" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=gj5bsroU"><img src="http://feedproxy.google.com/~f/blogging-tips?i=gj5bsroU" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=mYTZGUW7"><img src="http://feedproxy.google.com/~f/blogging-tips?i=mYTZGUW7" border="0"></img></a>
</div><img src="http://feedproxy.google.com/~r/blogging-tips/~4/FRzkb-eTeGo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.bloggingtips.com/2008/11/20/css-basics-styling-links/feed/</wfw:commentRss>
		</item>
		<item>
		<title>TLA InLinks Officially Launched</title>
		<link>http://www.bloggingtips.com/2008/11/20/in-links/</link>
		<comments>http://www.bloggingtips.com/2008/11/20/in-links/#comments</comments>
		<pubDate>Thu, 20 Nov 2008 13:54:27 +0000</pubDate>
		<dc:creator>Kevin Muldoon from http://www.system0.net</dc:creator>
		
		<category><![CDATA[Making Money]]></category>

		<guid isPermaLink="false">http://www.bloggingtips.com/?p=4339</guid>
		<description><![CDATA[ <p> <a href="http://www.bloggingtips.com/go/inlinks"><img src="http://www.bloggingtips.com/wp-content/uploads/2008/11/inlinks.jpg" alt="InLinks" title="InLinks" width="144" height="68" class="alignnone size-full wp-image-4340" align="right"/></a><a href="http://www.mediawhiz.com/">MediaWhiz</a>, <a href="http://www.techcrunch.com/2006/11/07/text-link-ads-gets-bought-by-mediawhiz/">owners</a> of the text link marketplace <a href="http://www.bloggingtips.com/go/textlinkads">Text Link Ads</a>, have just launched <a href="http://www.bloggingtips.com/go/inlinks">InLinks</a>. </p>
<p>The InLinks option was first <a href="http://www.bloggingtips.com/2007/07/06/text-link-ads-inlinks-option/">added to TLA last year</a> and started getting <a href="http://www.bloggingtips.com/2008/09/09/text-link-ads-publicly-launches-inlinks/">promoted heavily on Text Link Ads</a> 2 months ago. They have now went mainstream with it and have launched <a href="http://www.bloggingtips.com/go/inlinks">InLinks</a> properly, and have got a lot of attention by doing so.</p>
<p>I did a quick <a href="http://www.bloggingtips.com/2008/09/09/text-link-ads-publicly-launches-inlinks/">review of InLinks</a> in September so regular readers should have a good idea of how the InLinks system works. I always welcome another method for bloggers to make money but Google certainly disagrees. There&#8230;</p> ]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.googleadservices.com/~a/OTLh8xs7OzOLEUMv4ISDoHBpwM8/a"><img src="http://feedads.googleadservices.com/~a/OTLh8xs7OzOLEUMv4ISDoHBpwM8/i" border="0" ismap="true"></img></a></p><p>Written by <a href="http://www.bloggingtips.com/author/admin/" title="Posts by Kevin Muldoon">Kevin Muldoon</a> from <a href="http://www.system0.net">System0</a></p><p> <a href="http://www.bloggingtips.com/go/inlinks"><img src="http://www.bloggingtips.com/wp-content/uploads/2008/11/inlinks.jpg" alt="InLinks" title="InLinks" width="144" height="68" class="alignnone size-full wp-image-4340" align="right"/></a><a href="http://www.mediawhiz.com/">MediaWhiz</a>, <a href="http://www.techcrunch.com/2006/11/07/text-link-ads-gets-bought-by-mediawhiz/">owners</a> of the text link marketplace <a href="http://www.bloggingtips.com/go/textlinkads">Text Link Ads</a>, have just launched <a href="http://www.bloggingtips.com/go/inlinks">InLinks</a>. </p>
<p>The InLinks option was first <a href="http://www.bloggingtips.com/2007/07/06/text-link-ads-inlinks-option/">added to TLA last year</a> and started getting <a href="http://www.bloggingtips.com/2008/09/09/text-link-ads-publicly-launches-inlinks/">promoted heavily on Text Link Ads</a> 2 months ago. They have now went mainstream with it and have launched <a href="http://www.bloggingtips.com/go/inlinks">InLinks</a> properly, and have got a lot of attention by doing so.</p>
<p>I did a quick <a href="http://www.bloggingtips.com/2008/09/09/text-link-ads-publicly-launches-inlinks/">review of InLinks</a> in September so regular readers should have a good idea of how the InLinks system works. I always welcome another method for bloggers to make money but Google certainly disagrees. There is no disputing that InLinks is against Googles paid link policy however the problem is, it is very difficult for them to spot it as the links are embedded in the content and there is nothing to suggest that a link is paid.</p>
<p>Darren Rowse states that <a href="http://www.problogger.net/archives/2008/11/20/inlinks-textlinkads-20/">31% of ProBlogger readers</a> actively sell text links on their blogs so there is definately a big market for this kind of service. Google blogger <a href="http://www.mattcutts.com/blog/">Matt Cutts</a> is obviously not happy about this. He <a href="http://www.techcrunch.com/2008/11/19/insidious-new-seo-ad-product-will-be-hard-for-google-to-detect/">contacted TechCrunch</a> and said :</p>
<blockquote><p>    Google has been very clear that selling such links that pass PageRank is a violation of our quality guidelines. Other search engines have said similar things. The Federal Trade Commission (FTC) has also given unambiguous guidance on this subject in the recent PDF at http://www.ftc.gov/os/2008/03/P064101tech.pdf where they said “Consumers who endorse and recommend products on their blogs or other sites for consideration should do so within the boundaries set forth in the FTC Guides Concerning Use of Endorsements and Testimonials in Advertising and the FTC’s guidance on word of mouth marketing,” as well as “To date, in response to this concern, the FTC has advised that search engines need to disclose clearly and conspicuously if the ranking or other presentation of search results is a function of paid placement, and, similarly, that consumers who are paid to engage in word-of-mouth marketing must disclose that fact to recipients of their messages.”</p>
<p>    Oh, but you say your blog isn’t in the U.S.? Maybe it’s in the UK? Then you’ll be interested in<br />
    http://www.opsi.gov.uk/si/si2008/uksi_20081277_en_5#pt11 which covers unfair trade practices and specifically mentions “Using editorial content in the media to promote a product where a trader has paid for the promotion without making that clear in the content or by images or sounds clearly identifiable by the consumer (advertorial).”</p>
<p>    But you’re not in the UK? I believe many of the unfair commercial practices directives apply through Europe, e.g. http://ec.europa.eu/consumers/rights/index_en.htm to prohibit misleading or aggressive marketing.</p>
<p>    The reality is that accepting money to link to/promote/market for a product without disclosing that fact is a very high-risk behavior, in my opinion.</p></blockquote>
<p>ShoeMoney <a href="http://www.shoemoney.com/2008/11/19/does-google-really-want-to-go-down-this-ftc-route/">hit the nail on the head</a> yesterday when he said :</p>
<blockquote><p>They are not law and if Google was following the FTC’s suggestions I doubt Google Adsense/adlinks would be engaging in some of the most deceptive advertising methods I have ever seen on the internet.</p>
<p>Also I am curious then why Google is not requiring Firefox to display that they are paying Firefox billions of dollars to be the default search engine each time you search. The funny thing is not even firefox developers know they are getting paid so much by Google as you can see in my posts about it before. Talk about a lack of disclosure.</p></blockquote>
<p>I have to agree with the above statement. People in glass houses shouldn&#8217;t throw stones. I completely understand why Google have their paid link policy but they are not upfront about a lot of their monetization methods so it&#8217;s hypocritical to point the finger at everyone else.</p>
<p><strong>Should you use InLinks?</strong></p>
<p>I don&#8217;t want to recommend or discourage anyone from using InLinks, just be aware of the risks. It is quite difficult for Google to detect links being sold on your blog however if you are caught by them you could get a penalty and lose a lot of search engine traffic. </p>
<p>If you promote a service on your blog and rely heavily on search engine traffic then it&#8217;s probably not worth the risk. If you are struggling to make money with your blog but your blog has a good PageRank, perhaps you think it&#8217;s worth the risk of getting a penalty. </p>
<p>I&#8217;d love to hear readers thoughts on this issue. Would you use InLinks?</p>
<p>Link : <a href="http://www.bloggingtips.com/go/inlinks">InLinks</a></p>
<p>* Disclosure : I have used my affiliate link in these ads.</p>
<hr>Copyright &copy; 2008 <strong><a href="http://www.bloggingtips.com">Blogging Tips</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please <a href=http://www.bloggingtips.com/contact/>contact us</a> so we can take legal action immediately.<div class="feedflare">
<a href="http://feedproxy.google.com/~f/blogging-tips?a=3O3MwSYD"><img src="http://feedproxy.google.com/~f/blogging-tips?d=41" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=5sTp1Cbu"><img src="http://feedproxy.google.com/~f/blogging-tips?d=43" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=PdF9rBrn"><img src="http://feedproxy.google.com/~f/blogging-tips?i=PdF9rBrn" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=U9nA0zOe"><img src="http://feedproxy.google.com/~f/blogging-tips?d=50" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=2Em2oMmX"><img src="http://feedproxy.google.com/~f/blogging-tips?i=2Em2oMmX" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=n2PtOQm0"><img src="http://feedproxy.google.com/~f/blogging-tips?i=n2PtOQm0" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=fNEVcmOM"><img src="http://feedproxy.google.com/~f/blogging-tips?i=fNEVcmOM" border="0"></img></a>
</div><img src="http://feedproxy.google.com/~r/blogging-tips/~4/9SV2gYB6kOY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.bloggingtips.com/2008/11/20/in-links/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Using Video to Increase Engagement</title>
		<link>http://www.bloggingtips.com/2008/11/20/using-video-to-increase-engagement/</link>
		<comments>http://www.bloggingtips.com/2008/11/20/using-video-to-increase-engagement/#comments</comments>
		<pubDate>Thu, 20 Nov 2008 12:00:22 +0000</pubDate>
		<dc:creator>CT Moore from http://www.shareresults.com</dc:creator>
		
		<category><![CDATA[Blogging]]></category>

		<category><![CDATA[Making Money]]></category>

		<category><![CDATA[conversion rates]]></category>

		<category><![CDATA[increase converstions]]></category>

		<category><![CDATA[online video]]></category>

		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.bloggingtips.com/?p=4329</guid>
		<description><![CDATA[<p>Whether or not you&#8217;re an <a href="http://www.bloggingtips.com/2008/09/04/monetizing-your-blog-through-affiliate-marketing/">affiliate blogger</a>, engaging your audience is paramount. After all, <a href="http://www.bloggingtips.com/2008/10/16/blogging-markets-vs-communities/">blogging is about building communities</a>, and one of the ways you do that is by contributing to the experience of your members.</p>
<p>Well, when it comes to advertising, a <a href="http://www.marketingsherpa.com/article.php?ident=30840&#38;ff=true#">survey from MarketingSherpa</a> showed that adding certain things to an ad increases user responsiveness. One of the things that the survey covered was video, and it showed that featuring a video in an ad can increase responsiveness by 49.5%. Of course, bloggers aren&#8217;t advertisers, but the lesson still stands:&#8230;</p>]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.googleadservices.com/~a/NjO5ojc6Hc0WwusbWEHsH1ISzHE/a"><img src="http://feedads.googleadservices.com/~a/NjO5ojc6Hc0WwusbWEHsH1ISzHE/i" border="0" ismap="true"></img></a></p><p>Written by <a href="http://www.bloggingtips.com/author/ct-moore/" title="Posts by CT Moore">CT Moore</a> from <a href="http://www.shareresults.com">Share Results</a></p><p>Whether or not you&#8217;re an <a href="http://www.bloggingtips.com/2008/09/04/monetizing-your-blog-through-affiliate-marketing/">affiliate blogger</a>, engaging your audience is paramount. After all, <a href="http://www.bloggingtips.com/2008/10/16/blogging-markets-vs-communities/">blogging is about building communities</a>, and one of the ways you do that is by contributing to the experience of your members.</p>
<p>Well, when it comes to advertising, a <a href="http://www.marketingsherpa.com/article.php?ident=30840&amp;ff=true#">survey from MarketingSherpa</a> showed that adding certain things to an ad increases user responsiveness. One of the things that the survey covered was video, and it showed that featuring a video in an ad can increase responsiveness by 49.5%. Of course, bloggers aren&#8217;t advertisers, but the lesson still stands: adding multimedia to your content enriches your readers experience.</p>
<p><img class="alignnone size-full wp-image-4331" src="http://www.bloggingtips.com/wp-content/uploads/2008/11/chartofweek092308mk3.gif" alt="" width="438" height="299" /></p>
<p>For <a href="http://blog.shareresults.com/?p=745" target="_blank">affiliate bloggers</a>, the lesson is even more important. Essentially, if you&#8217;re going to be promoting a certain range of products and services through your content, you might want to incorporate video into (and alongside) that content.</p>
<p>In fact, even <a href="http://www.shopnbc.com/" target="_blank">ShopNBC</a> has seen how <a href="http://blog.shareresults.com/?p=691" target="_blank">video can increase conversions</a>. As <a href="http://www.marketingpilgrim.com/2008/06/the-impact-of-video-on-e-tail.html" target="_blank">Greg Howlett at Marketing Pilgrim reported</a>, customers that watch videos convert at twice the rate of customers who do not.</p>
<p>This doesn’t, of course, mean that affiliate bloggers have to become part-time video producers. For instance, <a href="http://www.contentinople.com/author.asp?section_id=431&amp;doc_id=148256">10 hours of content is uploaded to YouTube every minute</a>. So chances are that there’s some kind of content on the video sharing site that can be used alongside your content.</p>
<p>As the MarketingSherpa study suggests, watching another everyday person user or interact with a product is something that can really influence a user’s mindset. It both gives the user a chance to see the product in action and bolsters your blogs credibility. Not only does the video content provides a richer user-experience for your readers, but it shows that you&#8217;re confident enough to bring other social media (shareable video) into the community that is your blog.</p>
<p>Even if you can’t find a video of that specific product, embedding video that is related can put the consumer in a purchasing mood. For example, if you can’t find a video about ringtones, specifically, then see what there is in the way of music videos for whatever ringtones are most popular at that moment.</p>
<p>In fact, many affiliates (bloggers and not) already use YouTube as a source of landing page content. Consider Mark from <a href="http://www.45n5.com/">45n5</a>: he <a href="http://www.45n5.com/permalink/howto-build-a-youtube-ebay-amazon-mashup-affiliate.html">uses mashup scripts</a> that pull relevant content from YouTube and displays it on his product pages.</p>
<p>Of course, if you prefer to have a bit of your own branding on the video, you can also get a handy cam and shoot a quick video of yourself using the product. After all, online video is often so effective at engaging users because it&#8217;s not as high production as television or film. As John Kerr, Director - Southeast Asia for <a href="http://www.edelman.com/">Edelman</a>, once <a href="http://www.twistimage.com/blog/archives/pr-20-and-the-mediamorphisis-of-the-world/">pointed out</a>, “<em>the shaky cam is now seen as the most trusted form of media</em>.”</p>
<p>Overall, videos are great way to engage your readers. And if you&#8217;re an affiliate blogger, that engagement can translate into higher conversions because the consumers (1) gets to see products in action, and (2) enjoys a richer user-experience through your content &#8212; and that increases the perceived credibility of your site. Basically, including relevant video alongside your content is so easy that you shouldn’t overlook it as a way to engage your readers &#8212; and especially as an <a href="http://www.bloggingtips.com/2008/09/18/how-bloggers-can-use-affiliate-marketing-tools/">affiliate marketing tool for bloggers</a>.</p>
<hr>Copyright &copy; 2008 <strong><a href="http://www.bloggingtips.com">Blogging Tips</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please <a href=http://www.bloggingtips.com/contact/>contact us</a> so we can take legal action immediately.<div class="feedflare">
<a href="http://feedproxy.google.com/~f/blogging-tips?a=l65NycBZ"><img src="http://feedproxy.google.com/~f/blogging-tips?d=41" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=8qeIEBmb"><img src="http://feedproxy.google.com/~f/blogging-tips?d=43" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=23PQhZiC"><img src="http://feedproxy.google.com/~f/blogging-tips?i=23PQhZiC" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=99XQCE8C"><img src="http://feedproxy.google.com/~f/blogging-tips?d=50" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=yjHAThbG"><img src="http://feedproxy.google.com/~f/blogging-tips?i=yjHAThbG" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=dphlL9Cv"><img src="http://feedproxy.google.com/~f/blogging-tips?i=dphlL9Cv" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=3V17HIzN"><img src="http://feedproxy.google.com/~f/blogging-tips?i=3V17HIzN" border="0"></img></a>
</div><img src="http://feedproxy.google.com/~r/blogging-tips/~4/kZLWWgFOp14" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.bloggingtips.com/2008/11/20/using-video-to-increase-engagement/feed/</wfw:commentRss>
		</item>
		<item>
		<title>50 Niches You Could Be Blogging About</title>
		<link>http://www.bloggingtips.com/2008/11/19/50-blog-niches/</link>
		<comments>http://www.bloggingtips.com/2008/11/19/50-blog-niches/#comments</comments>
		<pubDate>Wed, 19 Nov 2008 23:34:44 +0000</pubDate>
		<dc:creator>Kevin Muldoon from http://www.system0.net</dc:creator>
		
		<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://www.bloggingtips.com/?p=4336</guid>
		<description><![CDATA[ <p> I mentioned in a post <a href="http://www.bloggingtips.com/2008/10/28/blog-ideas-sports-blog/">last month</a> that the one thing which I actively see new bloggers struggle with is the main focus of their blog. I gave <a href="http://www.bloggingtips.com/2008/10/28/blog-ideas-sports-blog/">one example</a> of a blog (sports blog) but <a href="http://www.iammikesmith.com">Mike Smith</a> has went one better.</p>
<p>Infact, Mike has went 49 better and wrote a post with <a href="http://www.iammikesmith.com/50-passion-filled-blog-niches-you-should-be-dominating/">50 Passion filled blog niches YOU should be dominating</a>. If you are thinking about starting a new blog soon but you&#8217;re not sure about what to blog about then you should find this list incredibly handy.</p>
<p>Here is the list in full&#8230;</p> ]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.googleadservices.com/~a/_H_AGgFjl49azsg64PRz8-Ubgmk/a"><img src="http://feedads.googleadservices.com/~a/_H_AGgFjl49azsg64PRz8-Ubgmk/i" border="0" ismap="true"></img></a></p><p>Written by <a href="http://www.bloggingtips.com/author/admin/" title="Posts by Kevin Muldoon">Kevin Muldoon</a> from <a href="http://www.system0.net">System0</a></p><p> I mentioned in a post <a href="http://www.bloggingtips.com/2008/10/28/blog-ideas-sports-blog/">last month</a> that the one thing which I actively see new bloggers struggle with is the main focus of their blog. I gave <a href="http://www.bloggingtips.com/2008/10/28/blog-ideas-sports-blog/">one example</a> of a blog (sports blog) but <a href="http://www.iammikesmith.com">Mike Smith</a> has went one better.</p>
<p>Infact, Mike has went 49 better and wrote a post with <a href="http://www.iammikesmith.com/50-passion-filled-blog-niches-you-should-be-dominating/">50 Passion filled blog niches YOU should be dominating</a>. If you are thinking about starting a new blog soon but you&#8217;re not sure about what to blog about then you should find this list incredibly handy.</p>
<p>Here is the list in full <img src='http://www.bloggingtips.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<ol>
<li>Political Blogging</li>
<li>Sports Blogging</li>
<li>Music Blogging</li>
<li>Academic Blogging</li>
<li>Animal Blogging</li>
<li>Law Blogging</li>
<li>Real Estate Blogging</li>
<li>Car Racing Blogging</li>
<li>Skateboarding Blogging</li>
<li>Acting Blogging</li>
<li>Comedy Blogging</li>
<li>Hunting Blogging</li>
<li>Snowboarding Blogging</li>
<li>Poetry Blogging</li>
<li>Cooking Blogging</li>
<li>Design Blogging</li>
<li>Family Blogging</li>
<li>Marketing Blogging</li>
<li>Relationship Blogging</li>
<li>Health Blogging</li>
<li>News and Gossip Blogging</li>
<li>Movie Blogging</li>
<li>Celebrity Blogging</li>
<li>Fashion Blogging</li>
<li>TV Blogging</li>
<li>Fishing Blogging</li>
<li>Computer Blogging</li>
<li>Tech Blogging</li>
<li>Spirituality Blogging</li>
<li>History Blogging</li>
<li>Scrapbooking Blogging</li>
<li>Shopping Blogging</li>
<li>Green Blogging</li>
<li>Photography Blogging</li>
<li>Video Game Blogging</li>
<li>Addiction and Recovery Blogging</li>
<li>Diet and Exercise Blogging</li>
<li>Organization Blogging</li>
<li>Graffiti Blogging</li>
<li>Construction Blogging</li>
<li>Short Story Blogging</li>
<li>Comic Strip Blogging</li>
<li>Travel Blogging</li>
<li>Journalism Blogging</li>
<li>Advice Blogging</li>
<li>Psychology Blogging</li>
<li>Activism Blogging</li>
<li>Self Improvement Blogging</li>
<li>Interior Design Blogging</li>
<li>Blogging about Blogging</li>
</ol>
<p>A big thank you to <a href="http://www.iammikesmith.com">Mike Smith</a> for letting me reproduce this list for you guys. Cheers bud <img src='http://www.bloggingtips.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Link : <a href="http://www.iammikesmith.com/50-passion-filled-blog-niches-you-should-be-dominating/">50 Passion filled blog niches YOU should be dominating</a></p>
<hr>Copyright &copy; 2008 <strong><a href="http://www.bloggingtips.com">Blogging Tips</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please <a href=http://www.bloggingtips.com/contact/>contact us</a> so we can take legal action immediately.<div class="feedflare">
<a href="http://feedproxy.google.com/~f/blogging-tips?a=cdy7pFyb"><img src="http://feedproxy.google.com/~f/blogging-tips?d=41" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=qJllPlnW"><img src="http://feedproxy.google.com/~f/blogging-tips?d=43" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=sa961clM"><img src="http://feedproxy.google.com/~f/blogging-tips?i=sa961clM" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=a68SXCIC"><img src="http://feedproxy.google.com/~f/blogging-tips?d=50" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=hGr2FZNF"><img src="http://feedproxy.google.com/~f/blogging-tips?i=hGr2FZNF" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=3YjHLk8J"><img src="http://feedproxy.google.com/~f/blogging-tips?i=3YjHLk8J" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=EbVvh30E"><img src="http://feedproxy.google.com/~f/blogging-tips?i=EbVvh30E" border="0"></img></a>
</div><img src="http://feedproxy.google.com/~r/blogging-tips/~4/V_kH5YYdhqM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.bloggingtips.com/2008/11/19/50-blog-niches/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Two Great Contests For You All</title>
		<link>http://www.bloggingtips.com/2008/11/19/two-great-contests/</link>
		<comments>http://www.bloggingtips.com/2008/11/19/two-great-contests/#comments</comments>
		<pubDate>Wed, 19 Nov 2008 19:37:56 +0000</pubDate>
		<dc:creator>Kevin Muldoon from http://www.system0.net</dc:creator>
		
		<category><![CDATA[Competitions]]></category>

		<guid isPermaLink="false">http://www.bloggingtips.com/?p=4324</guid>
		<description><![CDATA[ <p> Earlier today I posted details about how you can win a signed copy of Darren Rowse and Chris Garretts fantastic <a href="http://www.bloggingtips.com/2008/11/19/win-signed-copy-problogger-book/">ProBlogger Book</a>. Well I hope you still have an appetitie for another contest as I have news about 2 more!</p>
<p><strong>Contest 1 : Blog Design Group Writing Project</strong></p>
<p>The <a href="http://blogdesignstudio.com/free-wordpress-themes/free-custom-blog-design-contest-group-writing-project/">Group Writing Project</a> has been live for about a week but there are still 11 days left in this great competition. <a href="http://blogdesignstudio.com">Blog Design Studio</a>, designers of the current Blogging Tips design, are looking for bloggers to write a post of at least 250 words&#8230;</p> ]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.googleadservices.com/~a/OppXYcUfVcdLi7282X4W8RdOUfw/a"><img src="http://feedads.googleadservices.com/~a/OppXYcUfVcdLi7282X4W8RdOUfw/i" border="0" ismap="true"></img></a></p><p>Written by <a href="http://www.bloggingtips.com/author/admin/" title="Posts by Kevin Muldoon">Kevin Muldoon</a> from <a href="http://www.system0.net">System0</a></p><p> Earlier today I posted details about how you can win a signed copy of Darren Rowse and Chris Garretts fantastic <a href="http://www.bloggingtips.com/2008/11/19/win-signed-copy-problogger-book/">ProBlogger Book</a>. Well I hope you still have an appetitie for another contest as I have news about 2 more!</p>
<p><strong>Contest 1 : Blog Design Group Writing Project</strong></p>
<p>The <a href="http://blogdesignstudio.com/free-wordpress-themes/free-custom-blog-design-contest-group-writing-project/">Group Writing Project</a> has been live for about a week but there are still 11 days left in this great competition. <a href="http://blogdesignstudio.com">Blog Design Studio</a>, designers of the current Blogging Tips design, are looking for bloggers to write a post of at least 250 words on the topic of <em>Blog Design</em>. I think this is a great contest idea as it means you will not only be adding great content to your blog, you might also win a prize for your efforts.</p>
<p>Here&#8217;s a list of the prizes you can win :</p>
<ol>
<li>Win a custom WordPress theme for your blog from <a href="http://blogdesignstudio.com/">Blog Design Studio</a> (worth hundreds of dollars).</li>
<li>Premium Theme from <a href="http://www.dailyblogtips.com">Daily Blog Tips</a> - Daniel has donated a premium theme from <a href="http://premiumthemesnow.com/">Premium Themes Now</a> as the prize for second place.</li>
<li>Consultation from Kevin Muldoon (yes me!) - I will be giving some consultation to the first winner of the contest and doing my best to help the blogger with their blog.</li>
<li>Consultation from Mayank from <a href="http://blogdesignstudio.com/">Blog Design Studio</a> - A prize for the third winner of the contest.</li>
</ol>
<p>For full details of the contest please visit the competition info page at the link below.</p>
<p>Link : <a href="http://blogdesignstudio.com/free-wordpress-themes/free-custom-blog-design-contest-group-writing-project/">Free custom blog design contest - group writing project!</a></p>
<p><strong>Contest 2 : Win a Template, Logo or Icon Pack at ProTycoon</strong></p>
<p>Steve Michael from <a href="http://www.brochuremonster.com/">Brochure Monster</a> contacted me recently about hosting a contest at <a href="http://www.protycoon.com">ProTycoon</a>, a great little blog I bought from former Blogging Tips author <a href="http://davidshawblog.com/">David Shaw</a> recently. </p>
<p>To win a prize you need to write a review of <a href="http://www.brochuremonster.com/">Brochure Monster</a> of around 200-250 posts. </p>
<p>There are three prizes up for grabs and each winner can choose from any of the following :</p>
<table border="0" cellspacing="5" cellpadding="5">
<tr>
<td>
<a href="http://www.buytemplates.net"><img src="http://www.protycoon.com/wp-content/uploads/2008/11/buytemplates.jpg" alt="Buy Templates" title="Buy Templates" width="200" height="51" class="alignnone size-full wp-image-412" /></a>
</td>
<td valign="top">
<strong>Prize Option 1</strong></p>
<p>You have the option to choose any of the templates at <a href="http://www.buytemplates.net">BuyTemplates</a>.
</td>
</tr>
<tr>
<td>
<a href="http://www.icongalore.com"><img src="http://www.protycoon.com/wp-content/uploads/2008/11/icongalore.jpg" alt="Icon Galore" title="Icon Galore" width="200" height="62" class="alignnone size-full wp-image-413" /></a></p>
</td>
<td valign="top">
<strong>Prize Option 2</strong></p>
<p>You have the option to choose any individual icon pack from <a href="http://www.icongalore.com">IconGalore</a>.
</td>
</tr>
<tr>
<td>
<a href="http://www.logoangel.com"><img src="http://www.protycoon.com/wp-content/uploads/2008/11/logoangel.jpg" alt="Logo Angel" title="Logo Angel" width="200" height="73" class="alignnone size-full wp-image-416" /></a></p>
</td>
<td valign="top">
<strong>Prize Option 2</strong></p>
<p>You have the option to choose a logo from <a href="http://www.logoangel.com">LogoAngel</a>.
</td>
</tr>
</table>
<p>Full details of this link can be found at the link below.</p>
<p>Link : <a href="http://www.protycoon.com/2008/11/19/template-logo-icon-pack/">Win a Template, Logo or Icon Pack</a></p>
<p>Both of these contests require you to write a review on your blog. It may not be suitable on your main blog but can review them on your personal blog if you wish. Good luck to those who decide to take part. <img src='http://www.bloggingtips.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<hr>Copyright &copy; 2008 <strong><a href="http://www.bloggingtips.com">Blogging Tips</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please <a href=http://www.bloggingtips.com/contact/>contact us</a> so we can take legal action immediately.<div class="feedflare">
<a href="http://feedproxy.google.com/~f/blogging-tips?a=bn2WWnsC"><img src="http://feedproxy.google.com/~f/blogging-tips?d=41" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=TirFsbhk"><img src="http://feedproxy.google.com/~f/blogging-tips?d=43" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=ApJlPLmr"><img src="http://feedproxy.google.com/~f/blogging-tips?i=ApJlPLmr" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=e8GxGZEv"><img src="http://feedproxy.google.com/~f/blogging-tips?d=50" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=o50ei9bA"><img src="http://feedproxy.google.com/~f/blogging-tips?i=o50ei9bA" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=eXt6nwjR"><img src="http://feedproxy.google.com/~f/blogging-tips?i=eXt6nwjR" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=kGyfETib"><img src="http://feedproxy.google.com/~f/blogging-tips?i=kGyfETib" border="0"></img></a>
</div><img src="http://feedproxy.google.com/~r/blogging-tips/~4/yOkDIK_Np0E" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.bloggingtips.com/2008/11/19/two-great-contests/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Blogging Jobs: How to Hire the Right Blogger for Your Blog</title>
		<link>http://www.bloggingtips.com/2008/11/19/blogging-jobs-how-to-hire-the-right-blogger-for-your-blog/</link>
		<comments>http://www.bloggingtips.com/2008/11/19/blogging-jobs-how-to-hire-the-right-blogger-for-your-blog/#comments</comments>
		<pubDate>Wed, 19 Nov 2008 15:12:13 +0000</pubDate>
		<dc:creator>Yuwanda Black from http://www.InkwellEditorial.com</dc:creator>
		
		<category><![CDATA[Writing]]></category>

		<category><![CDATA[blog writers]]></category>

		<category><![CDATA[blogging jobs]]></category>

		<category><![CDATA[freelance writers]]></category>

		<category><![CDATA[freelance writing jobs]]></category>

		<guid isPermaLink="false">http://www.bloggingtips.com/?p=4322</guid>
		<description><![CDATA[<p>I received an email from a new freelance blog writer recently asking if a blogging job she was offered was legit. I read the offer and indeed, it did seem like a legitimate job. So, she decided to take it. </p>
<p><strong>The $50/Week Blogging Job</strong></p>
<p>Two days later, she wrote me back to say that she didn’t think she was going to enjoy blogging, but she was going to complete the assignment because she had given her word.<br />
FYI, it was five short posts a week, 100-150 words, for $50. </p>
<p>The assignment is&#8230;</p>]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.googleadservices.com/~a/bPa-TiDuGKcHTwkVg2xCoZLNnxE/a"><img src="http://feedads.googleadservices.com/~a/bPa-TiDuGKcHTwkVg2xCoZLNnxE/i" border="0" ismap="true"></img></a></p><p>Written by <a href="http://www.bloggingtips.com/author/inkwelleditorial/" title="Posts by Yuwanda Black">Yuwanda Black</a> from <a href="http://www.InkwellEditorial.com">Inkwell Editorial</a></p><p>I received an email from a new freelance blog writer recently asking if a blogging job she was offered was legit. I read the offer and indeed, it did seem like a legitimate job. So, she decided to take it. </p>
<p><strong>The $50/Week Blogging Job</strong></p>
<p>Two days later, she wrote me back to say that she didn’t think she was going to enjoy blogging, but she was going to complete the assignment because she had given her word.<br />
FYI, it was five short posts a week, 100-150 words, for $50. </p>
<p>The assignment is to last into perpetuity. If all goes well for the first few weeks, this blog owner wants the poster to perhaps do more work for some other blogs he has. </p>
<p>So what’s the problem? </p>
<p><strong>Signs a Blog Writer is Going to Bail</strong></p>
<p>The problem is this blogger is probably going to bail on this guy, just when he’s thinking that he’s gotten a reliable blogger and can finally focus on other things. As a former recruiter and as someone who’s hired hundreds of freelance writers, my gut just tells me that this is not going to last long. </p>
<p>If you’re thinking about hiring a freelance writer to blog for you, following are some guidelines to adhere to to locate the most reliable blogger. </p>
<p><strong>Blog Employers: Guidelines for Hiring the Perfect Blogger</strong></p>
<p><strong>Treat it Like a Real Job Opening:</strong> Blog writing is a bona fide profession now. Hence, you need to treat the hiring process like any other &#8220;real job.&#8221; This means getting some type of interview/vetting process in order.</p>
<p><strong>Check The Blog Writer&#8217;s Blog: </strong>Part of the aforementioned vetting process should involve checking the blog writer’s blog. Look for things like how long they’ve had a blog, how often they’ve updated it, what their writing style is, etc. </p>
<p><strong>Test Run: </strong>Before piling on assignments, give the blogger to be a test run. Eg, “write a month’s worth of posts and we’ll come to a more permanent arrangement after that.”</p>
<p><strong>Pay a Fair Rate: </strong>Now this can be sticky, as there seem to be no set blogging rates. <em>With freelance writers, you usually get more than what you pay for</em>, so pay a decent rate if you find a blogger you like, especially if you want them to stick around for a the long haul. </p>
<p>If you’re lowballing, trust me, as soon as the blog writer finds a few more better paying gigs, off they’ll go – and rightly so. <em><strong>Good, dependable</strong></em> writers are worth their weight in gold (and of course, I speak from a completely unbiased point of view :-)).</p>
<p>If your blog is your business, give the blog writer the same respect you would to any valued employee of a company you’re running. This means paying a decent wage.</p>
<p><strong>Beware of the Experimenting Freelance Blog Writer</strong></p>
<p>Many freelancers try freelancing on for size. What I mean is, they’ll do it on the side, or they’ll take a freelance writing job or two just to see “if it works out.” This is what happened to the blogger above. She was idly surfing Craigslist one day while at her full-time job. On a lark, she applied to the job listing and landed the gig.</p>
<p><strong>The Full-time Freelance Blog Writer versus the Part-time Freelance Blog Writer</strong></p>
<p>There are many freelancers out there like this. <em><strong>While there are many reliable part-time freelance writers, I always prefer to work with full-time freelancers.</strong></em> Why? Because they tend to take jobs more seriously, adhere to deadlines and value each job more – for obvious reasons.</p>
<p>Remember, I owned an editorial staffing agency in New York City for 8 years and was a recruiter for 12 years, so I’m writing from a whole lot of first-hand experience here. </p>
<p>If you’re serious about hiring freelance blog writers, keep these tips in mind when you start the recruiting process.</p>
<hr>Copyright &copy; 2008 <strong><a href="http://www.bloggingtips.com">Blogging Tips</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please <a href=http://www.bloggingtips.com/contact/>contact us</a> so we can take legal action immediately.<div class="feedflare">
<a href="http://feedproxy.google.com/~f/blogging-tips?a=9bumR27v"><img src="http://feedproxy.google.com/~f/blogging-tips?d=41" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=yrJbWYPQ"><img src="http://feedproxy.google.com/~f/blogging-tips?d=43" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=hpLaagG6"><img src="http://feedproxy.google.com/~f/blogging-tips?i=hpLaagG6" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=pqt3s864"><img src="http://feedproxy.google.com/~f/blogging-tips?d=50" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=AHLYTrCj"><img src="http://feedproxy.google.com/~f/blogging-tips?i=AHLYTrCj" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=CxZGoCnf"><img src="http://feedproxy.google.com/~f/blogging-tips?i=CxZGoCnf" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=pzxmjqYL"><img src="http://feedproxy.google.com/~f/blogging-tips?i=pzxmjqYL" border="0"></img></a>
</div><img src="http://feedproxy.google.com/~r/blogging-tips/~4/YJAf9gCNfns" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.bloggingtips.com/2008/11/19/blogging-jobs-how-to-hire-the-right-blogger-for-your-blog/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Blog Blazers - 40 Top Bloggers Share Their Secrets</title>
		<link>http://www.bloggingtips.com/2008/11/19/blog-blazers-review/</link>
		<comments>http://www.bloggingtips.com/2008/11/19/blog-blazers-review/#comments</comments>
		<pubDate>Wed, 19 Nov 2008 13:00:30 +0000</pubDate>
		<dc:creator>Kevin Muldoon from http://www.system0.net</dc:creator>
		
		<category><![CDATA[Reviews]]></category>

		<guid isPermaLink="false">http://www.bloggingtips.com/?p=4311</guid>
		<description><![CDATA[ <p> <a href="http://www.blogblazers.com/"><img src="http://www.bloggingtips.com/wp-content/uploads/2008/11/blogblazersbook.jpg" alt="Blog Blazers" title="Blog Blazers" width="196" height="264" class="alignnone size-full wp-image-4312" align="right"/></a>Yesterday I received a copy of <a href="http://www.followsteph.com/">Stephane Grenier&#8217;s</a> new blogging book <a href="http://www.blogblazers.com/">Blog Blazers</a>, or to give the book it&#8217;s full title, <em>Blog Blazers :  40 Top Bloggers Share Their Secrets to Creating a High-Profile, High Traffic, and High-Profit Blog! </em>.</p>
<p>In the book Stephane interviews 40 of the most influential bloggers on the web. It&#8217;s a very simple concept but as you know, sometimes those are the ones which work the best. Stephane first started developing this book about a year and a half ago and you can see the general outline&#8230;</p> ]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.googleadservices.com/~a/NDUNuFT3QPM2IIs56figqB8LOgE/a"><img src="http://feedads.googleadservices.com/~a/NDUNuFT3QPM2IIs56figqB8LOgE/i" border="0" ismap="true"></img></a></p><p>Written by <a href="http://www.bloggingtips.com/author/admin/" title="Posts by Kevin Muldoon">Kevin Muldoon</a> from <a href="http://www.system0.net">System0</a></p><p> <a href="http://www.blogblazers.com/"><img src="http://www.bloggingtips.com/wp-content/uploads/2008/11/blogblazersbook.jpg" alt="Blog Blazers" title="Blog Blazers" width="196" height="264" class="alignnone size-full wp-image-4312" align="right"/></a>Yesterday I received a copy of <a href="http://www.followsteph.com/">Stephane Grenier&#8217;s</a> new blogging book <a href="http://www.blogblazers.com/">Blog Blazers</a>, or to give the book it&#8217;s full title, <em>Blog Blazers :  40 Top Bloggers Share Their Secrets to Creating a High-Profile, High Traffic, and High-Profit Blog! </em>.</p>
<p>In the book Stephane interviews 40 of the most influential bloggers on the web. It&#8217;s a very simple concept but as you know, sometimes those are the ones which work the best. Stephane first started developing this book about a year and a half ago and you can see the general outline for the book in his post &#8216;<a href="http://www.followsteph.com/2007/05/02/marketing-and-sales-for-small-online-businesses/">Marketing And Sales For Small Online Businesses</a>&#8216;. </p>
<p>Before I talk more about the book, I though it would be good to give you all a little information about the books author <img src='http://www.bloggingtips.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>About the Author</strong></p>
<p><a href="http://www.followsteph.com/"><img src="http://www.bloggingtips.com/wp-content/uploads/2008/11/stephane.jpg" alt="Stephane Grenier" title="Stephane Grenier" width="150" height="100" class="alignnone size-full wp-image-4313" align="right"/></a>Stephane Grenier has been working online for several years. In 2003 he established his flasgship company <a href="http://www.landlordmax.com/">LandLord Max</a>, which sells Property Management Software to real estate agents. </p>
<p>In June 2005 Stephane started blogging about himself and his online successes and failures on his blog <a href="http://www.followsteph.com/">Follow Steph</a>. This blog has now become the main source of marketing and advertising for <a href="http://www.landlordmax.com/">LandLord Max</a> and gets over 500,000 unique visitors per year.</p>
<p><strong>Blog Blazers - 40 Top Bloggers Share Their Secrets</strong></p>
<p>After a quick summary about blogging and why Stephane wrote this book, the book dives right into the interviews. The 40 interviews are packed into 206 pages with each interview being around 4-6 pages long, which I think is a good length as no interview seems to drag on too long.</p>
<p>Because each interview is only 4-6 pages in length, the book has a sort of magazine feel to it i.e. you don&#8217;t have to concentrate really hard when reading or sit and take notes. That&#8217;s not to say there isn&#8217;t a lot of great information in this book, far from it, however because each interview is just a few pages long and because the interviews have so many questions in them, the information is just so much easier to digest.</p>
<p>Here is a list of all the bloggers who are interviewed in this book. I&#8217;m sure you will recognise some of the names <img src='http://www.bloggingtips.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://www.blogblazers.com/"><img src="http://www.bloggingtips.com/wp-content/uploads/2008/11/40-top-bloggers.gif" alt="Blog Blazers" title="Blog Blazers" width="370" height="128" class="alignnone size-full wp-image-4314" align="right"/></a>
<ul>
<li>Aaron Wall from <a href="http://www.seobook.com/blog">SEO Book</a></li>
<li>Ades Tynyshev from <a href="http://www.adesblog.com/">Ades Blog</a></li>
<li>Al Carlton from  <a href="http://www.coolest-gadgets.com/">Coolest-Gadgets.com</a></li>
<li>Alex Papadimoulis of <a href="http://worsethanfailure.com/Default.aspx">Worse Than Failure</a></li>
<li>Andy Brice from <a href="http://successfulsoftware.net/">Success Software</a></li>
<li>Anita Campbell from <a href="http://www.smallbiztrends.com/">Small Business Trends</a></li>
<li>Asha Dornfest from <a href="http://www.parenthacks.com/">Parent Hacks</a></li>
<li>Ben Casnocha from <a href="http://mystartuplife.com/">My Startup Life</a></li>
<li>Ben Yoskovitz from <a href="http://www.instigatorblog.com/">Instigator Blog</a></li>
<li>Bob Walsh from <a href="http://www.47hats.com/">47 Hats</a></li>
<li>Dan Lyons from <a href="http://fakesteve.blogspot.com/">The Secret Diary of Steve Jobs</a></li>
<li>Dane Carlson from <a href="http://www.business-opportunities.biz/">Dane Carlson’s Business Opportunities Weblog</a></li>
<li>David Armano from <a href="http://darmano.typepad.com/">Logic+Emotion</a></li>
<li><a href="http://davidseah.com/">David Seah</a></li>
<li><a href="http://dereksemmler.com/">Derek Semmler</a></li>
<li>Dharmesh Shah from <a href="http://onstartups.com/">On Startups</a></li>
<li><a href="http://www.ericsink.com/">Eric Sink</a></li>
<li>Ian Landsman of <a href="http://www.userscape.com/blog/">Userscape</a></li>
<li>James and Alex Turnbull from <a href="http://googlesightseeing.com/">Google Sightseeing</a></li>
<li>JD from <a href="http://getrichslowly.org/blog/">Get Rich Slowly</a></li>
<li>Jeff Atwood from <a href="http://www.codinghorror.com/blog/">Coding Horror</a></li>
<li>Jeff Clavier from <a href="http://blog.softtechvc.com/">Jeff Clavier’s Software Only</a></li>
<li>Jennette Fulda from <a href="http://www.pastaqueen.com/">Half of Me</a></li>
<li>Jenny from <a href="http://101reasonsihatebeingfat.blogspot.com/">101 Reasons I Hate Being Fat!</a></li>
<li>Jessamyn West from <a href="http://www.librarian.net/">Librarian.net</a></li>
<li>Joel Cheesman from <a href="http://www.cheezhead.com/">Cheezhead</a></li>
<li><a href="http://snook.ca/jonathan/">Jonathan Snook</a></li>
<li>Manolo from <a href="http://shoeblogs.com/">Manolo’s Shoe Blog</a></li>
<li>Neil Patel from <a href="http://www.quicksprout.com/">Quick Sprout</a></li>
<li>Pamela Slim from <a href="http://www.escapefromcubiclenation.com/">Escape from Cubicle Nation</a></li>
<li>Patrick McKenzie from <a href="http://microisvjournal.wordpress.com/">Micro ISV on a Shoestring</a></li>
<li>Penelope Trunk from <a href="http://blog.penelopetrunk.com/">Brazen Careerist</a></li>
<li>Ramit Sethi from <a href="http://www.iwillteachyoutoberich.com/">I will Teach You to be Rich</a></li>
<li>Rob Walling from <a href="http://www.softwarebyrob.com/">Software By Rob</a></li>
<li>Rohit Bhargava from <a href="http://rohitbhargava.typepad.com/">Influential Marketing Blog</a></li>
<li><a href="http://sethgodin.typepad.com/seths_blog/"> Seth Godin</a></li>
<li>Stephane Grenier from <a href="../2008/06/24/">Follow Steph</a> (the author himself!)</li>
<li>Steve Rubel from <a href="http://www.micropersuasion.com/">Micro Persuasion</a></li>
<li>Trent Hamm from <a href="http://www.thesimpledollar.com/">The Simple Dollar</a></li>
<li>Yaro Starak from <a href="http://www.entrepreneurs-journey.com/">Entrepreneur’s Journey</a></li>
</ul>
<p>Each blogger was asked a range of questions rancing from the basic &#8216;Which five blogs do you regularly Read?&#8217; to the more taxing &#8216;What is your best monetization method?&#8217;. The answers were very interesting and highlights how different some high profile bloggers think.</p>
<p>For example, when asked about which blogs they read some bloggers preferred smaller more personal blogs, others preferred larger more mainstream blogs which broke news whilst others confessed to not even reading blogs on a regular basis.</p>
<p>There are hundreds of blogs referenced in the book, you will be familar with many of them but there are lots you won&#8217;t (I&#8217;ve added a few to my newsfeed already!).</p>
<p><strong>Summary</strong></p>
<p>Retailing at 16.95 US Dollars, <a href="http://www.blogblazers.com/">Blog Blazers</a> is a thoroughly enjoyable book which you will find hard to put down. It gives a great insight into how some of the most successful bloggers on the internet think and what they believe is most important when developing and marketing a blog.</p>
<p>If you are looking for some inspiration for your blog then you can do much worse than pick up a copy of Blog Blazers. Recommended <img src='http://www.bloggingtips.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Link : <a href="http://www.blogblazers.com/">Blog Blazers</a></p>
<hr>Copyright &copy; 2008 <strong><a href="http://www.bloggingtips.com">Blogging Tips</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please <a href=http://www.bloggingtips.com/contact/>contact us</a> so we can take legal action immediately.<div class="feedflare">
<a href="http://feedproxy.google.com/~f/blogging-tips?a=S9tGXh85"><img src="http://feedproxy.google.com/~f/blogging-tips?d=41" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=RBIJNgsB"><img src="http://feedproxy.google.com/~f/blogging-tips?d=43" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=zpFMZeAq"><img src="http://feedproxy.google.com/~f/blogging-tips?i=zpFMZeAq" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=XIzqMnAE"><img src="http://feedproxy.google.com/~f/blogging-tips?d=50" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=y1NVhpSZ"><img src="http://feedproxy.google.com/~f/blogging-tips?i=y1NVhpSZ" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=sgeuXEAl"><img src="http://feedproxy.google.com/~f/blogging-tips?i=sgeuXEAl" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=ztmu3M6J"><img src="http://feedproxy.google.com/~f/blogging-tips?i=ztmu3M6J" border="0"></img></a>
</div><img src="http://feedproxy.google.com/~r/blogging-tips/~4/_6Tv4WotqQ4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.bloggingtips.com/2008/11/19/blog-blazers-review/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Win a signed copy of Darren Rowse’s ProBlogger Book</title>
		<link>http://www.bloggingtips.com/2008/11/19/win-signed-copy-problogger-book/</link>
		<comments>http://www.bloggingtips.com/2008/11/19/win-signed-copy-problogger-book/#comments</comments>
		<pubDate>Wed, 19 Nov 2008 13:00:07 +0000</pubDate>
		<dc:creator>Kevin Muldoon from http://www.system0.net</dc:creator>
		
		<category><![CDATA[Competitions]]></category>

		<guid isPermaLink="false">http://www.bloggingtips.com/?p=4297</guid>
		<description><![CDATA[ <p> Today is the sixth week of our <a href="http://www.bloggingtips.com/2008/10/13/blogging-tips-forum-competition/">$1,500 Forum Competition</a>.</p>
<p><a href='http://probloggerbook.com/'><img src="http://www.bloggingtips.com/wp-content/uploads/2008/04/problogger.gif" alt="ProBlogger" title="problogger" width="125" height="174" class="alignnone size-full wp-image-1535" align="right"/></a>This week we have 2 signed copies of  ‘<a href="http://probloggerbook.com/">ProBlogger : Secrets for Blogging Your Way to a Six-Figure Income</a>‘ up for grabs. Co-written by <a href="http://www.chrisg.com/">Chris Garrett</a> and <a href="http://www.problogger.net">Darren Rowse</a>,  the ProBlogger book has been <a href="http://www.bloggingtips.com/2008/05/19/problogger-secrets-for-blogging-your-way-to-a-six-figure-income/">hugely popular</a> and is one of the best blogging books available.</p>
<p>This 10 chapter book covers <a href="http://www.bloggingtips.com/2008/05/19/problogger-secrets-for-blogging-your-way-to-a-six-figure-income/">every aspect of blogging for money</a> and has something for everyone in it.</p>
<p>To find out more about the book please check out the <a href="http://probloggerbook.com/">Official ProBlogger Book Website</a>.</p>
<p><strong>Competition Details</strong></p>
<p>Here is this weeks challenge :</p>
<blockquote><p>Post your best&#8230;</p></blockquote> ]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.googleadservices.com/~a/CG08VldiPKrt7W_zSWGH7olGxmc/a"><img src="http://feedads.googleadservices.com/~a/CG08VldiPKrt7W_zSWGH7olGxmc/i" border="0" ismap="true"></img></a></p><p>Written by <a href="http://www.bloggingtips.com/author/admin/" title="Posts by Kevin Muldoon">Kevin Muldoon</a> from <a href="http://www.system0.net">System0</a></p><p> Today is the sixth week of our <a href="http://www.bloggingtips.com/2008/10/13/blogging-tips-forum-competition/">$1,500 Forum Competition</a>.</p>
<p><a href='http://probloggerbook.com/'><img src="http://www.bloggingtips.com/wp-content/uploads/2008/04/problogger.gif" alt="ProBlogger" title="problogger" width="125" height="174" class="alignnone size-full wp-image-1535" align="right"/></a>This week we have 2 signed copies of  ‘<a href="http://probloggerbook.com/">ProBlogger : Secrets for Blogging Your Way to a Six-Figure Income</a>‘ up for grabs. Co-written by <a href="http://www.chrisg.com/">Chris Garrett</a> and <a href="http://www.problogger.net">Darren Rowse</a>,  the ProBlogger book has been <a href="http://www.bloggingtips.com/2008/05/19/problogger-secrets-for-blogging-your-way-to-a-six-figure-income/">hugely popular</a> and is one of the best blogging books available.</p>
<p>This 10 chapter book covers <a href="http://www.bloggingtips.com/2008/05/19/problogger-secrets-for-blogging-your-way-to-a-six-figure-income/">every aspect of blogging for money</a> and has something for everyone in it.</p>
<p>To find out more about the book please check out the <a href="http://probloggerbook.com/">Official ProBlogger Book Website</a>.</p>
<p><strong>Competition Details</strong></p>
<p>Here is this weeks challenge :</p>
<blockquote><p>Post your best blog tip in 140 characters or less</p></blockquote>
<p>As always, I think it&#8217;s important that things are kept fair and competitive :</p>
<ul>
<li>You are only allowed one entry so make it count!</li>
<li>Ideas/Suggestions should be original ie. don&#8217;t just copy someone elses idea and try and claim it as your own.</li>
<li>Deadline for entries is 12pm ET Tuesday 25th November 2008</li>
</ul>
<p>On Tuesday 25th November <a href="http://www.problogger.net">Darren</a> will choose what he believes to be the best response</p>
<p>All entries must be submitted in the forum thread mentioned below. Good luck <img src='http://www.bloggingtips.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Link : <a href="http://www.bloggingtips.com/forums/showthread.php?t=606">Win a signed copy of Darren Rowse&#8217;s ProBlogger Book</a></p>
<hr>Copyright &copy; 2008 <strong><a href="http://www.bloggingtips.com">Blogging Tips</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please <a href=http://www.bloggingtips.com/contact/>contact us</a> so we can take legal action immediately.<div class="feedflare">
<a href="http://feedproxy.google.com/~f/blogging-tips?a=hllSDr8O"><img src="http://feedproxy.google.com/~f/blogging-tips?d=41" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=pq1hru9c"><img src="http://feedproxy.google.com/~f/blogging-tips?d=43" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=e776D1pO"><img src="http://feedproxy.google.com/~f/blogging-tips?i=e776D1pO" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=1Ly4uklO"><img src="http://feedproxy.google.com/~f/blogging-tips?d=50" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=Gqi8HNAo"><img src="http://feedproxy.google.com/~f/blogging-tips?i=Gqi8HNAo" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=1GUlxMHa"><img src="http://feedproxy.google.com/~f/blogging-tips?i=1GUlxMHa" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=xLxvlctq"><img src="http://feedproxy.google.com/~f/blogging-tips?i=xLxvlctq" border="0"></img></a>
</div><img src="http://feedproxy.google.com/~r/blogging-tips/~4/-N0EVpvZU7I" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.bloggingtips.com/2008/11/19/win-signed-copy-problogger-book/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Why Bloggers Shouldn’t Worry About Subscriber Counts</title>
		<link>http://www.bloggingtips.com/2008/11/18/why-bloggers-shouldn%e2%80%99t-worry-about-subscriber-counts/</link>
		<comments>http://www.bloggingtips.com/2008/11/18/why-bloggers-shouldn%e2%80%99t-worry-about-subscriber-counts/#comments</comments>
		<pubDate>Tue, 18 Nov 2008 15:00:49 +0000</pubDate>
		<dc:creator>Yuwanda Black from http://www.InkwellEditorial.com</dc:creator>
		
		<category><![CDATA[Blogging]]></category>

		<category><![CDATA[blog subscribers]]></category>

		<category><![CDATA[subscriber count]]></category>

		<guid isPermaLink="false">http://www.bloggingtips.com/?p=4309</guid>
		<description><![CDATA[<p>One of the responders to <a href="http://www.bloggingtips.com/2008/11/17/blogging-in-a-recession-how-to-keep-the-visitors-flowing-in/#comments">my post yesterday</a> wrote the following comment:</p>
<blockquote><p>I think the subscribers thing is overrated now after I have quite blogging. I finally realized that the non-subscribers are the ones that actually participate and interact in the blog posts.</p></blockquote>
<p>I’m not so sure about the truth of this on its face, but it kind of solidified what I’ve believed for a long time. Mainly that, you shouldn’t worry so much about your blog’s subscriber count – at least for the first year of blogging. Following is why.</p>
<p><strong>2 Reasons to&#8230;</strong></p>]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.googleadservices.com/~a/bJSH_rZNW8VnM0B2SZPHs6UljOs/a"><img src="http://feedads.googleadservices.com/~a/bJSH_rZNW8VnM0B2SZPHs6UljOs/i" border="0" ismap="true"></img></a></p><p>Written by <a href="http://www.bloggingtips.com/author/inkwelleditorial/" title="Posts by Yuwanda Black">Yuwanda Black</a> from <a href="http://www.InkwellEditorial.com">Inkwell Editorial</a></p><p>One of the responders to <a href="http://www.bloggingtips.com/2008/11/17/blogging-in-a-recession-how-to-keep-the-visitors-flowing-in/#comments">my post yesterday</a> wrote the following comment:</p>
<blockquote><p>I think the subscribers thing is overrated now after I have quite blogging. I finally realized that the non-subscribers are the ones that actually participate and interact in the blog posts.</p></blockquote>
<p>I’m not so sure about the truth of this on its face, but it kind of solidified what I’ve believed for a long time. Mainly that, you shouldn’t worry so much about your blog’s subscriber count – at least for the first year of blogging. Following is why.</p>
<p><strong>2 Reasons to Forget Your Blog’s Subscriber Count</strong></p>
<p><em>Remember, I said for the first year. </em></p>
<p><strong>Focus: </strong>During the first year of blogging is when you will find your focus. You may start out with one idea in mind, but once you start blogging, you may find that your blog takes on a different direction. </p>
<p>This can happen because of something that switches within you, or the way your blog’s readers pull you.</p>
<p>If you’re constantly obsessing over how many subscribers you have during this time, you can easily overlook what your blog wants to be – because you’re trying to “force” it in another direction.</p>
<p><strong>Systems:</strong> After you’ve finally found a tight focus for your blog &#8212; ie, nailed a niche &#8212; then it’s time to put systems and processes in place to help you get your blog to the next level.</p>
<p>These systems will include things like blogging routine; advertisers you plan to target; charting out a growth plan; getting a professional blog design; adding a newsletter; etc. </p>
<p>After all of these tangibles are in place is when you start to build your blogging empire.</p>
<p>If you’re too focused on your subscriber count before you get these things in place, you run the risk of losing subscribers anyway. Why? Because once you get all of these elements in place, your blog is probably going to look different from the one you started with.</p>
<p>This alone will lose you some subscribers – and gain you others.</p>
<p><strong>Conclusion about Blog Subscribers</strong></p>
<p>The bottom line with blogging is that it is NOT a get-rich-quick scheme, which is why so many focus on subscribers, subscribers, subscribers in the first place. </p>
<p>If you’ve thoroughly researched your niche; put all of the behind-the-scenes elements in place for success; and work you tail off; subscribers are most likely going to come anyway. But, don’t cater to them before you have a solid product/service/business to offer. </p>
<p>Remember, what you’re building is a blogging business; you’re not “just blogging.”</p>
<hr>Copyright &copy; 2008 <strong><a href="http://www.bloggingtips.com">Blogging Tips</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please <a href=http://www.bloggingtips.com/contact/>contact us</a> so we can take legal action immediately.<div class="feedflare">
<a href="http://feedproxy.google.com/~f/blogging-tips?a=dIBW6lIU"><img src="http://feedproxy.google.com/~f/blogging-tips?d=41" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=LIBwQTWA"><img src="http://feedproxy.google.com/~f/blogging-tips?d=43" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=XKqOIVCO"><img src="http://feedproxy.google.com/~f/blogging-tips?i=XKqOIVCO" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=qYCHEYdw"><img src="http://feedproxy.google.com/~f/blogging-tips?d=50" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=VQlXTJrA"><img src="http://feedproxy.google.com/~f/blogging-tips?i=VQlXTJrA" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=FJWogHCn"><img src="http://feedproxy.google.com/~f/blogging-tips?i=FJWogHCn" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=0gjY0WE8"><img src="http://feedproxy.google.com/~f/blogging-tips?i=0gjY0WE8" border="0"></img></a>
</div><img src="http://feedproxy.google.com/~r/blogging-tips/~4/kiO_cQyeHxI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.bloggingtips.com/2008/11/18/why-bloggers-shouldn%e2%80%99t-worry-about-subscriber-counts/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Interview with Suzanne Franco</title>
		<link>http://www.bloggingtips.com/2008/11/18/interview-with-suzanne-franco/</link>
		<comments>http://www.bloggingtips.com/2008/11/18/interview-with-suzanne-franco/#comments</comments>
		<pubDate>Tue, 18 Nov 2008 15:00:44 +0000</pubDate>
		<dc:creator>Kevin Muldoon from http://www.system0.net</dc:creator>
		
		<category><![CDATA[Interviews]]></category>

		<guid isPermaLink="false">http://www.bloggingtips.com/?p=4287</guid>
		<description><![CDATA[ <p> <a href="http://www.suzannefranco.com"><img src="http://www.bloggingtips.com/wp-content/uploads/2008/11/suzzannefranco.png" alt="Suzanne Franco" title="Suzanne Franco" width="200" height="189" class="alignnone size-full wp-image-4288" align="right"/></a>I&#8217;m sure many of you will know Blogging Tips Forum member <a href="http://www.suzannefranco.com">Suzzane Franco</a> (forum username <a href="http://www.bloggingtips.com/forums/member.php?u=345">wahmsuzanne</a>), who has been blogging since February 2008. Her blog covers a wide range of topics including affiliate marketing, social networking, search engine optimisation and more.</p>
<p>Suzanne is taking part in <a href="http://www.dailyblogtips.com/">Daily Blog Tips</a> blogging contest <a href="http://www.dailyblogtips.com/blogging-idol-2-show-time/">Blogging Idol 2</a> and is currently sitting in a respectable <a href="http://www.dailyblogtips.com/blogging-idol-2-live-scoreboard/">11th place</a>. </p>
<p>With so many blogs taking part in Blogging Idol, participants need to come up with new and inventive ways to get ahead of the competition and Suzanne has done just that.&#8230;</p> ]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.googleadservices.com/~a/3YYBd3e9_VdlYTlAiW-QCppJ_wc/a"><img src="http://feedads.googleadservices.com/~a/3YYBd3e9_VdlYTlAiW-QCppJ_wc/i" border="0" ismap="true"></img></a></p><p>Written by <a href="http://www.bloggingtips.com/author/admin/" title="Posts by Kevin Muldoon">Kevin Muldoon</a> from <a href="http://www.system0.net">System0</a></p><p> <a href="http://www.suzannefranco.com"><img src="http://www.bloggingtips.com/wp-content/uploads/2008/11/suzzannefranco.png" alt="Suzanne Franco" title="Suzanne Franco" width="200" height="189" class="alignnone size-full wp-image-4288" align="right"/></a>I&#8217;m sure many of you will know Blogging Tips Forum member <a href="http://www.suzannefranco.com">Suzzane Franco</a> (forum username <a href="http://www.bloggingtips.com/forums/member.php?u=345">wahmsuzanne</a>), who has been blogging since February 2008. Her blog covers a wide range of topics including affiliate marketing, social networking, search engine optimisation and more.</p>
<p>Suzanne is taking part in <a href="http://www.dailyblogtips.com/">Daily Blog Tips</a> blogging contest <a href="http://www.dailyblogtips.com/blogging-idol-2-show-time/">Blogging Idol 2</a> and is currently sitting in a respectable <a href="http://www.dailyblogtips.com/blogging-idol-2-live-scoreboard/">11th place</a>. </p>
<p>With so many blogs taking part in Blogging Idol, participants need to come up with new and inventive ways to get ahead of the competition and Suzanne has done just that. She sent personal videos to several <em>Gurus</em> asking for support in her quest to win Blogging Idol 2.</p>
<p>She sent videos to the following people :</p>
<ul>
<li><a href="http://www.suzannefranco.com/travis-the-bum-marketer-supports-suzanne-franco-as-the-next-blogging-idol">Travis (Sago) The Bum Marketer</a></li>
<li><a href="http://www.suzannefranco.com/bob-the-teacher-supports-suzanne-franco-as-the-next-blogging-idol">Bob The Teacher</a></li>
<li><a href="http://www.suzannefranco.com/rich-schefren-supports-suzanne-franco-as-the-next-blogging-idol">Rich Schefren</a></li>
<li><a href="http://www.suzannefranco.com/derek-gehl-supports-suzanne-franco-as-the-next-blogging-idol">Derek Gehl</a></li>
<li><a href="http://www.suzannefranco.com/frank-kern-supports-suzanne-franco-as-the-next-blogging-idol">Frank Kern</a></li>
<li><a href="http://www.suzannefranco.com/john-chow-supports-suzanne-franco-as-the-next-blogging-idol">John Chow</a></li>
</ul>
<p>Here is the video Suzanne did especially for <a href="http://www.johnchow.com">John Chow</a>.</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/BR6Ubjeu1Ms&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/BR6Ubjeu1Ms&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
<p>John was very impressed with Suzannes creative and original idea to personalise videos and a day later he gave his <a href="http://www.johnchow.com/suzanne-franco-the-next-blogging-idol/">full support to Suzanne in the competition</a>. Getting exposure on a blog with around 40,000 subscribers can give your blog a huge boost so I contacted Suzanne to ask her a few questions about her blog and her progress in the <a href="http://www.dailyblogtips.com/blogging-idol-2-show-time/">Blogging Idol 2</a> competition. </p>
<p>Suzanne has answered my questions via email and via video. Enjoy <img src='http://www.bloggingtips.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>The Interview</strong></p>
<p><em>Video Interview</em> </p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/G-xgyTdpwHQ&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/G-xgyTdpwHQ&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
<p><em>Email Interview</em></p>
<p><strong>First off, for those who don&#8217;t know you, can you tell everyone a little about yourself and how you first got into blogging.</strong></p>
<p>I’m originally from Southern California (Orange County and San Diego) and relocated to the Texas Hill Country about 7 years ago. I’m work at home mom to Austin 13, Nathan 11 and Emily 9 … and soon-to-be stepmom to Alyssa 8 and Cobey 6 so as you can imagine we have a very busy household with sports and homework … not to mention meals! LOL</p>
<p>I got into blogging by accident really. I was hoping to find a creative way to market products through the eBay affiliate program so I started my <a href="http://www.review-mama.com">Review Mama</a> site. I quickly realized that I knew nothing about blogging or Wordpress and I actually started hanging around the forum here on Blogging Tips. Kevin, you probably remember that I was there uncomfortably asking all of the newbie questions and you were all so patient with me … so thank you for that. I had the <a href="http://www.suzannefranco.com">suzannefranco.com</a> domain for many years but there was nothing there. I decided to load WP there so I can try to learn how to use it without messing up my new review blog. I posted about my life and my kids and eventually I started posting about how I was making money online. I found quickly that I enjoyed it more than the other things I was doing online so I set out to learn all I could about blogging. </p>
<p><strong>Your blog has been online for about three quarters of a year now. Have you experienced a lot of highs and lows during this time?</strong></p>
<p>Well, I’m embarrassed to say that I back-dated some posts so that IF anyone actually showed up it wouldn’t look like I just started … so my posts started some time in May of this year.</p>
<p>My lows with anything internet related (and this is no exception) most always evolve around something techie going wrong. I’ve never had any training at all and everything I do is self-taught through research online. I would get frustrated by any type of coding, or file transfer … and I’ve had to learn the hard way to backup before I touch anything on my sites. *sigh*</p>
<p>The highs have honestly been in the great people I’ve met and the fun I’m having. I love “working” now and will challenge myself to know and understand more about blogging each and every day. My most recent highs have been related to the Blogging Idol contest and all I can say it’s been really fun!</p>
<p><strong>I was very impressed with your idea to film personal videos for several high profile bloggers. Was something you had been thinking about for a while or was it more of a &#8216;quick flash&#8217; of inspiration?</strong></p>
<p>Well, the rules for Blogging Idol changed last minute so it wasn’t something I thought about for very long, no. We stayed with friends for the Halloween weekend and I was running ideas by everyone there and I got a lot of blank stares. They are not from the blogging world so they just didn’t “get” what I was trying to accomplish.</p>
<p>The strategies for the video invites were two-fold. I was hoping that at least one of these guys would show up to my blog and surprise all of us. But, honestly, I knew there was a chance that none of them would. The idea was to be a bit bold, to get my readers involved, and hope they’d subscribe to keep up on what was going on with it … and to hopefully take it viral with everyone else tracking these guys down to try to get them to come over to the blog. John responded very quickly after I emailed him … and I was floored (still am). The invites have paid off and, in fact, Bob The Teacher and I are planning to get together and do a teleconference of some sort so watch for that too. </p>
<p><strong>There&#8217;s around 2 weeks left in Blogging Idol 2. Do you have something big planned for the next 2 weeks to encourage more people to subscribe to your blog?</strong></p>
<p>Yes, I am putting together a contest that should launch as soon as Daniel opens up the voting. I am still looking for prize donations so I’d encourage anyone interested in some great promotion to contact me about that. I am also still offering to reserve a free spot in my upcoming Blogging for Bucks BootCamp just for subscribing to my feed.</p>
<p><strong>What do you have in store for SuzanneFranco.com readers, after the Blogging Idol 2 competition has finished? </strong></p>
<p>I will continue to stretch myself to learn and share everything I can about blogging with others. One of my favorite quotes is by Zig Ziglar, “If you help enough people get what they want … you’ll get what you want.” If I make my job helping others … I will be rewarded for that. </p>
<p>* <em>End of Interview</em> * </p>
<p>A big thank you to <a href="http://www.suzannefranco.com/">Suzanne Franco</a> for taking part in this interview. I&#8217;m sure you all enjoyed it and I encourage all BloggingTips readers to support Suzanne and <a href="http://feeds.feedburner.com/MoneyMakingIdeasSuzanne">subscribe</a> to her blog <img src='http://www.bloggingtips.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Blog Link : <a href="http://www.suzannefranco.com/">Suzanne Franco</a>, RSS Link : <a href=" http://feeds.feedburner.com/MoneyMakingIdeasSuzanne">http://feeds.feedburner.com/MoneyMakingIdeasSuzanne</a></p>
<p><strong>Coming Soon</strong></p>
<p>Suzanne is one of many Blogging Tips readers who are taking part in Blogging Idol 2. In the next week I will bring you a report which shows how all readers are doing in the contest. If you would like your blog included in this list please leave a comment with the URL of the blog which you have entered. Thanks guys <img src='http://www.bloggingtips.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
<hr>Copyright &copy; 2008 <strong><a href="http://www.bloggingtips.com">Blogging Tips</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please <a href=http://www.bloggingtips.com/contact/>contact us</a> so we can take legal action immediately.<div class="feedflare">
<a href="http://feedproxy.google.com/~f/blogging-tips?a=8nqG3Yus"><img src="http://feedproxy.google.com/~f/blogging-tips?d=41" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=yFbalO8M"><img src="http://feedproxy.google.com/~f/blogging-tips?d=43" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=drMwnFDB"><img src="http://feedproxy.google.com/~f/blogging-tips?i=drMwnFDB" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=xv4TWwvi"><img src="http://feedproxy.google.com/~f/blogging-tips?d=50" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=rt4EMqkC"><img src="http://feedproxy.google.com/~f/blogging-tips?i=rt4EMqkC" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=LLyozYIs"><img src="http://feedproxy.google.com/~f/blogging-tips?i=LLyozYIs" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=FFNMfrVy"><img src="http://feedproxy.google.com/~f/blogging-tips?i=FFNMfrVy" border="0"></img></a>
</div><img src="http://feedproxy.google.com/~r/blogging-tips/~4/Nru5F_7lKm0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.bloggingtips.com/2008/11/18/interview-with-suzanne-franco/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Reader Blog Critique : LinkersBlog.com</title>
		<link>http://www.bloggingtips.com/2008/11/18/reader-blog-critique-linkersblogcom/</link>
		<comments>http://www.bloggingtips.com/2008/11/18/reader-blog-critique-linkersblogcom/#comments</comments>
		<pubDate>Tue, 18 Nov 2008 13:00:18 +0000</pubDate>
		<dc:creator>Kevin Muldoon from http://www.system0.net</dc:creator>
		
		<category><![CDATA[Reader Blog Critique]]></category>

		<guid isPermaLink="false">http://www.bloggingtips.com/?p=4255</guid>
		<description><![CDATA[ <p> <a href="http://linkersblog.com/"><img src="http://www.bloggingtips.com/wp-content/uploads/2008/11/linkersblog-logo.jpg" alt="Linkers Blog" title="Linkers Blog" width="200" height="50" class="alignnone size-full wp-image-4256" align="right"/></a>Welcome to the 13th <a href="http://www.bloggingtips.com/reader-blog-critique/">Reader Blog Critique</a>. <a href="http://www.bloggingtips.com/2008/11/11/reader-blog-critique-techzilocom/">Last weeks</a> critique of <a href="http://www.techzilo.com/">TechZilo</a> had some great replies from <a href="http://www.sevensomewhere.com/">Clare</a>, <a href="http://www.rarst.net">Rarst</a> &#038; <a href="http://www.deskcoder.com/">Desk Coder</a>. I&#8217;m sure this weeks critique will generate some great feedback too.</p>
<p>This weeks review is on <a href="http://linkersblog.com/">Linkers Blog</a>, a blog which helps you build links, traffic and PageRank.</p>
<p>Here are the questions the owner Danny would like to ask you all about the blog : </p>
<blockquote>
<ul>
<li>What is your favourite and least favourite part of the design?</li>
<li>Is the text easy to read?</li>
<li>How many ads should there be on the left hand side?</li>
<li>Is there any&#8230;</li></ul></blockquote> ]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.googleadservices.com/~a/mEjR7QcfcnSchVkSrrOkWcS_Hpo/a"><img src="http://feedads.googleadservices.com/~a/mEjR7QcfcnSchVkSrrOkWcS_Hpo/i" border="0" ismap="true"></img></a></p><p>Written by <a href="http://www.bloggingtips.com/author/admin/" title="Posts by Kevin Muldoon">Kevin Muldoon</a> from <a href="http://www.system0.net">System0</a></p><p> <a href="http://linkersblog.com/"><img src="http://www.bloggingtips.com/wp-content/uploads/2008/11/linkersblog-logo.jpg" alt="Linkers Blog" title="Linkers Blog" width="200" height="50" class="alignnone size-full wp-image-4256" align="right"/></a>Welcome to the 13th <a href="http://www.bloggingtips.com/reader-blog-critique/">Reader Blog Critique</a>. <a href="http://www.bloggingtips.com/2008/11/11/reader-blog-critique-techzilocom/">Last weeks</a> critique of <a href="http://www.techzilo.com/">TechZilo</a> had some great replies from <a href="http://www.sevensomewhere.com/">Clare</a>, <a href="http://www.rarst.net">Rarst</a> &#038; <a href="http://www.deskcoder.com/">Desk Coder</a>. I&#8217;m sure this weeks critique will generate some great feedback too.</p>
<p>This weeks review is on <a href="http://linkersblog.com/">Linkers Blog</a>, a blog which helps you build links, traffic and PageRank.</p>
<p>Here are the questions the owner Danny would like to ask you all about the blog : </p>
<blockquote>
<ul>
<li>What is your favourite and least favourite part of the design?</li>
<li>Is the text easy to read?</li>
<li>How many ads should there be on the left hand side?</li>
<li>Is there any widgets you would like to see on the right hand side?</li>
<li>Is there anything blairingly obvious missing or anything you think is horribly wrong with the blog?</li>
</ul>
</blockquote>
<p><a href="http://linkersblog.com"><img src="http://www.bloggingtips.com/wp-content/uploads/2008/11/linkersblog-screenshot.jpg" alt="Linkers Blog" title="Linkers Blog" width="500" height="468" class="alignnone size-full wp-image-4257" /></a></p>
<p>The most helpful and constructive commenter will get $10. Alternatively, if you prefer, I can register a domain for you at eNom and push it to your account <img src='http://www.bloggingtips.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> Danny will decide who the best commenter was.</p>
<p>As usual, I remind everyone that positive or negative, all feedback should be constructive.</p>
<p>If you have any questions about any of this please let me know in <a href="http://www.bloggingtips.com/forums/showthread.php?p=2527">this thread</a> <img src='http://www.bloggingtips.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Blog to be Reviewed : <a href="http://linkersblog.com/">Linkers Blog</a></p>
<hr>Copyright &copy; 2008 <strong><a href="http://www.bloggingtips.com">Blogging Tips</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please <a href=http://www.bloggingtips.com/contact/>contact us</a> so we can take legal action immediately.<div class="feedflare">
<a href="http://feedproxy.google.com/~f/blogging-tips?a=JbjFFp9T"><img src="http://feedproxy.google.com/~f/blogging-tips?d=41" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=6p80hFgo"><img src="http://feedproxy.google.com/~f/blogging-tips?d=43" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=7vnyYiRl"><img src="http://feedproxy.google.com/~f/blogging-tips?i=7vnyYiRl" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=bE2LpGIt"><img src="http://feedproxy.google.com/~f/blogging-tips?d=50" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=shHWsYpc"><img src="http://feedproxy.google.com/~f/blogging-tips?i=shHWsYpc" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=KbweSUn2"><img src="http://feedproxy.google.com/~f/blogging-tips?i=KbweSUn2" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=Bp8nM4l9"><img src="http://feedproxy.google.com/~f/blogging-tips?i=Bp8nM4l9" border="0"></img></a>
</div><img src="http://feedproxy.google.com/~r/blogging-tips/~4/XprrTZ5YcQY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.bloggingtips.com/2008/11/18/reader-blog-critique-linkersblogcom/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Links Roundup - November 17th 2008</title>
		<link>http://www.bloggingtips.com/2008/11/17/links-roundup-november-17th-2008/</link>
		<comments>http://www.bloggingtips.com/2008/11/17/links-roundup-november-17th-2008/#comments</comments>
		<pubDate>Mon, 17 Nov 2008 18:15:06 +0000</pubDate>
		<dc:creator>Kevin Muldoon from http://www.system0.net</dc:creator>
		
		<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://www.bloggingtips.com/?p=4294</guid>
		<description><![CDATA[ <p> A quick roundup of some of good posts which have caught my attention in the last week <img src='http://www.bloggingtips.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<ul>
<li><a href="http://socialmediarockstar.com/social-media-rockstars-vs-narcissists">Social Media “Rockstars” vs. “Narcissists”</a> - Brett Borders gets his new social media blog off to a great start with this comparison of social media rockstars and self absorbed douchebags!</li>
<li><a href="http://www.twitip.com/181-twitter-buttons-badges-widget-and-counters-to-help-you-find-followers/">181 Free Twitter Buttons, Badges, Widget and Counters to Help You Find Followers</a> - A fantastic collection of Twitter images and widgets.</li>
<li><a href="http://writetodone.com/2008/11/12/10-mistakes-that-could-be-killing-your-blog/">10 Mistakes That Could Be Killing Your Blog</a> - Leo Babauta looks at 10 things that could be hurting your blog.</li>
<li><a href="http://www.ignitesocialmedia.com/3-ways-to-be-a-better-blogger/">3 Ways To Be a Better&#8230;</a></li></ul> ]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.googleadservices.com/~a/fWAaOGQod4Qn9VH4ksyvLPVmzbk/a"><img src="http://feedads.googleadservices.com/~a/fWAaOGQod4Qn9VH4ksyvLPVmzbk/i" border="0" ismap="true"></img></a></p><p>Written by <a href="http://www.bloggingtips.com/author/admin/" title="Posts by Kevin Muldoon">Kevin Muldoon</a> from <a href="http://www.system0.net">System0</a></p><p> A quick roundup of some of good posts which have caught my attention in the last week <img src='http://www.bloggingtips.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<ul>
<li><a href="http://socialmediarockstar.com/social-media-rockstars-vs-narcissists">Social Media “Rockstars” vs. “Narcissists”</a> - Brett Borders gets his new social media blog off to a great start with this comparison of social media rockstars and self absorbed douchebags!</li>
<li><a href="http://www.twitip.com/181-twitter-buttons-badges-widget-and-counters-to-help-you-find-followers/">181 Free Twitter Buttons, Badges, Widget and Counters to Help You Find Followers</a> - A fantastic collection of Twitter images and widgets.</li>
<li><a href="http://writetodone.com/2008/11/12/10-mistakes-that-could-be-killing-your-blog/">10 Mistakes That Could Be Killing Your Blog</a> - Leo Babauta looks at 10 things that could be hurting your blog.</li>
<li><a href="http://www.ignitesocialmedia.com/3-ways-to-be-a-better-blogger/">3 Ways To Be a Better Blogger</a> - 3 very good tips to help you improve your blog.
</li>
<li><a href="http://www.findandconvert.com/blog/2008/social-media-lines-are-blurring/">Social Media Lines are Blurring</a> - Bernie Borges looks at how social media sites are evolving.</li>
<li><a href="http://www.jackhumphrey.com/fridaytrafficreport/building-your-blogs-tribe/">Building Your Blog’s Tribe</a> - Some good tips on building a community around your blog.</li>
<li><a href="http://www.suzannefranco.com/guru-roundup-update-wow-this-is-fun">Guru Roundup Update … Wow! This Is Fun!</a> - Blogging Tips regular Suzanne Franco talks about the help she has received from some well known friends. Stay tuned this week on Blogging Tips for an exclusive interview with Suzanne.</li>
<li><a href="http://freelancefolder.com/35-social-media-tools-make-life-easier/">35+ Social Media Tools That Make Life Easier</a> - A great collection of social media tools.</li>
<li><a href="http://www.bloggerbuster.com/2008/11/fixing-custom-favicons-for-blogger.html">Fixing Custom Favicons for Blogger Blogs </a> - Amanda shows you fix your broken blogger favicon (Posted a week or so ago).</li>
</ul>
<p> <img src='http://www.bloggingtips.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
<hr>Copyright &copy; 2008 <strong><a href="http://www.bloggingtips.com">Blogging Tips</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please <a href=http://www.bloggingtips.com/contact/>contact us</a> so we can take legal action immediately.<div class="feedflare">
<a href="http://feedproxy.google.com/~f/blogging-tips?a=ZCnQJpxQ"><img src="http://feedproxy.google.com/~f/blogging-tips?d=41" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=iRwTlWa5"><img src="http://feedproxy.google.com/~f/blogging-tips?d=43" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=Wn9GZFjL"><img src="http://feedproxy.google.com/~f/blogging-tips?i=Wn9GZFjL" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=HZRIsY2y"><img src="http://feedproxy.google.com/~f/blogging-tips?d=50" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=aC4h7Etf"><img src="http://feedproxy.google.com/~f/blogging-tips?i=aC4h7Etf" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=1y51dwS5"><img src="http://feedproxy.google.com/~f/blogging-tips?i=1y51dwS5" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=zomCFAYS"><img src="http://feedproxy.google.com/~f/blogging-tips?i=zomCFAYS" border="0"></img></a>
</div><img src="http://feedproxy.google.com/~r/blogging-tips/~4/fzX5x7BxmOA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.bloggingtips.com/2008/11/17/links-roundup-november-17th-2008/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Blogging in a Recession: How to Keep the Visitors Flowing In</title>
		<link>http://www.bloggingtips.com/2008/11/17/blogging-in-a-recession-how-to-keep-the-visitors-flowing-in/</link>
		<comments>http://www.bloggingtips.com/2008/11/17/blogging-in-a-recession-how-to-keep-the-visitors-flowing-in/#comments</comments>
		<pubDate>Mon, 17 Nov 2008 16:00:46 +0000</pubDate>
		<dc:creator>Yuwanda Black from http://www.InkwellEditorial.com</dc:creator>
		
		<category><![CDATA[Promote your blog]]></category>

		<category><![CDATA[blog marketing]]></category>

		<guid isPermaLink="false">http://www.bloggingtips.com/?p=4292</guid>
		<description><![CDATA[<p>According to the latest reports on <em>CNN</em>, Japan, the world’s second largest economy behind the United States, is officially in a recession. If you blog for money, this news should be important to you because bloggers run international “empires,” so to speak. </p>
<p>So, how can you keep the visitors – and the dollars – flowing in during a worldwide recession? Following are three things to keep in mind that help.</p>
<p><strong>3 Ways to Keep Your  Blog’s Visitors Coming Back During a Recession</strong></p>
<p><strong>Pay attention to existing subscribers: </strong>Most bloggers are so busy&#8230;</p>]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.googleadservices.com/~a/NE7Y8D96cb4AnsCZAzTwTYv3Ls4/a"><img src="http://feedads.googleadservices.com/~a/NE7Y8D96cb4AnsCZAzTwTYv3Ls4/i" border="0" ismap="true"></img></a></p><p>Written by <a href="http://www.bloggingtips.com/author/inkwelleditorial/" title="Posts by Yuwanda Black">Yuwanda Black</a> from <a href="http://www.InkwellEditorial.com">Inkwell Editorial</a></p><p>According to the latest reports on <em>CNN</em>, Japan, the world’s second largest economy behind the United States, is officially in a recession. If you blog for money, this news should be important to you because bloggers run international “empires,” so to speak. </p>
<p>So, how can you keep the visitors – and the dollars – flowing in during a worldwide recession? Following are three things to keep in mind that help.</p>
<p><strong>3 Ways to Keep Your  Blog’s Visitors Coming Back During a Recession</strong></p>
<p><strong>Pay attention to existing subscribers: </strong>Most bloggers are so busy chasing new subscribers that they forget to fully service the ones they have. Most marketers make this mistake. </p>
<p>But, consider this, marketing experts say that it costs three to fives times as much time, energy and money to obtain a new customer (subscriber) as it does to sell more to an existing one. How can you capitalize on this?</p>
<p>Offer existing customers a special deal, report, ebook, teleseminar, etc. to show your appreciation. FYI, as this is the holiday season, it’s an ideal time to show your appreciation to existing customers.</p>
<p><strong>Market Even More:</strong> On an almost daily basis, I receive emails from freelance writers who are struggling in this economy. What I tell them is what I’m going to tell you as a blogger – market more. Many make the mistake of cutting back on their marketing efforts in a tough economy.</p>
<p>This is the exact opposite of what you should be doing. And with blogging, there are so many <a href="http://www.bloggingtips.com/2008/11/11/blog-marketing-how-to-make-12000year-from-your-blog/">free, effective ways to market your blog</a> that it will only cost you time. </p>
<p><strong>Stay Cool and Consistent:</strong> Blogging is all about consistency. Some bloggers make the mistake of cutting back on their blogging – especially if they feel like “nobody’s reading it any way.”</p>
<p>It’s like trying to find a good deal in a trendy neighborhood. To make money in real estate, it’s all about location – and timing. Same thing in blogging. If you have a blog, you’ve already staked out your location. Now, you need to turn the timing to your advantage.</p>
<p>How can you make blogging in a recession work to your advantage, ie, take advantage of this time? Write really insightful posts about what’s going on in the world at large – and make it relevant to your niche. This can really set your blog apart, building its reputation as an authoritative, insightful spot visitors will want to visit to keep abreast of how the world at large affects their life. </p>
<p>Remember, most people have a herd mentality. Meaning, they will always do what’s easy and what everyone else is doing. <em><strong>Recessionary blogging is about doing what’s hard </strong></em>– riding out the storm until things turn around; finding the relevancy in what’s happening in the world at large and bringing it to your readers; having faith that things will turn around (it always does you know).</p>
<p>So, chin up. If you want to keep your blog’s visitors coming back, even though major world economies are in a recession, remain cool and consistent – in your marketing efforts, and in your blog posting.</p>
<hr>Copyright &copy; 2008 <strong><a href="http://www.bloggingtips.com">Blogging Tips</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please <a href=http://www.bloggingtips.com/contact/>contact us</a> so we can take legal action immediately.<div class="feedflare">
<a href="http://feedproxy.google.com/~f/blogging-tips?a=SlgDNm1a"><img src="http://feedproxy.google.com/~f/blogging-tips?d=41" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=zV4daev0"><img src="http://feedproxy.google.com/~f/blogging-tips?d=43" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=0z2skPEU"><img src="http://feedproxy.google.com/~f/blogging-tips?i=0z2skPEU" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=jS7QfXl4"><img src="http://feedproxy.google.com/~f/blogging-tips?d=50" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=kj1lTavc"><img src="http://feedproxy.google.com/~f/blogging-tips?i=kj1lTavc" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=zAr1YoXI"><img src="http://feedproxy.google.com/~f/blogging-tips?i=zAr1YoXI" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=cFR69CvA"><img src="http://feedproxy.google.com/~f/blogging-tips?i=cFR69CvA" border="0"></img></a>
</div><img src="http://feedproxy.google.com/~r/blogging-tips/~4/O4oTwRlNSYc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.bloggingtips.com/2008/11/17/blogging-in-a-recession-how-to-keep-the-visitors-flowing-in/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Show Date For All Posts in Blogger</title>
		<link>http://www.bloggingtips.com/2008/11/17/show-date-for-all-posts-in-blogger/</link>
		<comments>http://www.bloggingtips.com/2008/11/17/show-date-for-all-posts-in-blogger/#comments</comments>
		<pubDate>Mon, 17 Nov 2008 15:00:36 +0000</pubDate>
		<dc:creator>Amanda Fazani from http://www.bloggerbuster.com</dc:creator>
		
		<category><![CDATA[Blogger]]></category>

		<guid isPermaLink="false">http://www.bloggingtips.com/?p=3449</guid>
		<description><![CDATA[<p><a href="http://www.bloggingtips.com/wp-content/uploads/2008/10/calendar.jpg"><img class="alignright size-medium wp-image-3486" src="http://www.bloggingtips.com/wp-content/uploads/2008/10/calendar.jpg" alt="" width="300" height="200" /></a>Most bloggers prefer to display the date a post was published, which is often relevant to the subject matter of the post. Indeed, most blog templates include some elements of CSS styling for the post date (or date heading as it is often known).</p>
<p>When using Blogger to publish your blog, the date heading is only displayed for the most recent post of any given day. This means that if you make several posts in a single day, the date heading will only display for the last post published in this&#8230;</p>]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.googleadservices.com/~a/SOBYXZfrA1EY7RF9bI8M1Lvhsz0/a"><img src="http://feedads.googleadservices.com/~a/SOBYXZfrA1EY7RF9bI8M1Lvhsz0/i" border="0" ismap="true"></img></a></p><p>Written by <a href="http://www.bloggingtips.com/author/amanda_fazani/" title="Posts by Amanda Fazani">Amanda Fazani</a> from <a href="http://www.bloggerbuster.com">Blogger Buster</a></p><p><a href="http://www.bloggingtips.com/wp-content/uploads/2008/10/calendar.jpg"><img class="alignright size-medium wp-image-3486" src="http://www.bloggingtips.com/wp-content/uploads/2008/10/calendar.jpg" alt="" width="300" height="200" /></a>Most bloggers prefer to display the date a post was published, which is often relevant to the subject matter of the post. Indeed, most blog templates include some elements of CSS styling for the post date (or date heading as it is often known).</p>
<p>When using Blogger to publish your blog, the date heading is only displayed for the most recent post of any given day. This means that if you make several posts in a single day, the date heading will only display for the last post published in this day.</p>
<p>While readers of your blog may be able to deduce the posting date in relation to other posts, many of us would prefer to simply display the date, especially when using a calendar icon or other template styling to display the date in a particular way.</p>
<p>In default Blogger templates (and indeed in most third party templates) there is no option but to use the restrictive &lt;data:post.dateHeader&gt; tag to display the date only for one post each day.</p>
<p>So in this post, I&#8217;ll explain a quick and simple customization which enables you to display the date for all posts in your blog, to inform your readers of the exact date of posting and ensure any date styling in your layout is rendered correctly.</p>
<h3>Using the &#8220;Time-stamp&#8221; tags</h3>
<p>The only method we can use to display the date on all posts on home and archive pages with Blogger is to replace the &lt;data:post.dateHeader&gt; tag with that usually reserved for the timestamp (permalink).</p>
<p>This is because the Blogger engine will render only one date-header statement for each day of posts, whereas timestamps are generated for each and every post.</p>
<p>If you take a look at the Settings&gt;Formatting page in your Blogger dashboard, you will notice there are numerous options for formatting the date style for the timestamp, many of which mimic those used for the actual date heading.</p>
<p>The method we need to use for this customization involves switching the date-header tags for timestamp tags, and formatting the timestamp so it appears more like a date-heading instead.</p>
<h3>Changing the template code to accommodate the date for all posts</h3>
<p>This is a very simple customization to make.</p>
<p>Simply go to Layout&gt;Edit HTML in your Blogger dashboard and check the &#8220;Expand widget templates&#8221; box.</p>
<p>Then search for the following section of code (or similar):</p>
<blockquote><p>&lt;b:if cond=&#8217;data:post.dateHeader&#8217;&gt;<br />
&lt;h2 class=&#8217;date-header&#8217;&gt;&lt;data:post.dateHeader/&gt;&lt;/h2&gt;<br />
&lt;/b:if&gt;</p></blockquote>
<p>Be aware that in your own Blogger template, the &lt;h2&gt; tags may have been replaced with a DIV or H3 tags instead. However, the surrounding code should appear in the same way.</p>
<p>Replace this entire section of code with the following instead:</p>
<blockquote><p>&lt;h2 class=&#8217;date-header&#8217;&gt;&lt;data:post.timestamp/&gt;&lt;/h2&gt;</p></blockquote>
<p>Then preview your blog. If you have made more than one post in a single day, you will now see that the time-stamp is displayed for all posts on this day, whereas the date-header previously used would only display once for each day.</p>
<p><strong>Optional:</strong></p>
<p>As you are using the timestamp for the date heading of your posts, you may prefer to remove the timestamp from the post-footer section.</p>
<p>If this is the case, find the following section of code in your template:</p>
<blockquote><p>&lt;b:if cond=&#8217;data:top.showTimestamp&#8217;&gt;<br />
&lt;data:top.timestampLabel/&gt;<br />
&lt;b:if cond=&#8217;data:post.url&#8217;&gt;<br />
&lt;data:post.timestamp/&gt;&lt;a class=&#8217;timestamp-link&#8217; expr:href=&#8217;data:post.url&#8217; title=&#8217;permanent link&#8217;&gt;Permalink&lt;/a&gt;<br />
&lt;/b:if&gt;<br />
&lt;/b:if&gt;</p></blockquote>
<p>And delete this entire section of code.</p>
<p>Be sure to preview your template agian before saving to ensure you have not accidentally deleted (or altered) any other aspects of your layout.</p>
<h4>Formatting your new date heading</h4>
<p>By default, the timestamp in Blogger blogs is set to display the time of posting, rather than the date. You may prefer to change this setting to reflect the date as this is more appropriate and informative for your blog readers.</p>
<p>To change this format, go to Settings&gt;Formatting in your Blogger dashboard. On this page, you will notice a drop-down menu where you can choose the format for your timestamp:</p>
<p><a href="http://www.bloggingtips.com/wp-content/uploads/2008/10/timestamp.gif"><img class="size-medium wp-image-3478" src="http://www.bloggingtips.com/wp-content/uploads/2008/10/timestamp-300x168.gif" alt="The timestamp format setting for your blog" width="300" height="168" /></a></p>
<p>Simply choose a setting which you feel would be more appropriate for your layout, and save this setting. Personally I prefer the full date option (ie: Tuesday, October 14 2008) though you may prefer a shorter date format instead.</p>
<h3>Using this customization to display a calendar icon for each post</h3>
<p>There are several Blogger customizations available which enable you to display a calendar icon to replace the date heading of your posts. It is possible to make this calendar icon display on all posts of your home and archive pages using the customization we have explored in this tutorial.</p>
<div class="wp-caption aligncenter" style="width: 465px"><img src="http://www.bloggingtips.com/wp-content/uploads/2008/07/twitter-style-date-icon.jpg" alt="An example of a calendar icon" width="455" height="147" /><p class="wp-caption-text">An example of a calendar icon</p></div>
<p>However, you should check the date format required to display your calendar icon correctly, and adjust the setting for your timestamp format accordingly.</p>
<p>Most calendar widgets for Blogger require the date to be formatted like this: dd-mm-yyyy. Unfortunately, this format is not available to use for timestamps. In this case, you would need to edit the JavaScript file used to parse the date in your posts, and replace this with a date-format which you can use as a timestamp (eg: dd/mm/yy).</p>
<p>Once you have edited the JavaScript file, upload this to your own hosting account and change the reference to this file in the &lt;head&gt; section of your Blogger template. You will then be able to see your calendar icon appear for all posts in your blog layout.</p>
<p>Here are two different calendar widgets which you could use in Blogger blogs:</p>
<ul>
<li><a href="http://www.bloggingtips.com/2008/07/28/replace-date-headings-with-a-funky-calendar-in-blogger/">A Twitter style calendar icon for Blogger</a></li>
<li><a href="http://www.bloggerbuster.com/2007/10/how-to-create-calendar-widget-for-your.html">Create a calendar widget to replace post dates</a></li>
</ul>
<p>I hope these tips have provided you with useful information for displaying date headings on your blogger posts. Please feel free to let me know what you think by leaving your comments and opinions below.</p>
<hr>Copyright &copy; 2008 <strong><a href="http://www.bloggingtips.com">Blogging Tips</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please <a href=http://www.bloggingtips.com/contact/>contact us</a> so we can take legal action immediately.<div class="feedflare">
<a href="http://feedproxy.google.com/~f/blogging-tips?a=yffx0qU4"><img src="http://feedproxy.google.com/~f/blogging-tips?d=41" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=BuRsIA87"><img src="http://feedproxy.google.com/~f/blogging-tips?d=43" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=QEMRCL9w"><img src="http://feedproxy.google.com/~f/blogging-tips?i=QEMRCL9w" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=9izlTJEk"><img src="http://feedproxy.google.com/~f/blogging-tips?d=50" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=SsjXcZKr"><img src="http://feedproxy.google.com/~f/blogging-tips?i=SsjXcZKr" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=HV27qVIn"><img src="http://feedproxy.google.com/~f/blogging-tips?i=HV27qVIn" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=f2hRh654"><img src="http://feedproxy.google.com/~f/blogging-tips?i=f2hRh654" border="0"></img></a>
</div><img src="http://feedproxy.google.com/~r/blogging-tips/~4/E4uVXisj_9E" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.bloggingtips.com/2008/11/17/show-date-for-all-posts-in-blogger/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Creating Author Pages</title>
		<link>http://www.bloggingtips.com/2008/11/16/creating-author-pages/</link>
		<comments>http://www.bloggingtips.com/2008/11/16/creating-author-pages/#comments</comments>
		<pubDate>Sun, 16 Nov 2008 15:00:12 +0000</pubDate>
		<dc:creator>Sarah from http://www.stuffbysarah.net/</dc:creator>
		
		<category><![CDATA[WordPress Coding &amp; Design]]></category>

		<guid isPermaLink="false">http://www.bloggingtips.com/?p=4277</guid>
		<description><![CDATA[<p>If you&#8217;re running a multi author WordPress site then at some point you&#8217;re going to want to have a list of the authors on your site, and give them their own page. All Blogging Tips authors have their own author page for example, which gives a brief bit of information about the author plus a list the posts they&#8217;ve written - <a href="http://www.bloggingtips.com/author/sarah/">view mine</a>.</p>
<p>Creating an author page is not as straightforward as other template files, however once you know the right few lines of code to get started with, the rest&#8230;</p>]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.googleadservices.com/~a/x5NJTfIDWB9HLkdl24YzdJlv3CY/a"><img src="http://feedads.googleadservices.com/~a/x5NJTfIDWB9HLkdl24YzdJlv3CY/i" border="0" ismap="true"></img></a></p><p>Written by <a href="http://www.bloggingtips.com/author/sarah/" title="Posts by Sarah">Sarah</a> from <a href="http://www.stuffbysarah.net/">Stuff By Sarah</a></p><p>If you&#8217;re running a multi author WordPress site then at some point you&#8217;re going to want to have a list of the authors on your site, and give them their own page. All Blogging Tips authors have their own author page for example, which gives a brief bit of information about the author plus a list the posts they&#8217;ve written - <a href="http://www.bloggingtips.com/author/sarah/">view mine</a>.</p>
<p>Creating an author page is not as straightforward as other template files, however once you know the right few lines of code to get started with, the rest is simple.</p>
<h3>Link to the Author</h3>
<p>Before we create a page for the author, we need to create a link to the author&#8217;s page. This is done within the post meta (or anywhere within the loop for a post) using the tag</p>
<p><code>&lt;?php the_author_posts_link(); ?&gt;</code></p>
<p>This will print out the name of the post author and the name will also be linked through to the author&#8217;s page. So you could precede this with &#8216;Written By&#8217; for example.</p>
<h3>The Author Template</h3>
<p>Now we need an author template page. This is powered via the theme file author.php. If author.php doesn&#8217;t exist then using the template hierarchy, WordPress will use archive.php, and if this doesn&#8217;t exist, it will use index.php. So the best way to start is to duplicate your archive.php file and save it as author.php.</p>
<p>Next you need to find your loop within this file and then above this we can start adding the code needed.</p>
<h3>Get the Author</h3>
<p>To determine which author is being viewed we need the following code to be placed above the loop:</p>
<pre name="code" class="php">
&lt; ?php
global $wp_query;
$curauth = $wp_query-&gt;get_queried_object();
?&gt;
</pre>
<p>This will then assign the author into the variable $curauth. We then use this in certain tags to then display the information we want. Anything entered into the Admin User screen can be retrieved and displayed on the front end (with the exception of the password of course!). The different tags available are listed below with their relevant field names in the Edit Profile admin page.</p>
<dl>
<dt>$curauth-&gt;aim;</dt>
<dd>AIM</dd>
<dt>$curauth-&gt;description;</dt>
<dd>Biographical Info</dd>
<dt>$curauth-&gt;display_name;</dt>
<dd>Display Name Publicly As</dd>
<dt>$curauth-&gt;first_name;</dt>
<dd>First name</dd>
<dt>$curauth-&gt;ID;</dt>
<dd>The User ID (uneditable)</dd>
<dt>$curauth-&gt;jabber;</dt>
<dd>Jabber / Google Talk</dd>
<dt>$curauth-&gt;last_name;</dt>
<dd>Last name</dd>
<dt>$curauth-&gt;nickname;</dt>
<dd>Nickname</dd>
<dt>$curauth-&gt;user_email;</dt>
<dd>E-mail</dd>
<dt>$curauth-&gt;user_login;</dt>
<dd>Username</dd>
<dt>$curauth-&gt;user_nicename;</dt>
<dd>User Nicename (usually the nickname in lowercase)</dd>
<dt>$curauth-&gt;user_registered;</dt>
<dd>The date the User account was first registered</dd>
<dt>$curauth-&gt;user_url;</dt>
<dd>Website</dd>
<dt>$curauth-&gt;yim;</dt>
<dd>Yahoo IM</dd>
</dl>
<p>To display this information you need to use PHP echo or print eg.</p>
<p><code>Full Name: &lt;?php echo $curauth-&gt;first_name." ".$curauth-&gt;last_name; ?&gt;</code></p>
<p>Of course there are some details listed above that I wouldn&#8217;t recommend displaying on an Author&#8217;s page for security. The user ID and username are two such items.</p>
<p>You can place these variables into standard markup (of course surrounded by PHP tags and using the echo as above), and you should place this above the loop but after the first piece of code where we defined the $curauth.</p>
<h3>List the Author&#8217;s Posts</h3>
<p>On an author&#8217;s page you&#8217;ll also want to list out the posts that the author has written. This is where the loop comes back into use. You&#8217;ve got the option of using the same listing as the archives page. If this is the case then keeping the loop code (which starts at if (have_posts()) : ) intact from the archive.php page should be fine. However, rather than listing the post content or excerpt, I would recommend to just list the post titles and perhaps the day they were created on (maybe the comments too!).</p>
<p>I&#8217;ve written about how to <a href="http://www.bloggingtips.com/2008/06/08/index-your-posts/">index your posts</a> on your archives and categories pages, so the same method can be applied here. We simply add</p>
<p><code>query_posts($query_string.'&amp;posts_per_page=-1');</code></p>
<p>within the PHP tags, right before the opening loop line ie.</p>
<p><code>if ( have_posts() ) :</code></p>
<p>or</p>
<p><code>if ( have_posts() ) : while ( have_posts() ) : the_post();</code></p>
<p>(different themes may vary).</p>
<p>This will set all posts to display on one page thereby creating an index of posts for that user. Of course you&#8217;ll need to edit the tags within the loop to prevent the content or excerpt from being displayed. To do this I would recommend the following loop code</p>
<pre name="code" class="php">
&lt; ?php
query_posts($query_string.'&amp;posts_per_page=-1');
if (have_posts()) :
    echo &quot;&lt;ul&gt;\n&quot;;
    while (have_posts()) : the_post(); ?&gt;
        &lt;li&gt;&lt; ?php the_time('d/m/Y') ?&gt;: &lt;a href=&quot;&lt;?php the_permalink() ?&gt;&quot; rel=&quot;bookmark&quot; title=&quot;Permanent Link to &lt; ?php the_title(); ?&gt;&quot;&gt;&lt; ?php the_title(); ?&gt;&lt;/a&gt;&lt;/li&gt;
    &lt; ?php endwhile;
    echo &quot;&lt;/ul&gt;\n&quot;;
else: ?&gt;
    &lt;p&gt;&lt; ?php _e('Sorry, no posts matched your criteria.'); ?&gt;&lt;/p&gt;
&lt; ?php endif; ?&gt;
</pre>
<h3>The Full Author Page</h3>
<p>So now we have the pieces of our page, we need to fit them together. A typical example of an Author page could be</p>
<pre name="code" class="php">
&lt; ?php
	global $wp_query;
	$curauth = $wp_query-&gt;get_queried_object();
?&gt;
&lt;h2&gt;More Info On Sarah&lt;/h2&gt;

&lt;dl&gt;
&lt;dt&gt;Full Name :&lt;/dt&gt; &lt;dd&gt;&lt; ?php echo $curauth-&gt;first_name.&quot; &quot;.$curauth-&gt;last_name; ?&gt;&lt;/dd&gt;
&lt;dt&gt;Website :&lt;/dt&gt; &lt;dd&gt;&lt;a href=&quot;&lt;?php echo $curauth-&gt;user_url ?&gt;&quot;&gt;&lt; ?php echo $curauth-&gt;user_url ?&gt;&lt;/a&gt;&lt;/dd&gt;
&lt;/dl&gt;

&lt;h3&gt;Info :&lt;/h3&gt;
&lt;p&gt;&lt; ?php echo $curauth-&gt;description; ?&gt;&lt;/p&gt;

&lt;h3&gt;Posts by &lt; ?php echo $curauth-&gt;first_name ?&gt;: &lt; ?php the_author_posts(); ?&gt;&lt;/h3&gt;

&lt; ?php
query_posts($query_string.'&amp;posts_per_page=-1');
if (have_posts()) :
    echo &quot;&lt;ul&gt;\n&quot;;
    while (have_posts()) : the_post(); ?&gt;
        &lt;li&gt;&lt;a href=&quot;&lt;?php the_permalink() ?&gt;&quot; rel=&quot;bookmark&quot; title=&quot;Permanent Link to &lt; ?php the_title(); ?&gt;&quot;&gt;&lt; ?php the_title(); ?&gt;&lt;/a&gt;, &lt; ?php the_time('d M Y') ?&gt; in &lt; ?php the_category(', ') ?&gt;. &lt; ?php comments_popup_link('', '(1)', '(%)'); ?&gt;&lt;/li&gt;
    &lt; ?php endwhile;
    echo &quot;&lt;/ul&gt;\n&quot;;
else: ?&gt;
    &lt;p&gt;&lt; ?php _e('Sorry, no posts matched your criteria.'); ?&gt;&lt;/p&gt;
&lt; ?php endif; ?&gt;
</pre>
<p>This would then give a page similar to the below:</p>
<p><img src="http://www.bloggingtips.com/wp-content/uploads/2008/11/btauthor.gif" alt="Author Example Page" width="500px" height="293" /></p>
<hr>Copyright &copy; 2008 <strong><a href="http://www.bloggingtips.com">Blogging Tips</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please <a href=http://www.bloggingtips.com/contact/>contact us</a> so we can take legal action immediately.<div class="feedflare">
<a href="http://feedproxy.google.com/~f/blogging-tips?a=zIP6tYqz"><img src="http://feedproxy.google.com/~f/blogging-tips?d=41" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=323Qc4xN"><img src="http://feedproxy.google.com/~f/blogging-tips?d=43" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=VrNc6F7S"><img src="http://feedproxy.google.com/~f/blogging-tips?i=VrNc6F7S" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=EZdL8yLK"><img src="http://feedproxy.google.com/~f/blogging-tips?d=50" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=Y0uusOtJ"><img src="http://feedproxy.google.com/~f/blogging-tips?i=Y0uusOtJ" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=ZoJ5lVcM"><img src="http://feedproxy.google.com/~f/blogging-tips?i=ZoJ5lVcM" border="0"></img></a> <a href="http://feedproxy.google.com/~f/blogging-tips?a=oiujRGHz"><img src="http://feedproxy.google.com/~f/blogging-tips?i=oiujRGHz" border="0"></img></a>
</div><img src="http://feedproxy.google.com/~r/blogging-tips/~4/LlFgBqaTfz8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.bloggingtips.com/2008/11/16/creating-author-pages/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
