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

<channel>
	<title>Softduit Media&#187; Labs on the Lake</title>
	<atom:link href="http://softduit.com/category/events/labs-on-the-lake/feed/" rel="self" type="application/rss+xml" />
	<link>http://softduit.com</link>
	<description>helping adapt business models to the web with WordPress powered CMS sites</description>
	<lastBuildDate>Thu, 02 Sep 2010 14:45:17 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=7249</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Exploring 3 sidebars in Artisteer 2.4.0.25435 WordPress themes</title>
		<link>http://softduit.com/exploring-3-sidebars-in-artisteer-2-4-0-25435-wordpress-themes/</link>
		<comments>http://softduit.com/exploring-3-sidebars-in-artisteer-2-4-0-25435-wordpress-themes/#comments</comments>
		<pubDate>Thu, 01 Apr 2010 17:30:33 +0000</pubDate>
		<dc:creator>Brett Bumeter</dc:creator>
				<category><![CDATA[Labs on the Lake]]></category>
		<category><![CDATA[Artisteer CSS optimization]]></category>
		<category><![CDATA[Exploring new methods]]></category>
		<category><![CDATA[testing]]></category>

		<guid isPermaLink="false">http://softduit.com/exploring-3-sidebars-in-artisteer-2-4-0-25435-wordpress-themes/</guid>
		<description><![CDATA[A quick new look at some new formatting in css with Artisteer as of version 2.4.0.25435


Related posts:<ol><li><a href='http://softduit.com/cant-drag-widget-into-sidebar-2-on-artisteer-designed-theme/' rel='bookmark' title='Permanent Link: Can&#8217;t Drag Widget into Sidebar 2 on Artisteer Designed Theme?'>Can&#8217;t Drag Widget into Sidebar 2 on Artisteer Designed Theme?</a></li>
<li><a href='http://softduit.com/optimize-artisteer-wordpress-themes-h1h2-title-tags-for-seo/' rel='bookmark' title='Permanent Link: Optimize Artisteer WordPress Theme&rsquo;s H1/H2 Title Tags for SEO'>Optimize Artisteer WordPress Theme&rsquo;s H1/H2 Title Tags for SEO</a></li>
<li><a href='http://softduit.com/how-to-speed-up-artisteer-wordpress-theme-load-times/' rel='bookmark' title='Permanent Link: How to Speed up Artisteer WordPress Theme Load Times'>How to Speed up Artisteer WordPress Theme Load Times</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>With the new 2.4.0.25435 version of <a title="Get the Free Artisteer Trial or buy for as little as $49!" href="http://click.linksynergy.com/fs-bin/click?id=YvXPSOxXAIo&amp;amp;offerid=173903.10000006&amp;amp;type=3&amp;amp;subid=0" target="_blank">Artisteer</a> WordPress themes are rendered with a new css format.  Its a small change and one that slims down the css file, however it is currently stumping me just a bit when it comes to rendering a site with 3 sidebars on one side with one sidebar floating above two smaller ones.</p>
<p><a href="http://softduit.com/wp-content/uploads/2010/04/image.png"><img style="display: inline; border: 0px;" title="image" src="http://softduit.com/wp-content/uploads/2010/04/image_thumb.png" border="0" alt="image" width="454" height="268" /></a></p>
<p>I’ve discovered enough of the code to make it this far, which would be great and exactly what I’m looking for, but it only works right now in Firefox, safari, and Chrome, but not in IE8.</p>
<p>Here are the elements in the css code that I have changed to achieve this result.</p>
<blockquote><p>/* begin LayoutCell, content */<br />
.art-content-layout .art-content<br />
{<br />
width: 50%;<br />
}<br />
.art-content-layout .art-content-sidebar1<br />
{<br />
width: 100%;<br />
}<br />
.art-content-layout .art-content-sidebar2<br />
{<br />
width: 79%;<br />
}<br />
.art-content-layout .art-content-sidebar3<br />
{<br />
width: 71%;<br />
}<br />
.art-content-layout .art-content-wide<br />
{<br />
width: 100%;<br />
}<br />
/* end LayoutCell, content */</p>
<p>/* begin LayoutCell, sidebar1 */<br />
.art-content-layout .art-sidebar1<br />
{<br />
background-color: #D4CCAA;<br />
width: 50%;<br />
overflow:hidden;<br />
position: relative;<br />
float: left;<br />
}<br />
/* end LayoutCell, sidebar1 */</p>
<p>/* begin LayoutCell, sidebar2 */<br />
.art-content-layout .art-sidebar2<br />
{<br />
background-color: #D4CCAA;<br />
width: 29%;<br />
overflow:hidden;<br />
position: relative;<br />
float: left;<br />
}<br />
/* end LayoutCell, sidebar2 */</p>
<p>/* begin LayoutCell, sidebar3 */<br />
.art-content-layout .art-sidebar3<br />
{<br />
background-color: #D4CCAA;<br />
width: 21%;<br />
overflow:hidden;<br />
position: relative;<br />
float: left;<br />
}<br />
/* end LayoutCell, sidebar3 */</p></blockquote>
<p>And another section in formatting that looks like this after my changes, the items in bold represent items I added.</p>
<blockquote><p>/* begin Layout &#8211; change css */<br />
.art-content-layout<br />
{<br />
display: table;<br />
padding: 0;<br />
border: none;<br />
width: 994px;<br />
<strong> position: relative;<br />
float: left;<br />
</strong>}</p>
<p>.art-content-layout .art-content-layout<br />
{<br />
width: auto;<br />
margin:0;<br />
<strong> position: relative;<br />
float: left;</strong><br />
}</p>
<p>div.art-content-layout div.art-layout-cell, div.art-content-layout div.art-layout-cell div.art-content-layout div.art-layout-cell<br />
{<br />
display: table-cell;<br />
<strong> position: relative;<br />
float: left;</strong><br />
}</p>
<p>div.art-layout-cell div.art-layout-cell<br />
{<br />
display: block;<br />
<strong> position: relative;<br />
float: left;</strong><br />
}</p>
<p>div.art-content-layout-row<br />
{<br />
display: table-row;<br />
<strong> position: relative;<br />
float: left;</strong><br />
}</p>
<p>.art-content-layout<br />
{<br />
table-layout: fixed;<br />
border-collapse: collapse;<br />
background-color: Transparent;<br />
border: none !important;<br />
padding:0 !important;<br />
<strong> position: relative;<br />
float: left;</strong><br />
}</p>
<p>.art-layout-cell, .art-content-layout-row<br />
{<br />
background-color: Transparent;<br />
vertical-align: top;<br />
text-align: left;<br />
border: none !important;<br />
margin:0 !important;<br />
padding:0 !important;<br />
<strong> position: relative;<br />
float: left;<br />
</strong>}<br />
/* end Layout */</p></blockquote>


<p>Related posts:<ol><li><a href='http://softduit.com/cant-drag-widget-into-sidebar-2-on-artisteer-designed-theme/' rel='bookmark' title='Permanent Link: Can&#8217;t Drag Widget into Sidebar 2 on Artisteer Designed Theme?'>Can&#8217;t Drag Widget into Sidebar 2 on Artisteer Designed Theme?</a></li>
<li><a href='http://softduit.com/optimize-artisteer-wordpress-themes-h1h2-title-tags-for-seo/' rel='bookmark' title='Permanent Link: Optimize Artisteer WordPress Theme&rsquo;s H1/H2 Title Tags for SEO'>Optimize Artisteer WordPress Theme&rsquo;s H1/H2 Title Tags for SEO</a></li>
<li><a href='http://softduit.com/how-to-speed-up-artisteer-wordpress-theme-load-times/' rel='bookmark' title='Permanent Link: How to Speed up Artisteer WordPress Theme Load Times'>How to Speed up Artisteer WordPress Theme Load Times</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://softduit.com/exploring-3-sidebars-in-artisteer-2-4-0-25435-wordpress-themes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SEO Copywriting WordPress Content Optimization Plugin Video Review</title>
		<link>http://softduit.com/seo-copywriting-content-optimization-automated-by-copyblogger-himself/</link>
		<comments>http://softduit.com/seo-copywriting-content-optimization-automated-by-copyblogger-himself/#comments</comments>
		<pubDate>Fri, 19 Mar 2010 21:40:00 +0000</pubDate>
		<dc:creator>Brett Bumeter</dc:creator>
				<category><![CDATA[Artisteer Tutorials]]></category>
		<category><![CDATA[Client Tips]]></category>
		<category><![CDATA[Labs on the Lake]]></category>
		<category><![CDATA[Brian Clark]]></category>
		<category><![CDATA[Copyblogger]]></category>
		<category><![CDATA[Copywriting]]></category>
		<category><![CDATA[Copywriting Optimization]]></category>
		<category><![CDATA[Scribe]]></category>
		<category><![CDATA[Search Engine Optimization]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress CMS]]></category>
		<category><![CDATA[WordPress Ecommerce]]></category>
		<category><![CDATA[Wordpress plugins]]></category>

		<guid isPermaLink="false">http://softduit.com/seo-copywriting-content-optimization-automated-by-copyblogger-himself/</guid>
		<description><![CDATA[Video review shows Copywriting, Content &#038; SEO Optimization may be tedious, but the Scribe SEO Web Service w WordPress Plugin makes Copywriting Optimization easy


Related posts:<ol><li><a href='http://softduit.com/the-most-important-wordpress-plugin-you-will-ever-find-all-in-one-seo-pack/' rel='bookmark' title='Permanent Link: The Most Important WordPress Plugin You Will Ever Find &#8211; All in One SEO Pack'>The Most Important WordPress Plugin You Will Ever Find &#8211; All in One SEO Pack</a></li>
<li><a href='http://softduit.com/optimize-artisteer-wordpress-themes-h1h2-title-tags-for-seo/' rel='bookmark' title='Permanent Link: Optimize Artisteer WordPress Theme&rsquo;s H1/H2 Title Tags for SEO'>Optimize Artisteer WordPress Theme&rsquo;s H1/H2 Title Tags for SEO</a></li>
<li><a href='http://softduit.com/charlotte-may-wordpress-meetup-fav-pluginsetupsconfigurations-seo-focus-514/' rel='bookmark' title='Permanent Link: Charlotte May WordPress Meetup Fav Plugin/Setups/Configurations (SEO Focus) 5/14'>Charlotte May WordPress Meetup Fav Plugin/Setups/Configurations (SEO Focus) 5/14</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a title="Review Scribe's free trial for 10 SEO analysis with the wordpress plugin" href="http://www.shareasale.com/r.cfm?b=218976&amp;u=185510&amp;m=25929&amp;urllink=&amp;afftrack="><img style="margin: 0px 0px 30px 15px; display: inline; border: 0px;" title="Scribe SEO Copywriting Made simple" src="http://softduit.com/wp-content/uploads/2010/03/image9.png" border="0" alt="Scribe SEO Copywriting Made simple" width="225" height="144" align="right" /></a></p>
<p>Copywriting, Content Optimization, and <a href="http://en.wikipedia.org/wiki/Search_engine_optimization" target="_blank">SEO</a> Optimization may be tedious, but they do not have to be time consuming nor arcane with the new Scribe SEO for WP Plugin &amp; the upcoming Scribe for the general Web service, which methodically guides writers through the SEO copywriting and content optimization process boosting Search Engine Optimization Results as well as Click through from SERPs!</p>
<h3>SEO Copywriting &amp; Content Optimization – Automated by Copyblogger himself!</h3>
<p>The Scribe service is the <a href="http://www.copyblogger.com/scribe-seo/" target="_blank">brain child of Brian Clark, aka Copyblogger</a>, and he had great reason to create this tool, helping people achieve <a title="see the pie chart halfway down the page of this article" href="http://www.copyblogger.com/seo-copywriting-matter/" target="_blank">better results with Google’s Search Algorithm</a>.</p>
<blockquote><p>I <strong>successfully</strong> tested this <strong>content optimization plugin myself on an </strong><a title="Get the Free Artisteer Trial or buy for as little as $49!" href="http://click.linksynergy.com/fs-bin/click?id=YvXPSOxXAIo&amp;amp;offerid=173903.10000006&amp;amp;type=3&amp;amp;subid=0" target="_blank"><strong>Artisteer</strong></a><strong> generated theme</strong>, its already been <a href="http://www.damiansaunders.net/2010/02/26/reviews/scribe-seo-plugin-taking-the-pain-out-of-seo-copywriting/">proven to work with Thesis</a> themes and StudioPress among others as well. <img src='http://softduit.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p></blockquote>
<h2>Why SEO Copywriting is Important</h2>
<p>If you want your content, your web page, web site, blog article, news article, product page, service, etc to be found on the net, it needs to be written and published in a way that search engines can understand.  You not only have to write the write (key) words, the right number of times but you have to get them <a href="http://amrithallan.com/importance-of-seo-copywriting/" target="_blank">placed in the right spot too</a> &#8211; <em><strong>SEO Copywriting in a nut shell</strong></em>. Its not the end all to getting a number one position in the SERPs, but it can be a solid starting point, one that should be skipped.  Yet up until now, content optimization is something that is typically a time consuming process with a learning curve as steep as the boredom curve of using it!</p>
<p>Any writer, professional or amateur, publisher large or small, business hoping to gain traction on the internet and maintain their position there in a world where location is definitely everything, all of those groups need to make sure that their website is <a href="http://en.wikipedia.org/wiki/Search_engine_optimization_copywriting" target="_blank">search engine optimized for copywriting</a> and that includes every page of importance in that website too.</p>
<p>Is it necessary to optimize every silly little blog article?  No.  But if you have an important blog article or three, you should definitely consider it.</p>
<h2>Scribe SEO Copywriting in WordPress Video Tutorial and Walk through</h2>
<p>Wow, that title is a mouthful.  <img src='http://softduit.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   Anyway, enough of the optimized mumbo jumbo.  Odds are if you have read this far, then this might actually be something useful for you to consider.  The 2 videos walk through the plugin for wordpress from Scribe, the brain child of Brian Clark, aka Copyblogger.  I wanted to take a look at the first incarnation of this service, to get a feel for what it can do.  The video gives the overview in the first part, and in the second part I delve into what it actually does, and where the pricing sweet spots are.</p>
<p>Yes this does cost money.  That’s why I put the video together.  You can download the plugin for yourself and use a 10 page analysis free trial yourself, but that’s a big time commitment up front.  So check out the second video at least (if not both) and see if you think this plugin would be useful for you.  After the videos, I ‘ll share some of my own insights on how you might want to use it.</p>
<h3>Part 1 Scribe SEO Copywriting w WordPress Review</h3>
<div id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:4d523920-6fb7-4e78-bd11-8da672ac7fb1" class="wlWriterEditableSmartContent" style="margin: 0px auto; padding: 0px; width: 425px; display: block; float: none;">
<div><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="355" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.youtube.com/v/cN1NgxmaoCY&amp;hl=en_US&amp;fs=1&amp;rel=0&amp;color1=0x5d1719&amp;color2=0xcd311b&amp;hl=en" /><embed type="application/x-shockwave-flash" width="425" height="355" src="http://www.youtube.com/v/cN1NgxmaoCY&amp;hl=en_US&amp;fs=1&amp;rel=0&amp;color1=0x5d1719&amp;color2=0xcd311b&amp;hl=en"></embed></object></div>
<div style="clear: both; font-size: .8em;">Part 1 SEO for WordPress Copywriting Plugin</div>
</div>
<h2>Part 2 Scribe SEO Copywriting for WP Review – What it Analyzes, How it Helps and Where the Bargain is</h2>
<div id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:2246baed-14d8-421b-a91e-8e7730ad44c9" class="wlWriterEditableSmartContent" style="margin: 0px auto; padding: 0px; width: 425px; display: block; float: none;">
<div><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="355" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.youtube.com/v/FX1R-nyx5xk&amp;hl=en_US&amp;fs=1&amp;rel=0&amp;color1=0x5d1719&amp;color2=0xcd311b&amp;hl=en" /><embed type="application/x-shockwave-flash" width="425" height="355" src="http://www.youtube.com/v/FX1R-nyx5xk&amp;hl=en_US&amp;fs=1&amp;rel=0&amp;color1=0x5d1719&amp;color2=0xcd311b&amp;hl=en"></embed></object></div>
<div style="clear: both; font-size: .8em;">Part 2 SEO for WordPress Copywriting Plugin</div>
</div>
<blockquote><p>As a <a href="http://www.linkedin.com/in/softduitpartners">former</a> <a href="http://softduit.com/about-us/brett-bumeter-profile/">accountant and financial analyst</a> I don’t generally step up to the plate and shell out money for something I can do myself.  I’m cheap, I know it and there are times when that is a character flaw.  <img src='http://softduit.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p></blockquote>
<p>All that said, when I look at this plugin I can see that there would be times when you would want to optimize some but not all of your content.</p>
<p>Sure, altruistically, we might think that every single thing we ever write is very important and should get the maximum amount of attention.  In reality that is not the case.  Sometimes on the web, some pages just communicate timely little pieces of communication, like a happy birthday in 2005 or a ‘I had a bad day in 2006 and noticed XYZ’.  Some of these article might help a writer or business connect better with parts of their audience or customer base, but the shelf life on these articles is probably pretty short.  So imho don’t spend money optimizing it.</p>
<p>But if you have content that is important, that is generating some traffic or incoming <a href="http://en.wikipedia.org/wiki/Backlinks" target="_blank">backlinks</a> all on their own, take some effort to optimize those articles first.  Get some more bang for your buck out of your high performing articles.</p>
<p>Then start looking through your content for those elements that are under performing for no apparent reason.  See if there is a <strong>SEO copywriting optimization opportunity</strong> to increase those articles or product pages in the <a title="Listing of web pages returned by a search engine such as Google (Google Top 10)" href="http://en.wikipedia.org/wiki/Serp">SERP</a>s(not to be confused with <a href="http://news.bbc.co.uk/2/hi/business/3197849.stm">SERPS</a>) through some crafty <a href="http://en.wikipedia.org/wiki/Search_engine_optimization">SEO suggestions</a> from this great plugin.</p>
<p>After that if you have time and money, and you want to boost some other things knock yourself out.  As you write new content, if you want those articles to have the opportunity to reach their full potential, then optimize them also.  But don’t neglect your big rocks, get them in your jar first before you put the smaller rocks in if you want your site to fill up with traffic.</p>
<h2>Prioritizing Long Tail Copywriting Optimization</h2>
<ol>
<li>Identify your highest trafficked Pages or Posts (Check your stats, <a href="http://en.wikipedia.org/wiki/Google_Analytics" target="_blank">google analytics</a>, shortstat or a popularity tool if you are running one)</li>
<li>Analyze &amp; Optimize these first!</li>
<li>Then go back and focus on good articles that are low performers</li>
<li>Finally, Optimize new articles as you see fit</li>
</ol>
<p><a href="http://www.shareasale.com/r.cfm?b=218976&amp;u=185510&amp;m=25929&amp;urllink=&amp;afftrack=" target="_blank"><img style="margin: 15px auto 0px; display: block; float: none;" src="http://www.shareasale.com/image/25929/scribe-468x60.jpg" border="0" alt="SEO Copywriting Made Simple" /></a></p>
<p>UPDATE</p>
<p>Just to give some additional static visual references, I went through the process of analyzing and optimizing this very article.</p>
<p>First, I go to my post to edit.</p>
<p><img style="display: inline; border-width: 0px;" title="image" src="http://softduit.com/wp-content/uploads/2010/03/image1.png" border="0" alt="image" width="244" height="191" /></p>
<p>I noticed right away that my <a href="http://wordpress.org/extend/plugins/all-in-one-seo-pack/">All in One SEO</a> tags, description and title had not been uploaded correctly to WordPress from <a href="http://windowslivewriter.spaces.live.com/">WindowsLiveWriter</a> where I’m running the <a href="http://techie-buzz.com/wordpress-plugins/all-in-one-seo-wlw-bridge-plugin.html">All in One SEO Bridge</a> and All in One SEO in WP.  So I next copied and pasted that information into wordpress and updated my wordPress page because something wasn’t working with my add on.</p>
<p><img style="display: inline; border-width: 0px;" title="image" src="http://softduit.com/wp-content/uploads/2010/03/image2.png" border="0" alt="image" width="204" height="118" /></p>
<p>Everything is all green now for Scribe SEO, so I’m ready to hit analyze.  (I’m still working through my own free trial as of 3-19-2010)</p>
<p>It processes . . . <img style="display: inline; border-width: 0px;" title="image" src="http://softduit.com/wp-content/uploads/2010/03/image3.png" border="0" alt="image" width="154" height="34" /></p>
<p>I scored an 89%, which isn’t too bad, or at least feels a little gratifying.</p>
<p><a href="http://softduit.com/wp-content/uploads/2010/03/image4.png"><img style="display: inline; border-width: 0px;" title="image" src="http://softduit.com/wp-content/uploads/2010/03/image_thumb1.png" border="0" alt="image" width="454" height="280" /></a></p>
<p>The 3 yellow areas indicate that my title is too long, so is my description and I only have 7 external links when I should have about 8 external links.  So I did a quick Google search on the keyword &#8216;copywriting optimization&#8217; thinking I might find some additional resources or further background information.  Had to chuckle when I saw that this article, published 5 minutes ago was already in the Google top 10.</p>
<p><img style="display: inline; border-width: 0px;" title="image" src="http://softduit.com/wp-content/uploads/2010/03/image5.png" border="0" alt="image" width="454" height="277" /></p>
<p>I was already pretty generous with some links to other blogs, so I simply added a Wikipedia link to SEO Copywriting.</p>
<p>I next reviewed the Keyword analysis in Scribe’s tab.</p>
<p><img style="display: inline; border-width: 0px;" title="image" src="http://softduit.com/wp-content/uploads/2010/03/image6.png" border="0" alt="image" width="454" height="280" /></p>
<p>I was happy with the results of the copywriting optimization on this front so moved on.</p>
<p>The next tab gave me some suggestions about ways to adjust the primary keywords as viewed by a search engine.</p>
<p><img style="display: inline; border-width: 0px;" title="image" src="http://softduit.com/wp-content/uploads/2010/03/image7.png" border="0" alt="image" width="454" height="145" /></p>
<p>The Tags and Serp Tabs were self explanatory.  (I do like the SERP Tab for a preview of your article listed in Google)</p>
<p><img style="display: inline; border-width: 0px;" title="image" src="http://softduit.com/wp-content/uploads/2010/03/image8.png" border="0" alt="image" width="454" height="175" /></p>
<p>The SEO best practices tab, is just general SEO information as far as I can tell and not specific to this article</p>
<p>I wrapped things up, by shortening my description, removing the original blog title and replacing it with a shorter version for optimization reasons, and copied the old title (which the stupid writer in me thought had a nice hook and made it an H3 level header.</p>
<p>Finally, re-ran the analysis (each re-run of the analysis deducts from your account, so I don’t recommend too many redos, I had a 95% score on this article.</p>
<p><a href="http://softduit.com/wp-content/uploads/2010/03/image10.png"><img style="display: inline; border: 0px;" title="image" src="http://softduit.com/wp-content/uploads/2010/03/image_thumb2.png" border="0" alt="image" width="244" height="150" /></a></p>
<p>Basically that boils down to about $0.32 &#8211; $0.40 to optimize my article and make sure it is delivering the results I want it to deliver!</p>
<div class="zemanta-related">
<h6 class="zemanta-related-title" style="font-size: 1em;">Related articles by Zemanta</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://www.copyblogger.com/scribe-seo/">Introducing Scribe: SEO Copywriting Made Simple</a> (copyblogger.com)</li>
</ul>
</div>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><img class="zemanta-pixie-img" style="float: right; border-style: none;" src="http://img.zemanta.com/pixy.gif?x-id=7cb370c1-2bc2-4fd2-ac28-2c122c61f885" alt="" /></div>


<p>Related posts:<ol><li><a href='http://softduit.com/the-most-important-wordpress-plugin-you-will-ever-find-all-in-one-seo-pack/' rel='bookmark' title='Permanent Link: The Most Important WordPress Plugin You Will Ever Find &#8211; All in One SEO Pack'>The Most Important WordPress Plugin You Will Ever Find &#8211; All in One SEO Pack</a></li>
<li><a href='http://softduit.com/optimize-artisteer-wordpress-themes-h1h2-title-tags-for-seo/' rel='bookmark' title='Permanent Link: Optimize Artisteer WordPress Theme&rsquo;s H1/H2 Title Tags for SEO'>Optimize Artisteer WordPress Theme&rsquo;s H1/H2 Title Tags for SEO</a></li>
<li><a href='http://softduit.com/charlotte-may-wordpress-meetup-fav-pluginsetupsconfigurations-seo-focus-514/' rel='bookmark' title='Permanent Link: Charlotte May WordPress Meetup Fav Plugin/Setups/Configurations (SEO Focus) 5/14'>Charlotte May WordPress Meetup Fav Plugin/Setups/Configurations (SEO Focus) 5/14</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://softduit.com/seo-copywriting-content-optimization-automated-by-copyblogger-himself/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Can&#8217;t Drag Widget into Sidebar 2 on Artisteer Designed Theme?</title>
		<link>http://softduit.com/cant-drag-widget-into-sidebar-2-on-artisteer-designed-theme/</link>
		<comments>http://softduit.com/cant-drag-widget-into-sidebar-2-on-artisteer-designed-theme/#comments</comments>
		<pubDate>Tue, 15 Sep 2009 22:50:29 +0000</pubDate>
		<dc:creator>Brett Bumeter</dc:creator>
				<category><![CDATA[Labs on the Lake]]></category>
		<category><![CDATA[Artisteer Tips]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://softduit.com/events/labs-on-the-lake/cant-drag-widget-into-sidebar-2-on-artisteer-designed-theme/</guid>
		<description><![CDATA[A friend of mine that is learning how to use both WordPress and Artisteer, the theme design software, sent me a question about what appeared to be a broken sidebar option within WordPress.&#160; 
John of TransformativeLifeCoaches.com asks
I am wanting to install an Aweber autoresponder Sign Up Box (for a Giveaway report and a series of [...]


Related posts:<ol><li><a href='http://softduit.com/optimize-artisteer-wordpress-themes-h1h2-title-tags-for-seo/' rel='bookmark' title='Permanent Link: Optimize Artisteer WordPress Theme&rsquo;s H1/H2 Title Tags for SEO'>Optimize Artisteer WordPress Theme&rsquo;s H1/H2 Title Tags for SEO</a></li>
<li><a href='http://softduit.com/wordpress-theme-design-contest-win-a-free-artisteer-license/' rel='bookmark' title='Permanent Link: WordPress Theme Design Contest &#8211; Win a Free Artisteer License'>WordPress Theme Design Contest &#8211; Win a Free Artisteer License</a></li>
<li><a href='http://softduit.com/artisteer-2-4-with-vertical-menus-flash-headers-available/' rel='bookmark' title='Permanent Link: Artisteer 2.4 with Vertical Menus &amp; Flash Headers Available'>Artisteer 2.4 with Vertical Menus &amp; Flash Headers Available</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>A friend of mine that is learning how to use both WordPress and <a title="Get the Free Artisteer Trial or buy for as little as $49!" href="http://click.linksynergy.com/fs-bin/click?id=YvXPSOxXAIo&amp;amp;offerid=173903.10000006&amp;amp;type=3&amp;amp;subid=0" target="_blank">Artisteer</a>, the theme design software, sent me a question about what appeared to be a broken sidebar option within WordPress.&#160; </p>
<blockquote><p><b><a href="http://transformativelifecoaches.com/">John of TransformativeLifeCoaches.com</a> asks</b></p>
<p><b>I am wanting to install an Aweber autoresponder Sign Up Box (for a Giveaway report and a </b><b>series of </b><b>autoresponder</b><b> emails) on our site.&#160; <br /></b></p>
<p><b>I believe the best way to do that is to put the Sign Up box in Sidebar 2 which doesn&#8217;t appear to be activated on our TLCoaches site.&#160; <br /></b></p>
<p><b>I went&#160; to Widgets on the WP control panel to drag the &quot;text/HTML&quot; widget onto Sidebar 2 but<u> it wouldn&#8217;t drag nor do any other widgets</u>.&#160; <br />Can you tell me the best way to get the autoresponder box on every page of our site?         <br /></b></p>
</blockquote>
<p>In reality, WordPress and the sidebars on the site were not broken.&#160; Here’s a quick snapshot of the site as of the date of the question.</p>
<p><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="image" border="0" alt="image" src="http://softduit.com/wp-content/uploads/2009/09/image_thumb.png" width="454" height="282" /></p>
<p>This particular site only has 1 sidebar programmed into the theme.&#160; With Artisteer (as of Sept 2009) at most you can design themes with 2 sidebars.&#160; You can add more than 2 sidebars to the themes after export but that is another topic for a different day.</p>
<p><a href="http://softduit.com/wp-content/uploads/2009/09/image.png"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="image" border="0" alt="image" src="http://softduit.com/wp-content/uploads/2009/09/image_thumb1.png" width="454" height="146" /></a> </p>
<p>In this case, with only 1 sidebar designed in the theme, when a user logs into WordPress, they can only activate/use/drag and drop widgets to the sidebar that actually is turned on an enabled within functions.php of the theme they have created.</p>
<p>Two sidebars do show up sometimes, but only 1 will work when your theme has just a single sidebar activated.<img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="image" border="0" alt="image" src="http://softduit.com/wp-content/uploads/2009/09/image1.png" width="200" height="166" /></p>
<p><strong>The Solution</strong></p>
<p>In this case if John wants to utilize a second (new) sidebar, all he has to do, is open up his theme in Artisteer and make a 5 second change to his layout, adding a sidebar where he likes, and then export and upload the updated theme to his website.</p>
<p>Piece of cake!</p>
<p><strong>UPDATE</strong></p>
<p>If you read the comments below, you will learn that the original solution and trouble shooting didn’t quite fix this problem.&#160; the solution was a little easier, but also more hidden.</p>
<p>To fix this, John learned that he needed to click on the screen options button at the top right hand corner of every wordpress admin screen.</p>
<p><a href="http://softduit.com/wp-content/uploads/2009/09/image2.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://softduit.com/wp-content/uploads/2009/09/image_thumb2.png" width="381" height="89" /></a> </p>
<p>Then </p>
<blockquote><p>On WP widgets page, I went to screen options and hit “enable accessibility mode”-simple solution, just didn’t know it was there.</p>
</blockquote>
<p><a href="http://softduit.com/wp-content/uploads/2009/09/image3.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://softduit.com/wp-content/uploads/2009/09/image_thumb3.png" width="644" height="210" /></a></p>


<p>Related posts:<ol><li><a href='http://softduit.com/optimize-artisteer-wordpress-themes-h1h2-title-tags-for-seo/' rel='bookmark' title='Permanent Link: Optimize Artisteer WordPress Theme&rsquo;s H1/H2 Title Tags for SEO'>Optimize Artisteer WordPress Theme&rsquo;s H1/H2 Title Tags for SEO</a></li>
<li><a href='http://softduit.com/wordpress-theme-design-contest-win-a-free-artisteer-license/' rel='bookmark' title='Permanent Link: WordPress Theme Design Contest &#8211; Win a Free Artisteer License'>WordPress Theme Design Contest &#8211; Win a Free Artisteer License</a></li>
<li><a href='http://softduit.com/artisteer-2-4-with-vertical-menus-flash-headers-available/' rel='bookmark' title='Permanent Link: Artisteer 2.4 with Vertical Menus &amp; Flash Headers Available'>Artisteer 2.4 with Vertical Menus &amp; Flash Headers Available</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://softduit.com/cant-drag-widget-into-sidebar-2-on-artisteer-designed-theme/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>Lab on the Lake 3 &#8211; Networking Your Blog While Building Traffic</title>
		<link>http://softduit.com/lab-on-the-lake-3-networking-your-blog-while-building-traffic/</link>
		<comments>http://softduit.com/lab-on-the-lake-3-networking-your-blog-while-building-traffic/#comments</comments>
		<pubDate>Wed, 27 May 2009 19:29:09 +0000</pubDate>
		<dc:creator>Brett Bumeter</dc:creator>
				<category><![CDATA[Labs on the Lake]]></category>

		<guid isPermaLink="false">http://softduit.com/events/labs-on-the-lake/lab-on-the-lake-3-networking-your-blog-while-building-traffic/</guid>
		<description><![CDATA[We held the third Lab on the Lake today on the topic of Networking your blog while building traffic.&#160; This session ended a little early due to rain, but over all we covered the large part of this topic.&#160; The next Lab on the Lake is 5-29(Friday) covering the topic of WordPress Installation and Configuration [...]


Related posts:<ol><li><a href='http://softduit.com/labs-on-the-lake-monetizing-blogs-and-traffic-building-by-networking-week-of-518/' rel='bookmark' title='Permanent Link: Labs on the Lake &#124; Monetizing Blogs and Traffic Building by Networking-Week of 5/18'>Labs on the Lake &#124; Monetizing Blogs and Traffic Building by Networking-Week of 5/18</a></li>
<li><a href='http://softduit.com/wordpress-lab-on-the-lake-5-13-wp-installs-configurations-theme-design/' rel='bookmark' title='Permanent Link: WordPress Lab on the Lake 5-13: WP Installs, Configurations, Theme Design'>WordPress Lab on the Lake 5-13: WP Installs, Configurations, Theme Design</a></li>
<li><a href='http://softduit.com/brett-bumeter-speaking-at-wordcamp-birmingham-2009/' rel='bookmark' title='Permanent Link: Brett Bumeter Speaking at WordCamp Birmingham 2009'>Brett Bumeter Speaking at WordCamp Birmingham 2009</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>We held the third Lab on the Lake today on the topic of Networking your blog while building traffic.&#160; This session ended a little early due to rain, but over all we covered the large part of this topic.&#160; The next Lab on the Lake is 5-29(Friday) covering the topic of WordPress Installation and Configuration Join the group for <a href="http://www.meetup.com/Greater-Charlotte-Area-WordPress-Group/calendar/10504981/" target="_blank" rel="nofollow">free or rsvp now</a>.</p>
<p><object id="Player" width="400" height="400" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"><param name="movie" value="http://static.livestream.com/grid/PlayerV2.swf?channel=wificove&amp;layout=playerEmbedDefault&amp;backgroundColor=0xffffff&amp;backgroundAlpha=1&amp;backgroundGradientStrength=0&amp;chromeColor=0x000000&amp;headerBarGlossEnabled=true&amp;controlBarGlossEnabled=true&amp;chatInputGlossEnabled=true&amp;uiWhite=true&amp;uiAlpha=0.5&amp;uiSelectedAlpha=1&amp;dropShadowEnabled=true&amp;dropShadowHorizontalDistance=10&amp;dropShadowVerticalDistance=10&amp;paddingLeft=10&amp;paddingRight=10&amp;paddingTop=10&amp;paddingBottom=10&amp;cornerRadius=10&amp;backToDirectoryURL=null&amp;bannerURL=null&amp;bannerText=null&amp;bannerWidth=320&amp;bannerHeight=50&amp;showViewers=true&amp;embedEnabled=true&amp;chatEnabled=true&amp;onDemandEnabled=true&amp;programGuideEnabled=false&amp;fullScreenEnabled=true&amp;reportAbuseEnabled=false&amp;gridEnabled=false&amp;initialIsOn=false&amp;initialIsMute=false&amp;initialVolume=6&amp;contentId=pla_2374138492935825913&amp;initThumbUrl=null&amp;playeraspectwidth=4&amp;playeraspectheight=3&amp;mogulusLogoEnabled=true" /><param name="allowFullScreen" value="true" /><param name="bgcolor" value="#ffffff" /><param name="wmode" value="window" /><embed name="Player" src="http://static.livestream.com/grid/PlayerV2.swf?channel=wificove&amp;layout=playerEmbedDefault&amp;backgroundColor=0xffffff&amp;backgroundAlpha=1&amp;backgroundGradientStrength=0&amp;chromeColor=0x000000&amp;headerBarGlossEnabled=true&amp;controlBarGlossEnabled=true&amp;chatInputGlossEnabled=true&amp;uiWhite=true&amp;uiAlpha=0.5&amp;uiSelectedAlpha=1&amp;dropShadowEnabled=true&amp;dropShadowHorizontalDistance=10&amp;dropShadowVerticalDistance=10&amp;paddingLeft=10&amp;paddingRight=10&amp;paddingTop=10&amp;paddingBottom=10&amp;cornerRadius=10&amp;backToDirectoryURL=null&amp;bannerURL=null&amp;bannerText=null&amp;bannerWidth=320&amp;bannerHeight=50&amp;showViewers=true&amp;embedEnabled=true&amp;chatEnabled=true&amp;onDemandEnabled=true&amp;programGuideEnabled=false&amp;fullScreenEnabled=true&amp;reportAbuseEnabled=false&amp;gridEnabled=false&amp;initialIsOn=false&amp;initialIsMute=false&amp;initialVolume=6&amp;contentId=pla_2374138492935825913&amp;initThumbUrl=null&amp;playeraspectwidth=4&amp;playeraspectheight=3&amp;mogulusLogoEnabled=true" allowFullScreen="true" type="application/x-shockwave-flash" bgcolor="#ffffff" width="400" height="400" wmode="window"></embed></object></p>
<p> <a href="http://softduit.com/wp-content/uploads/2009/05/image1.png"><img title="image" style="border-right: 0px; border-top: 0px; display: block; float: none; margin-left: auto; border-left: 0px; margin-right: auto; border-bottom: 0px" height="204" alt="image" src="http://softduit.com/wp-content/uploads/2009/05/image-thumb1.png" width="506" border="0" /></a>
<p>Resources:</p>
<ul>
<li><a href="http://www.meetup.com/Greater-Charlotte-Area-WordPress-Group/" target="_blank">Greater Charlotte Area WordPress Meetup Group</a></li>
<li><a href="http://softduit.com/intermediate/blog-surfing-networks/" target="_blank">Blog Surfing Networks</a></li>
<li><a href="http://www.commentkahuna.com/" target="_blank" rel="nofollow">Comment Kahuna</a></li>
<li><a href="http://www.blogcatalog.com/user/brettbum" target="_blank" rel="nofollow">BlogCatalog</a></li>
</ul>
<p>&#160;</p>
<p>Below are some text transcripts that are very rough and intended primarily to help people find this video via search.</p>
<blockquote><p><font color="#000080" size="2">Everybody this is Brett Bumeter, and I am coming to you from Lake Wylie, North Carolina. This is a down the River comics covers is done and I live in Belmont now going to just cross that river or lake from Charlotte North Carolina today. We&#8217;re going to be talking about networking your blog while building traffic in general. On the topic that were going to be covering today is a relevant. A relatively fundamental topic and logging and it involves. What I would call of some Web one .oh methodology. Today we have a lot of social media networks out there that help people learn how to network their blog. Promote what they&#8217;re doing, and one of the good things, but there was a time before social media hit for Web two .oh functionality. It wing bloggers just wrote articles, and they had other ways of networking with each other in some of those ways still exist for people starting out in blogging. It can actually be relatively useful to try some of those out partly understand where we&#8217;ve come from production where we&#8217;re going, and partly just to see what&#8217;s happening up there on the web because there&#8217;s a lot of older bloggers are people that have been blogging for a long time that haven&#8217;t all embrace the new social media tools that are out there some great writers that are good writers but not good networkers. And there&#8217;s some people out there that are great writers that don&#8217;t know how to use of the social media tools that exist. So I&#8217;m not knocking that one way or another, but I do want to show you some things that people used to use Angelo&#8217;s things you can still use today to good advantage. So I&#8217;m just kind of have to step back of my name is Brett Bumeter. And I blog or work from an office here on the lake and its actually a WiFi fishing dock, and we offer lab sessions where people can come in and sit down with me. And we can help teach you how to write a blog builder blog install a blog. Even design your own WordPress theme with a number of things with WordPress from web design to blog management to content management systems, and I also run a local WordPress meet a group. So one of the things that we found is that there were a lot of people coming to our meet ups that were interested in WordPress or blogging or number of related topics, but they were missing some fundamental information so we so some of these lab on the lake session where people come and give people a time and receive some training or mentoring or whatever it is they needed and I setting unlike relaxin environment can move on from there. So that&#8217;s overdoing today, kicked things off by taking a look at some of the basics of blog network. Now, in general, take a half step back of blog. Often times. It&#8217;s like a conversation, some people like to confuse blogging with a journalism and blogging the tool it can be used for journalism, but it doesn&#8217;t have to be. I can just be a one to many conversation from a person that writes the blog article to everyone that reads it in some cases those readers will even respond and comment back on talking to the blogger and that could spiral into a longer conversation. So if we think of a blog is a conversation, networking is a natural outcome of that conversation because people will need to find other people to talk to to have that conversation have to talk to somebody otherwise know is that conversation. So there are some tools that were developed some years back that help bloggers essentially list their blogs within a network and it enabled other bloggers as well as people enjoyed reading those blogs to randomly go through. View the blogs see the most recent articles, leave comments a number of that sort I go through. Couple those tools and how they work their were some networks as well that not only did that but they actually offered something that I might call a marketing service and that they were helping those bloggers get more traffic, and I&#8217;m not going to cover really the ethics of how that might be good bad or otherwise. But you should be aware that some of these networks were used for that purpose and still<br />
 are today. The thing about that type of situation is there are times when that traffic can look spammy or it can look particularly the cheaper false to advertisers that might want to advertise on your site. So if you&#8217;re actually looking to build quality traffic people that are really interested in what you are writing people that are really interested in what you&#8217;re talking about and from your advertisers perspective people that are actually real people that might be interested in the products they advertise. Then, some of these networks that we might point out are probably not be for you. I&#8217;m not trying to encourage spam by a long shot, but I do want to show you the networks and help you understand the good the bad and everything in between, so you&#8217;ll understand the tools and know-how to use them while because there are couple of them can be used to very good advantage. And you can even bathe and actually deserves to help clean out some of the spammers and the blogosphere is going to. So let&#8217;s take a look at a couple of the blog surfing networks is what I liked: some people call them blog surfing exchanges were blog exchanges and I&#8217;m going to come into my site as often media. And I went to go to the intermediate-range section on the blog surfing networks. Take a look at this page on this page is to a long list of the ways that did this and many of them have gone out of business. Even some relatively large ones, but there&#8217;s still a handful route I&#8217;ve actually got three listed here by do-gooders. Probably a dozen more, but there&#8217;s three different ones here, one of them is called blog explosion, and one of them is called click pirates and one of them is called blogsoldiers now from their names alone, you might be able to infer couple different things. What may or may not be apparent is that blog explosion is probably one of the least spammy blog surfing exchanges out there. There was a time when they were actually very integral in shielding and cleaning out some of the spam on the blogosphere. They don&#8217;t wear that hat as much these days, partly due to the explosion of social media that they do help in a number different situations to help bloggers. See what other types of blogs are out there screen out what is normally decent content on those blogs and help bloggers network is radically them first. So I&#8217;m going to, click here and move over to blog explosion. Now, I&#8217;m not going to walk through the process of establishing an account with blog explosion through this tutorial on to establish an account of blog explosion basis of user profile. You list your blog and some information about your blog and someone from blog explosion will eventually review your site confirm that it&#8217;s a real blog and not pornography or spam or something like that. And then they will list you in the directory now. Blog explosion chose instead to the top. You can see that they have approximately 92,000 blogs in their directory, and of those those are people who submitted fifteen thousand have been reviewed. So not everybody that Smits gets in. That&#8217;s a good thing because there&#8217;s a lot of garbage blogs out there. Now they have a blogs visited number of thirty-five million that means blogs on their list here have been viewed thirty-five million times the bed. Submitted reviewed excepted and visited by people that use the blog explosion service. So that&#8217;s quite a bit of visitors, but the service is also the proper number of years. The site is relatively simple to navigate going to login here remember my password. That would definitely</font></p>
</blockquote>


<p>Related posts:<ol><li><a href='http://softduit.com/labs-on-the-lake-monetizing-blogs-and-traffic-building-by-networking-week-of-518/' rel='bookmark' title='Permanent Link: Labs on the Lake &#124; Monetizing Blogs and Traffic Building by Networking-Week of 5/18'>Labs on the Lake &#124; Monetizing Blogs and Traffic Building by Networking-Week of 5/18</a></li>
<li><a href='http://softduit.com/wordpress-lab-on-the-lake-5-13-wp-installs-configurations-theme-design/' rel='bookmark' title='Permanent Link: WordPress Lab on the Lake 5-13: WP Installs, Configurations, Theme Design'>WordPress Lab on the Lake 5-13: WP Installs, Configurations, Theme Design</a></li>
<li><a href='http://softduit.com/brett-bumeter-speaking-at-wordcamp-birmingham-2009/' rel='bookmark' title='Permanent Link: Brett Bumeter Speaking at WordCamp Birmingham 2009'>Brett Bumeter Speaking at WordCamp Birmingham 2009</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://softduit.com/lab-on-the-lake-3-networking-your-blog-while-building-traffic/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Labs on the Lake &#124; Monetizing Blogs and Traffic Building by Networking-Week of 5/18</title>
		<link>http://softduit.com/labs-on-the-lake-monetizing-blogs-and-traffic-building-by-networking-week-of-518/</link>
		<comments>http://softduit.com/labs-on-the-lake-monetizing-blogs-and-traffic-building-by-networking-week-of-518/#comments</comments>
		<pubDate>Mon, 18 May 2009 07:52:41 +0000</pubDate>
		<dc:creator>Brett Bumeter</dc:creator>
				<category><![CDATA[Labs on the Lake]]></category>

		<guid isPermaLink="false">http://softduit.com/events/labs-on-the-lake/labs-on-the-lake-monetizing-blogs-and-traffic-building-by-networking-week-of-518/</guid>
		<description><![CDATA[This week we are kicking off two more Labs on the Lake.&#160; This week we will hold two labs.&#160; One today, Monday(5-18 at 2pm est), covering the topic of Blog Monetization, walking through some blog revenue sources, adding some new ones to the list and giving some advice on how to navigate these options which [...]


Related posts:<ol><li><a href='http://softduit.com/lab-on-the-lake-3-networking-your-blog-while-building-traffic/' rel='bookmark' title='Permanent Link: Lab on the Lake 3 &#8211; Networking Your Blog While Building Traffic'>Lab on the Lake 3 &#8211; Networking Your Blog While Building Traffic</a></li>
<li><a href='http://softduit.com/wordpress-lab-on-the-lake-5-13-wp-installs-configurations-theme-design/' rel='bookmark' title='Permanent Link: WordPress Lab on the Lake 5-13: WP Installs, Configurations, Theme Design'>WordPress Lab on the Lake 5-13: WP Installs, Configurations, Theme Design</a></li>
<li><a href='http://softduit.com/charlotte-may-wordpress-meetup-fav-pluginsetupsconfigurations-seo-focus-514/' rel='bookmark' title='Permanent Link: Charlotte May WordPress Meetup Fav Plugin/Setups/Configurations (SEO Focus) 5/14'>Charlotte May WordPress Meetup Fav Plugin/Setups/Configurations (SEO Focus) 5/14</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>This week we are kicking off two more Labs on the Lake.&#160; This week we will hold two labs.&#160; One today, Monday(5-18 at 2pm est), covering the topic of Blog Monetization, walking through some <a href="http://softduit.com/intermediate/revenue-sources-for-blogs-and-bloggers/" target="_blank">blog revenue sources</a>, adding some new ones to the list and giving some advice on how to navigate these options which can be murky on a good day. <strong>[Meetup RSVP </strong><a href="http://www.meetup.com/Greater-Charlotte-Area-WordPress-Group/calendar/10421503/" target="_blank" rel="nofollow"><strong>link</strong></a><strong>]</strong>&#160; </p>
<p>This like many of our topics will be covered several times.&#160; Blog Monetization is definitely not something that can be covered in a single day, let alone a single lab.&#160; Many people are looking for ways to earn extra money, raise revenue to market their companies more, or even start their own business.&#160; We will help people get started with the process of making money with a blog (a blog is required to follow along with this lab in person or on our live show at Mogulus.com/wificove ).</p>
<p>Then on Thursday(5/21 2 pm est) we are going to cover the topic of building traffic through networking.&#160; <strong>[Meetup RSVP </strong><a href="http://www.meetup.com/Greater-Charlotte-Area-WordPress-Group/calendar/10421565/" target="_blank" rel="nofollow"><strong>link</strong></a><strong>]</strong></p>
<p>Again this is a very deep topic and one we will revisit many times in the future, but you can tune into either lab at 2 PM est or if you are in the Charlotte area, RSVP through our Meetup group (cost $5 to attend) and spend an afternoon on the lake learning some great web skills that will make you money.</p>
<p>We are following up on our first <a href="http://www.meetup.com/Greater-Charlotte-Area-WordPress-Group/calendar/10372601/" target="_blank">Lab on the Lake</a> last week, which covered WordPress Installation, WordPress Configuration, &amp; WordPress Theme design with our favorite <a href="http://softduit.com/products-reviews-and-tutorials/wordpress-theme-software/" target="_blank">WordPress Theme Generator-Artisteer</a>.&#160; The video from this event (our first live broadcast) didn’t take to well, but we got the bugs worked out the next night when we held our weekly WordPress Meetup in Charlotte and do expect this weeks events to go off without a hitch.</p>


<p>Related posts:<ol><li><a href='http://softduit.com/lab-on-the-lake-3-networking-your-blog-while-building-traffic/' rel='bookmark' title='Permanent Link: Lab on the Lake 3 &#8211; Networking Your Blog While Building Traffic'>Lab on the Lake 3 &#8211; Networking Your Blog While Building Traffic</a></li>
<li><a href='http://softduit.com/wordpress-lab-on-the-lake-5-13-wp-installs-configurations-theme-design/' rel='bookmark' title='Permanent Link: WordPress Lab on the Lake 5-13: WP Installs, Configurations, Theme Design'>WordPress Lab on the Lake 5-13: WP Installs, Configurations, Theme Design</a></li>
<li><a href='http://softduit.com/charlotte-may-wordpress-meetup-fav-pluginsetupsconfigurations-seo-focus-514/' rel='bookmark' title='Permanent Link: Charlotte May WordPress Meetup Fav Plugin/Setups/Configurations (SEO Focus) 5/14'>Charlotte May WordPress Meetup Fav Plugin/Setups/Configurations (SEO Focus) 5/14</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://softduit.com/labs-on-the-lake-monetizing-blogs-and-traffic-building-by-networking-week-of-518/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Charlotte May WordPress Meetup Fav Plugin/Setups/Configurations (SEO Focus) 5/14</title>
		<link>http://softduit.com/charlotte-may-wordpress-meetup-fav-pluginsetupsconfigurations-seo-focus-514/</link>
		<comments>http://softduit.com/charlotte-may-wordpress-meetup-fav-pluginsetupsconfigurations-seo-focus-514/#comments</comments>
		<pubDate>Mon, 11 May 2009 01:38:32 +0000</pubDate>
		<dc:creator>Brett Bumeter</dc:creator>
				<category><![CDATA[Labs on the Lake]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Plugin Configuration]]></category>

		<guid isPermaLink="false">http://softduit.com/?p=293</guid>
		<description><![CDATA[Charlotte May WordPress Meetup Fav Plugin/Setups/Configurations (SEO Focus)


Hi Everyone,
We are having are official May Charlotte Meetup Next Week!  This meetup is a free event for all members.   read more
Cost: $5.00
Meetup Membership: Required
Membership: Free


Related posts:WordPress Lab on the Lake 5-13: WP Installs, Configurations, Theme Design
Creation of the Charlotte Area WordPress Enthusiasts group on [...]


Related posts:<ol><li><a href='http://softduit.com/wordpress-lab-on-the-lake-5-13-wp-installs-configurations-theme-design/' rel='bookmark' title='Permanent Link: WordPress Lab on the Lake 5-13: WP Installs, Configurations, Theme Design'>WordPress Lab on the Lake 5-13: WP Installs, Configurations, Theme Design</a></li>
<li><a href='http://softduit.com/creation-of-the-charlotte-area-wordpress-enthusiasts-group-on-meetupcom/' rel='bookmark' title='Permanent Link: Creation of the Charlotte Area WordPress Enthusiasts group on MeetUp.com'>Creation of the Charlotte Area WordPress Enthusiasts group on MeetUp.com</a></li>
<li><a href='http://softduit.com/greater-charlotte-area-wordpress-meetup-how-to-design-a-wp-theme/' rel='bookmark' title='Permanent Link: Greater Charlotte Area WordPress Meetup &#8211; How to Design a WP Theme'>Greater Charlotte Area WordPress Meetup &#8211; How to Design a WP Theme</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<h2 class="D_title"><a class="url uid" href="http://www.meetup.com/Greater-Charlotte-Area-WordPress-Group/calendar/10374907/?from=list&amp;offset=0">Charlotte May WordPress Meetup Fav Plugin/Setups/Config<img class="brImage" src="http://img1.meetupstatic.com/img/clear.gif" alt="" width="0" />urations (SEO Focus)</a></h2>
<div class="D_less"></div>
<div class="D_preview summary">
<p>Hi Everyone,</p>
<p>We are having are official May Charlotte Meetup Next Week!  This meetup is a free event for all members.   <a href="http://www.meetup.com/Greater-Charlotte-Area-WordPress-Group/calendar/10374907/?from=list&amp;offset=0">read more</a></div>
<p class="eventFee D_less"><strong>Cost:</strong> $5.00</p>
<p class="eventFee D_less"><strong>Meetup Membership:</strong> Required</p>
<p class="eventFee D_less"><strong>Membership:</strong> Free</p>


<p>Related posts:<ol><li><a href='http://softduit.com/wordpress-lab-on-the-lake-5-13-wp-installs-configurations-theme-design/' rel='bookmark' title='Permanent Link: WordPress Lab on the Lake 5-13: WP Installs, Configurations, Theme Design'>WordPress Lab on the Lake 5-13: WP Installs, Configurations, Theme Design</a></li>
<li><a href='http://softduit.com/creation-of-the-charlotte-area-wordpress-enthusiasts-group-on-meetupcom/' rel='bookmark' title='Permanent Link: Creation of the Charlotte Area WordPress Enthusiasts group on MeetUp.com'>Creation of the Charlotte Area WordPress Enthusiasts group on MeetUp.com</a></li>
<li><a href='http://softduit.com/greater-charlotte-area-wordpress-meetup-how-to-design-a-wp-theme/' rel='bookmark' title='Permanent Link: Greater Charlotte Area WordPress Meetup &#8211; How to Design a WP Theme'>Greater Charlotte Area WordPress Meetup &#8211; How to Design a WP Theme</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://softduit.com/charlotte-may-wordpress-meetup-fav-pluginsetupsconfigurations-seo-focus-514/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Lab on the Lake 5-13: WP Installs, Configurations, Theme Design</title>
		<link>http://softduit.com/wordpress-lab-on-the-lake-5-13-wp-installs-configurations-theme-design/</link>
		<comments>http://softduit.com/wordpress-lab-on-the-lake-5-13-wp-installs-configurations-theme-design/#comments</comments>
		<pubDate>Mon, 11 May 2009 01:36:01 +0000</pubDate>
		<dc:creator>Brett Bumeter</dc:creator>
				<category><![CDATA[Labs on the Lake]]></category>
		<category><![CDATA[WordPress Design]]></category>
		<category><![CDATA[WordPress Theme Design Training]]></category>
		<category><![CDATA[WordPress Training]]></category>

		<guid isPermaLink="false">http://softduit.com/?p=291</guid>
		<description><![CDATA[WordPress Lab on the Lake 5-13: WP Installs, Configurations, Theme Design


Starting in May we are starting to offer &#8220;Labs on the Lake&#8221;. These will be hands on interactive labs covering many different topics. You DO need to bring your own laptop. read more
Cost: $5.00
Meetup Membership: Required
Membership: Free


Related posts:Charlotte May WordPress Meetup Fav Plugin/Setups/Configurations (SEO Focus) [...]


Related posts:<ol><li><a href='http://softduit.com/charlotte-may-wordpress-meetup-fav-pluginsetupsconfigurations-seo-focus-514/' rel='bookmark' title='Permanent Link: Charlotte May WordPress Meetup Fav Plugin/Setups/Configurations (SEO Focus) 5/14'>Charlotte May WordPress Meetup Fav Plugin/Setups/Configurations (SEO Focus) 5/14</a></li>
<li><a href='http://softduit.com/labs-on-the-lake-monetizing-blogs-and-traffic-building-by-networking-week-of-518/' rel='bookmark' title='Permanent Link: Labs on the Lake &#124; Monetizing Blogs and Traffic Building by Networking-Week of 5/18'>Labs on the Lake &#124; Monetizing Blogs and Traffic Building by Networking-Week of 5/18</a></li>
<li><a href='http://softduit.com/greater-charlotte-area-wordpress-meetup-how-to-design-a-wp-theme/' rel='bookmark' title='Permanent Link: Greater Charlotte Area WordPress Meetup &#8211; How to Design a WP Theme'>Greater Charlotte Area WordPress Meetup &#8211; How to Design a WP Theme</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="D_title"><a class="url uid" href="http://www.meetup.com/Greater-Charlotte-Area-WordPress-Group/calendar/10372601/?from=list&amp;offset=0">WordPress Lab on the Lake 5-13: WP Installs, Configurations, Theme Design</a></div>
<div class="D_less"></div>
<div class="D_preview summary">
<p>Starting in May we are starting to offer &#8220;Labs on the Lake&#8221;. These will be hands on interactive labs covering many different topics. You DO need to bring your own laptop. <a href="http://www.meetup.com/Greater-Charlotte-Area-WordPress-Group/calendar/10372601/?from=list&amp;offset=0">read more</a></div>
<p class="eventFee D_less"><strong>Cost:</strong> $5.00</p>
<p class="eventFee D_less"><strong>Meetup Membership:</strong> Required</p>
<p class="eventFee D_less"><strong>Membership:</strong> Free</p>


<p>Related posts:<ol><li><a href='http://softduit.com/charlotte-may-wordpress-meetup-fav-pluginsetupsconfigurations-seo-focus-514/' rel='bookmark' title='Permanent Link: Charlotte May WordPress Meetup Fav Plugin/Setups/Configurations (SEO Focus) 5/14'>Charlotte May WordPress Meetup Fav Plugin/Setups/Configurations (SEO Focus) 5/14</a></li>
<li><a href='http://softduit.com/labs-on-the-lake-monetizing-blogs-and-traffic-building-by-networking-week-of-518/' rel='bookmark' title='Permanent Link: Labs on the Lake &#124; Monetizing Blogs and Traffic Building by Networking-Week of 5/18'>Labs on the Lake &#124; Monetizing Blogs and Traffic Building by Networking-Week of 5/18</a></li>
<li><a href='http://softduit.com/greater-charlotte-area-wordpress-meetup-how-to-design-a-wp-theme/' rel='bookmark' title='Permanent Link: Greater Charlotte Area WordPress Meetup &#8211; How to Design a WP Theme'>Greater Charlotte Area WordPress Meetup &#8211; How to Design a WP Theme</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://softduit.com/wordpress-lab-on-the-lake-5-13-wp-installs-configurations-theme-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
