<?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; Events</title>
	<atom:link href="http://softduit.com/category/events/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=6448</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>How to Design a WordPress Theme &#8211; Unconference WordCamp Boston</title>
		<link>http://softduit.com/how-to-design-a-wordpress-theme-unconference-wordcamp-boston/</link>
		<comments>http://softduit.com/how-to-design-a-wordpress-theme-unconference-wordcamp-boston/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 11:53:21 +0000</pubDate>
		<dc:creator>Brett Bumeter</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[WordCamp]]></category>
		<category><![CDATA[wordpress theme design]]></category>
		<category><![CDATA[WordPress Theme Design Software]]></category>

		<guid isPermaLink="false">http://softduit.com/how-to-design-a-wordpress-theme-unconference-wordcamp-boston/</guid>
		<description><![CDATA[After catching up on my sleep after traveling back all night from Boston from one of the largest wordcamps that I have attended to date, I finally got around to editing and uploading some basic video I took.&#160; The first video is a quick presentation i gave during an unconference session, showing people how to [...]


Related posts:<ol><li><a href='http://softduit.com/wordcamp-birmingham-2009-presentation-slides-design-your-first-wordpress-theme-in-minutes/' rel='bookmark' title='Permanent Link: WordCamp Birmingham 2009 Presentation Slides &ndash; Design Your First WordPress Theme in Minutes'>WordCamp Birmingham 2009 Presentation Slides &ndash; Design Your First WordPress Theme in Minutes</a></li>
<li><a href='http://softduit.com/barcamp-chattanooga-brett-bumeter-design-a-wordpress-theme-in-10-minutes/' rel='bookmark' title='Permanent Link: Barcamp Chattanooga &#8211; Brett Bumeter Design a WordPress Theme in 10 Minutes'>Barcamp Chattanooga &#8211; Brett Bumeter Design a WordPress Theme in 10 Minutes</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[<p>After catching up on my sleep after traveling back all night from Boston from one of the largest wordcamps that I have attended to date, I finally got around to editing and uploading some basic video I took.&#160; The first video is a quick presentation i gave during an unconference session, showing people how to design their first wordpress theme using the software that makes it easy, <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>. </p>
<h3>Videos of the WP theme design presentation in 3 parts</h3>
<p>
<div style="padding-bottom: 0px; margin: 0px auto; padding-left: 0px; width: 425px; padding-right: 0px; display: block; float: none; padding-top: 0px" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:e38d452d-d0cf-4127-b68d-4bef4a7a151d" class="wlWriterEditableSmartContent">
<div><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/pU3KaKMYtk4&amp;hl=en&amp;fs=1&amp;hl=en"></param><embed src="http://www.youtube.com/v/pU3KaKMYtk4&amp;hl=en&amp;fs=1&amp;hl=en" type="application/x-shockwave-flash" width="425" height="355"></embed></object></div>
<div style="clear:both;font-size:.8em;">Part 1 &#8211; How to design wordpress theme tutorial with Artisteer</div>
</div>
<p>
<div style="padding-bottom: 0px; margin: 0px auto; padding-left: 0px; width: 425px; padding-right: 0px; display: block; float: none; padding-top: 0px" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:e59141f5-8f10-4f2e-884d-75cfbf480718" class="wlWriterEditableSmartContent">
<div><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/sUSbKvlUFO0&amp;hl=en&amp;fs=1&amp;hl=en"></param><embed src="http://www.youtube.com/v/sUSbKvlUFO0&amp;hl=en&amp;fs=1&amp;hl=en" type="application/x-shockwave-flash" width="425" height="355"></embed></object></div>
<div style="clear:both;font-size:.8em;">Part 2 &#8211; How to design wordpress theme tutorial with Artisteer</div>
</div>
<p><font size="1"><strong>Update</strong> – Part 3 is now fixed and working</font></p>
<div style="padding-bottom: 0px; margin: 0px auto; padding-left: 0px; width: 425px; padding-right: 0px; display: block; float: none; padding-top: 0px" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:ca75ae2b-88bc-4503-84c5-c7931f737bbd" class="wlWriterEditableSmartContent">
<div><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/g8xGbDQCvDs&amp;hl=en&amp;fs=1&amp;hl=en"></param><embed src="http://www.youtube.com/v/g8xGbDQCvDs&amp;hl=en&amp;fs=1&amp;hl=en" type="application/x-shockwave-flash" width="425" height="355"></embed></object></div>
<div style="clear:both;font-size:.8em;">Part 3 &#8211; How to design wordpress theme tutorial with Artisteer</div>
</div>
<p>Getting setup and going with the presentation was a little haphazard so the presentation wasn’t as polished as similar versions I delivered in Birmingham, Las Vegas and Savannah, but the audience had a lot of good questions, and I didn’t mind the change up.&#160; It actually helped me quite a bit get a better feeling for those areas of the presentation that are probably more important for people learning to design WP themes for the first time.</p>


<p>Related posts:<ol><li><a href='http://softduit.com/wordcamp-birmingham-2009-presentation-slides-design-your-first-wordpress-theme-in-minutes/' rel='bookmark' title='Permanent Link: WordCamp Birmingham 2009 Presentation Slides &ndash; Design Your First WordPress Theme in Minutes'>WordCamp Birmingham 2009 Presentation Slides &ndash; Design Your First WordPress Theme in Minutes</a></li>
<li><a href='http://softduit.com/barcamp-chattanooga-brett-bumeter-design-a-wordpress-theme-in-10-minutes/' rel='bookmark' title='Permanent Link: Barcamp Chattanooga &#8211; Brett Bumeter Design a WordPress Theme in 10 Minutes'>Barcamp Chattanooga &#8211; Brett Bumeter Design a WordPress Theme in 10 Minutes</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/how-to-design-a-wordpress-theme-unconference-wordcamp-boston/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>WordCamp Boston 2010</title>
		<link>http://softduit.com/wordcamp-boston-2010/</link>
		<comments>http://softduit.com/wordcamp-boston-2010/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 16:42:02 +0000</pubDate>
		<dc:creator>Brett Bumeter</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[WordCamp]]></category>
		<category><![CDATA[WordPress CMS]]></category>
		<category><![CDATA[wordpress theme design]]></category>

		<guid isPermaLink="false">http://softduit.com/wordcamp-boston-2010/</guid>
		<description><![CDATA[
I’m heading to the WordCamp Boston this weekend.&#160; I will be working a shift in the WordPress Genius Bar helping people learn how to design WordPress themes for the first time.&#160; I’m also looking forward to comparing notes with the presenters at Boston WordCamp covering advanced wordpress theme design.&#160; I’m always looking to benchmark best [...]


Related posts:<ol><li><a href='http://softduit.com/how-to-design-a-wordpress-theme-unconference-wordcamp-boston/' rel='bookmark' title='Permanent Link: How to Design a WordPress Theme &ndash; Unconference WordCamp Boston'>How to Design a WordPress Theme &ndash; Unconference WordCamp Boston</a></li>
<li><a href='http://softduit.com/two-cool-plugins-from-wordcamp-boston-and-many-honorable-mentions/' rel='bookmark' title='Permanent Link: Two Cool Plugins from WordCamp Boston and Many Honorable Mentions'>Two Cool Plugins from WordCamp Boston and Many Honorable Mentions</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><a title="WordCamp Boston 2010" href="http://wordcampboston.com/?utm_source=Attending&amp;utm_medium=Badges&amp;utm_campaign=attending%2Bbadge"><img style="border-bottom-style: none; border-right-style: none; margin: 0px 10px 0px 0px; display: inline; border-top-style: none; border-left-style: none" title="WordCamp Boston 2010" alt="WordCamp Boston 2010" align="left" src="http://wordcampboston.com/wp-content/uploads/2009/11/wcbosattending.jpg" /></a>
<p>I’m heading to the <a href="http://wordcampboston.com/" target="_blank">WordCamp Boston</a> this weekend.&#160; I will be working a shift in the <a href="http://wordcampboston.com/program/genius-bar/" target="_blank"><strong>WordPress Genius Bar</strong></a> helping people learn how to design WordPress themes for the first time.&#160; I’m also looking forward to comparing notes with the presenters at Boston WordCamp covering advanced wordpress theme design.&#160; I’m always looking to benchmark best practices to improve functionality, decrease load time and speed up the design process which makes wordpress as a cms theme design more affordable for my clients.</p>
<p>I am also going to see first hand <a href="http://www.facebook.com/notes/wordcamp-boston-2010/behind-the-scenes-communications/274146714318" target="_blank">how the Boston WordCamp was organized</a>.&#160; From an online perspective, this show looks tight.&#160; The wordpress community in WordPress is very strong and I’m looking forward to some high level discussions.&#160; <img src='http://softduit.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Its also been about 10 years since I visited Boston.&#160; I haven’t been back since my brother in law graduated from MIT.&#160; I lived just outside of Boston in the early 90’s and I do miss seeing one of my favorite cities in the US.</p>
<p>For those of you catching up with me at WordCamp Boston, I design wordpress themes using a combination of the following 3 software programs listed in order of importance based on total usage in the design process:</p>
<ul>
<li><font color="#445864"><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></font></li>
<li><font color="#445864"><a href="http://www.adobe.com/products/dreamweaver/" target="_blank">Dreamweaver (Adobe Product)</a></font></li>
<li><font color="#445864"><a href="http://www.adobe.com/products/fireworks/" target="_blank">Fireworks (Adobe product)</a></font></li>
<li><font color="#445864"><a href="http://www.themedreamer.com" target="_blank">ThemeDreamer (Dreamweaver addon)</a></font></li>
<li><font color="#445864"><a href="http://getfirebug.com/" target="_blank">Firebug (Firefox addon)</a></font></li>
<li><font color="#445864"><a href="http://google.com/adwords" target="_blank">Google Adwords (keyword analysis)</a></font></li>
</ul>
<p><font size="1">* Note I bought Fireworks and Dreamweaver together a few years ago in a bundle called Studio 8, </font><a href="http://www.adobe.com/products/creativesuite/web/" target="_blank"><font size="1">Adobe Creative Suite Web Premium CS4 is about the equivalent these days</font></a><font size="1">.&#160; Its expensive but effective.&#160; If you are a student, but it now while it is still cheap!</font></p>
<p>In general, I only recommend working on 2 hosting services, <a href="http://inmotionhosting.com" target="_blank">Inmotion Hosting</a> and <a href="http://hostgator.com" target="_blank">HostGator</a> due to their great support and WordPress friendly atmosphere.&#160; They make installation a breeze.&#160; I do NOT recommend <a href="http://godaddy.com" target="_blank">Godaddy</a>, <a href="http://1and1.com" target="_blank">1&amp;1</a>, nor <a href="http://ipower.com" target="_blank">IPower</a>, which have made my life difficult.</p>


<p>Related posts:<ol><li><a href='http://softduit.com/how-to-design-a-wordpress-theme-unconference-wordcamp-boston/' rel='bookmark' title='Permanent Link: How to Design a WordPress Theme &ndash; Unconference WordCamp Boston'>How to Design a WordPress Theme &ndash; Unconference WordCamp Boston</a></li>
<li><a href='http://softduit.com/two-cool-plugins-from-wordcamp-boston-and-many-honorable-mentions/' rel='bookmark' title='Permanent Link: Two Cool Plugins from WordCamp Boston and Many Honorable Mentions'>Two Cool Plugins from WordCamp Boston and Many Honorable Mentions</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/wordcamp-boston-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Trifecta of BlogWorld, New Media Expo &amp; Las Vegas WordCamp 2009</title>
		<link>http://softduit.com/the-trifecta-of-blogworld-new-media-expo-las-vegas-wordcamp-2009/</link>
		<comments>http://softduit.com/the-trifecta-of-blogworld-new-media-expo-las-vegas-wordcamp-2009/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 20:37:12 +0000</pubDate>
		<dc:creator>Brett Bumeter</dc:creator>
				<category><![CDATA[Events]]></category>

		<guid isPermaLink="false">http://softduit.com/events/the-trifecta-of-blogworld-new-media-expo-las-vegas-wordcamp-2009/</guid>
		<description><![CDATA[Last weekend I ventured back to BlogWorld &#38; the New Media Expo and Las Vegas WordCamp.&#160; The great thing is that all three conferences were consolidated in the Las Vegas Convention Center.&#160; I closed out WordCamp with a Session on How to Design a WordPress Theme in Minutes.&#160; The video from the event is not [...]


Related posts:<ol><li><a href='http://softduit.com/going-to-las-vegas-wordcamp-too/' rel='bookmark' title='Permanent Link: Softduit Media Covering WordCamp:Las Vegas 2009'>Softduit Media Covering WordCamp:Las Vegas 2009</a></li>
<li><a href='http://softduit.com/brett-bumeter-speaking-at-wordcamp-rdu-2009/' rel='bookmark' title='Permanent Link: Brett Bumeter Speaking at WordCamp RDU 2009'>Brett Bumeter Speaking at WordCamp RDU 2009</a></li>
<li><a href='http://softduit.com/softduit-media-at-new-media-expo-2008/' rel='bookmark' title='Permanent Link: Softduit Media at New Media Expo 2008'>Softduit Media at New Media Expo 2008</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Last weekend I ventured back to BlogWorld &amp; the New Media Expo and Las Vegas WordCamp.&#160; The great thing is that all three conferences were consolidated in the Las Vegas Convention Center.&#160; I closed out WordCamp with a Session on How to Design a WordPress Theme in Minutes.&#160; The video from the event is not yet available, but the slides are below:</p>
<div style="text-align: left; width: 425px" id="__ss_2270042"><a style="margin: 12px 0px 3px; display: block; font: 14px helvetica,arial,sans-serif; text-decoration: underline" title="Design Your 1st WordPress Theme IN MINUTES!" href="http://www.slideshare.net/brettbum/design-your-1st-wordpress-theme-in-minutes">Design Your 1st WordPress Theme IN MINUTES!</a><object style="margin:0px" width="425" height="355"><param name="movie" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=designyourfirstwordpressthemeinminutes-blogworld-las-vegas-wordcamp-2009-brettbumetersoftduitmedia-091018205940-phpapp02&amp;stripped_title=design-your-1st-wordpress-theme-in-minutes" /><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><embed src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=designyourfirstwordpressthemeinminutes-blogworld-las-vegas-wordcamp-2009-brettbumetersoftduitmedia-091018205940-phpapp02&amp;stripped_title=design-your-1st-wordpress-theme-in-minutes" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object>
<div style="font-family: tahoma,arial; height: 26px; font-size: 11px; padding-top: 2px">View more <a style="text-decoration: underline" href="http://www.slideshare.net/">presentations</a> from <a style="text-decoration: underline" href="http://www.slideshare.net/brettbum">Brett Bumeter</a>.</div>
</p></div>
<p>This was an expanded version of the ‘Intro’ level presentation that I provided a few weeks ago at WordCamp Birmingham.&#160; </p>
<p>The big difference is that I demonstrated how to use multiple themes in a single WordPress configuration.&#160; Multiple themes that anyone could design and later iterate modifications themselves.&#160; I also highlighted a few of the techniques that I utilized to build our strategic partner’s site at <a href="http://grassshackroad.com" target="_blank">Grass Shack Events &amp; Media</a>.</p>
<p>Here is the basic code that I utilized to create and call a default header as well as alternate headers based on an if then else selection:</p>
<blockquote><p>&lt;?php     <br />//      <br />// example of using header file based on pages      <br />// note that you can either use page ID, Page Name or Page Slug      <br />//       <br />// this one uses page title </p>
<p>if (is_page()){     <br />&#160;&#160;&#160; include(TEMPLATEPATH.&#8217;/header-business.php&#8217;);      <br />}      <br />else {      <br />&#160;&#160;&#160; include(TEMPLATEPATH.&#8217;/header-default.php&#8217;);      <br />}      <br />?&gt;</p>
<p>&#160;</p>
</blockquote>
<p>This month I will also create additional step by step video tutorials to share with people that were unable to attend this session.&#160; Alternately, if you would like me to speak at a conference or event in your area, please contact me to discuss availability.</p>


<p>Related posts:<ol><li><a href='http://softduit.com/going-to-las-vegas-wordcamp-too/' rel='bookmark' title='Permanent Link: Softduit Media Covering WordCamp:Las Vegas 2009'>Softduit Media Covering WordCamp:Las Vegas 2009</a></li>
<li><a href='http://softduit.com/brett-bumeter-speaking-at-wordcamp-rdu-2009/' rel='bookmark' title='Permanent Link: Brett Bumeter Speaking at WordCamp RDU 2009'>Brett Bumeter Speaking at WordCamp RDU 2009</a></li>
<li><a href='http://softduit.com/softduit-media-at-new-media-expo-2008/' rel='bookmark' title='Permanent Link: Softduit Media at New Media Expo 2008'>Softduit Media at New Media Expo 2008</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://softduit.com/the-trifecta-of-blogworld-new-media-expo-las-vegas-wordcamp-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>From One Great Conference to Another: Speaking at IzeaFest &amp; BlogWorld</title>
		<link>http://softduit.com/from-one-great-conference-to-another-speaking-at-izeafest-blogworld/</link>
		<comments>http://softduit.com/from-one-great-conference-to-another-speaking-at-izeafest-blogworld/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 15:46:13 +0000</pubDate>
		<dc:creator>Brett Bumeter</dc:creator>
				<category><![CDATA[Events]]></category>

		<guid isPermaLink="false">http://softduit.com/events/from-one-great-conference-to-another-speaking-at-izeafest-blogworld/</guid>
		<description><![CDATA[This month is turning into a whirl wind when it comes to great social media and blogging conferences.&#160; Following up on WordCamp Birmingham at the end of September where Brett Bumeter mentored local bloggers, helping them learn during a 50 minute demonstration How to design a WordPress theme in minutes using Artisteer, Brett then traveled [...]


Related posts:<ol><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>
<li><a href='http://softduit.com/brett-bumeter-speaking-at-wordcamp-rdu-2009/' rel='bookmark' title='Permanent Link: Brett Bumeter Speaking at WordCamp RDU 2009'>Brett Bumeter Speaking at WordCamp RDU 2009</a></li>
<li><a href='http://softduit.com/the-trifecta-of-blogworld-new-media-expo-las-vegas-wordcamp-2009/' rel='bookmark' title='Permanent Link: The Trifecta of BlogWorld, New Media Expo &amp; Las Vegas WordCamp 2009'>The Trifecta of BlogWorld, New Media Expo &amp; Las Vegas WordCamp 2009</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>This month is turning into a whirl wind when it comes to great social media and blogging conferences.&#160; Following up on WordCamp Birmingham at the end of September where Brett Bumeter mentored local bloggers, helping them learn during a 50 minute demonstration <strong>How to design a WordPress theme in minutes</strong> using <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>, Brett then traveled down the road to Orlando for IzeaFest.</p>
<p><a title="Photo by Kelly Walker @PegLegPug on Twitter" href="http://www.flickr.com/photos/kwalk628/3988855628/" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="" border="0" alt="" src="http://softduit.com/wp-content/uploads/2009/11/WhatAdvertisersWantPanelIzeaFestBrettBumeterGeorgeSmithjrJosephJaffeZenaWeistJohnAndrews2009phot.jpg" width="642" height="294" /></a> </p>
<p align="center"><a href="http://www.flickr.com/photos/kwalk628/3988855628/" target="_blank"><font size="1"><em>Photo</em></font></a><font size="1"><em> by Kelly Walker of </em></font><a href="http://www.peglegpug.com/blog/" target="_blank"><font size="1"><em>PegLegPug.com</em></font></a></p>
<p>Brett moderated a panel with awesome panelists including (<font size="1">in order of picture above</font>) George Smith Jr, the social voice of Crocs, Joseph Jaffe of JaffeJuice, Dena Weiste who has worked with major brands through online media for almost 2 decades and John Andrews, who has managed social media programs for Wal-Mart and others.</p>
<h2>What would a panel of rock stars like this cover at IzeaFest?</h2>
<h3>What Advertisers Want!&#160; </h3>
<p>They talked in depth for an hour on where the rubber hits the road in social media advertising and what major brands and bloggers need to do to come together effectively, transparently and profitably without reducing the value and quality of content.</p>
<blockquote><p><strong>For more insights into the event, check out Brett’s personal blog article </strong><a href="http://something-about-harry.com/back-from-izeafest-still-absorbing-insights/"><strong>Back from IzeaFest-Still Absorbing the Insights</strong></a></p>
</blockquote>
<h2>BlogWorld 2009</h2>
<p><a href="http://www.shareasale.com/r.cfm?b=188920&amp;u=185510&amp;m=13821&amp;urllink=&amp;afftrack=" target="_blank"><img style="margin: 0px 0px 0px 15px; display: inline" border="0" alt="Join me and other top bloggers and new media experts at BlogWorld Expo 2009 " align="right" src="http://www.shareasale.com/image/SpeakingAt09250x250.gif" /></a>In just a little over a week, Brett will be traveling to Las Vegas for the third annual BlogWorld Expo.&#160; This year BlogWorld has consolidated with the New Media Expo (which would be in its 4th year).&#160; Softduit Media through Brett has been present at every BlogWorld since their inception and all but the very first New Media/Podcast Expo.&#160; </p>
<p>Last year, Brett worked the booths on the exhibit floor demonstrating the use of Dragon Naturally Speaking 10 for bloggers from the Blogger and Podcaster Booth.</p>
<p>This year, Brett will be speaking at BlogWorld during the Las Vegas WordCamp event in the exhibit hall area on Saturday.&#160; He will be closing the show covering the topic of How to Design a WordPress Theme in Minutes, once again demonstrating to the audience how to create WP themes effectively and efficiently regardless of whether or not the audience has any design or programming experience.</p>
<p>Here’s the line up for Las Vegas WordCamp and don’t forget to check out the 10 in depth tracks at BlogWorld either.</p>
<p>This is going to be a great BlogWorld with a lot of serious knowledge exchange, and even better networking.&#160; The attendance numbers for this show look like they are going to be through the roof compared to past years.</p>
<p><a href="http://softduit.com/wp-content/uploads/2009/11/image6.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/11/image_thumb.png" width="429" height="482" /></a></p>


<p>Related posts:<ol><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>
<li><a href='http://softduit.com/brett-bumeter-speaking-at-wordcamp-rdu-2009/' rel='bookmark' title='Permanent Link: Brett Bumeter Speaking at WordCamp RDU 2009'>Brett Bumeter Speaking at WordCamp RDU 2009</a></li>
<li><a href='http://softduit.com/the-trifecta-of-blogworld-new-media-expo-las-vegas-wordcamp-2009/' rel='bookmark' title='Permanent Link: The Trifecta of BlogWorld, New Media Expo &amp; Las Vegas WordCamp 2009'>The Trifecta of BlogWorld, New Media Expo &amp; Las Vegas WordCamp 2009</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://softduit.com/from-one-great-conference-to-another-speaking-at-izeafest-blogworld/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enter the WordPress &#8216;License to Design&#8217; Theme Contest 2.0</title>
		<link>http://softduit.com/enter-the-wordpress-license-to-design-theme-contest-2-0/</link>
		<comments>http://softduit.com/enter-the-wordpress-license-to-design-theme-contest-2-0/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 08:11:05 +0000</pubDate>
		<dc:creator>Brett Bumeter</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[Contest]]></category>

		<guid isPermaLink="false">http://softduit.com/events/enter-the-wordpress-license-to-design-theme-contest-2-0/</guid>
		<description><![CDATA[Between now and the end of BlogWorld in mid October, we are going to run a WordPress Theme design contest for new designers or people that want to learn how to design a WordPress theme for the first time.
Both Mac and PC users are eligible to participate.&#160; No purchase is necessary to participate.&#160; All you [...]


Related posts:<ol><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/wordcamp-birmingham-2009-presentation-slides-design-your-first-wordpress-theme-in-minutes/' rel='bookmark' title='Permanent Link: WordCamp Birmingham 2009 Presentation Slides &ndash; Design Your First WordPress Theme in Minutes'>WordCamp Birmingham 2009 Presentation Slides &ndash; Design Your First WordPress Theme in Minutes</a></li>
<li><a href='http://softduit.com/how-to-design-a-wordpress-theme-unconference-wordcamp-boston/' rel='bookmark' title='Permanent Link: How to Design a WordPress Theme &ndash; Unconference WordCamp Boston'>How to Design a WordPress Theme &ndash; Unconference WordCamp Boston</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://softduit.com"><img style="border-bottom: 0px; border-left: 0px; margin: 0px 0px 0px 20px; display: inline; border-top: 0px; border-right: 0px" title="License-to-design" border="0" alt="License-to-design" align="right" src="http://softduit.com/wp-content/uploads/2009/11/Licensetodesign.jpg" width="304" height="245" /></a>Between now and the end of BlogWorld in mid October, we are going to run a WordPress Theme design contest for new designers or people that want to learn how to design a WordPress theme for the first time.</p>
<p><em>Both Mac and PC users are eligible to participate.&#160; No purchase is necessary to participate.&#160; All you have to do is download the free trial </em><a title="Get the Free Artisteer Trial or buy for as little as $49!" href="http://bit.ly/LicensetoDesignContest" target="_blank">Artisteer</a><em></em><em> theme design software, install it on your machine and give it a spin.&#160; Send us your finished theme file and you will be entered.&#160; There are multiple ways to enter and multiple ways to win!</em></p>
<p>&#160;</p>
<h4><strong>Steps</strong></h4>
<p><strong>1. Go to Artisteer &amp; follow the instructions to download the free trial via Cnet (Mac users navigate to the News tab, scroll down and download the Mac OSx version of Artisteer)</strong></p>
<p><strong><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="image" border="0" alt="image" src="http://softduit.com/wp-content/uploads/2009/11/image9.png" width="182" height="59" /></strong></p>
<p><a href="http://click.linksynergy.com/fs-bin/click?id=YvXPSOxXAIo&amp;amp;offerid=173903.10000006&amp;amp;type=3&amp;amp;subid=0"></a><a href="http://bit.ly/LicensetoDesignContest"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="layered-artisteer-button" border="0" alt="layered-artisteer-button" src="http://softduit.com/wp-content/uploads/2009/11/layeredartisteerbutton.png" width="244" height="204" /></a>&#160; </p>
<p><strong>2.&#160; Install the free trial software (works on PCs or Macs) &amp; generate your theme.</strong></p>
<p><strong>3.&#160; Name Your Theme with a Creative Name and </strong></p>
<p><strong>4.&#160; Save your working Artisteer file as a .artx file</strong></p>
<p><strong>5.&#160; Email me your .artx file attached (typically less than .5 mb) to </strong><a href="mailto:brettbum@gmail.com"><strong>brettbum@gmail.com</strong></a></p>
<blockquote><p>Please make sure you receive a response from me confirming that I successfully received your theme, if you want to use a service like <a href="https://www.yousendit.com/signup.php?action=promo_display">YouSendIt.com</a> that’s cool too!</p>
</blockquote>
<p><strong>Email Requirements:</strong></p>
<ol>
<li>Your email should include the title <strong>WordPress Theme Contest Entry</strong> in the Subject, </li>
<li>Entries should include your:
<ol>
<li>&#160;<strong>email address</strong>, </li>
<li><strong>twitter ID</strong>, </li>
<li><strong>first name</strong> and <strong>initial of your last name.</strong> </li>
<li><strong>Creative Theme Name</strong> </li>
</ol>
</li>
<li>If you have a blog or website, please include a <strong>link to your URL</strong>.&#160; </li>
<li>I will be posting examples of the themes submitted in the contest in a live preview section of Softduit.&#160; This entry will include your first name and last initial. along with a link to your website &amp; your twitter id </li>
</ol>
<h1><strong>Prizes</strong></h1>
<p>We’re giving away <font color="#ff8000" size="5">2 Free Standard Edition Licenses</font> (value $129 ea in cost, value in terms of what you can earn with it MUCH Higher!)</p>
<blockquote><h3><font color="#ff8000" size="5"><strong><em>The licenses have been provide courtesy of </em></strong></font><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"><font color="#ff8000" size="5"><strong><em>Artisteer</em></strong></font></a><font color="#ff8000" size="5"><strong><em>!</em></strong></font></h3>
</blockquote>
<p><strong>First, 1 License will be awarded to the participant with the best looking theme</strong></p>
<p>The best looking theme design winners entries will then be removed from the pool and, </p>
<p><strong>then 1 License will be awarded randomly to all remaining participants.</strong></p>
<h1><strong>Drawing Date</strong></h1>
<h2>October 21, 2009 – 4 days after BlogWorld</h2>
<p>&#160;</p>
<h5><strong>Contest Judging &amp; Multiple ways to enter Contest</strong></h5>
<ul>
<li>I will judge the best looking themes (ignoring the watermark) &amp; possibly getting some panel help from upcoming tradeshows.&#160; </li>
<li>Everyone that submits a theme will get 30 entries per theme for a max of 5 themes or 150 entries. </li>
<li>After Submitting Your File, You may gain 1 additional entry per day
<ul>
<li>please follow me <a href="http://twitter.com/brettbum">@brettbum</a> and </li>
<li>Retweet the following without the quotes <img alt=":)" src="http://softduit.com/wp-includes/images/smilies/icon_smile.gif" /> “ Pls RT @brettbum is sponsoring a WordPress theme design contest at <a href="http://softduit.com">http://softduit.com</a> “ </li>
</ul>
</li>
<li>You may shorten the URL if you like </li>
<li>Before the contest ends, I may add additional ways for people to enter so check back to see how things are progressing, and I withhold the right to change the contest rules as necessary, but do not anticipate substantial changes! </li>
</ul>
<h2>Addition Ways to Enter at WordCamp Birmingham, IzeaFest, &amp; BlogWorld</h2>
<p>I will be attending WordCamp Birmingham, IzeaFest and Blogworld in the next 30 days.&#160; If you see me at one of these shows, ask me how you can enter this contest on the spot, by designing a theme right then and there for an extra 10 entries!</p>
<blockquote><p><font size="2">Note, we started this contest once before in early August.&#160; Technical difficulties(twitter) delayed that contest and entrants from the earlier contest will have their entries rolled into this contest according to the rules of this contest.</font></p>
</blockquote>
<p><strong>Questions?</strong></p>
<p>If you have any questions, please leave me a comment below.&#160; </p>
<p>If you need any help finding the free trials, I can help point you in the right direction.</p>
<p>Themes will be judged on their design, not on advanced wordpress configuration capabilities from plugins.&#160; Stay posted, we will be looking at intermediate and advanced contests in the future!</p>


<p>Related posts:<ol><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/wordcamp-birmingham-2009-presentation-slides-design-your-first-wordpress-theme-in-minutes/' rel='bookmark' title='Permanent Link: WordCamp Birmingham 2009 Presentation Slides &ndash; Design Your First WordPress Theme in Minutes'>WordCamp Birmingham 2009 Presentation Slides &ndash; Design Your First WordPress Theme in Minutes</a></li>
<li><a href='http://softduit.com/how-to-design-a-wordpress-theme-unconference-wordcamp-boston/' rel='bookmark' title='Permanent Link: How to Design a WordPress Theme &ndash; Unconference WordCamp Boston'>How to Design a WordPress Theme &ndash; Unconference WordCamp Boston</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://softduit.com/enter-the-wordpress-license-to-design-theme-contest-2-0/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>WordCamp Birmingham 2009 Presentation Slides &#8211; Design Your First WordPress Theme in Minutes</title>
		<link>http://softduit.com/wordcamp-birmingham-2009-presentation-slides-design-your-first-wordpress-theme-in-minutes/</link>
		<comments>http://softduit.com/wordcamp-birmingham-2009-presentation-slides-design-your-first-wordpress-theme-in-minutes/#comments</comments>
		<pubDate>Sat, 26 Sep 2009 14:00:00 +0000</pubDate>
		<dc:creator>Brett Bumeter</dc:creator>
				<category><![CDATA[Events]]></category>

		<guid isPermaLink="false">http://softduit.com/events/wordcamp-birmingham-2009-presentation-slides-design-your-first-wordpress-theme-in-minutes/</guid>
		<description><![CDATA[I’ll make more more materials available later today, but here is my initial slide presentation for WordCamp Birmingham.&#160; This is just the opening remarks for the actual mentored demonstration.&#160; Hoping to add video of the meat and potatoes of this presentation after its done. 
The main goal of this presentation is to help everyone give [...]


Related posts:<ol><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/enter-the-wordpress-license-to-design-theme-contest-2-0/' rel='bookmark' title='Permanent Link: Enter the WordPress &lsquo;License to Design&rsquo; Theme Contest 2.0'>Enter the WordPress &lsquo;License to Design&rsquo; Theme Contest 2.0</a></li>
<li><a href='http://softduit.com/barcamp-chattanooga-brett-bumeter-design-a-wordpress-theme-in-10-minutes/' rel='bookmark' title='Permanent Link: Barcamp Chattanooga &#8211; Brett Bumeter Design a WordPress Theme in 10 Minutes'>Barcamp Chattanooga &#8211; Brett Bumeter Design a WordPress Theme in 10 Minutes</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I’ll make more more materials available later today, but here is my initial slide presentation for WordCamp Birmingham.&#160; This is just the opening remarks for the actual mentored demonstration.&#160; Hoping to add video of the meat and potatoes of this presentation after its done. </p>
<p>The main goal of this presentation is to help everyone give this a try, and if possible design their own theme, while I guide the audience through the process.</p>
<p>&#160;</p>
<p><a href="http://bit.ly/LicensetoDesignContest"><img style="border-bottom: 0px; border-left: 0px; display: inline; margin-left: 0px; border-top: 0px; margin-right: 0px; border-right: 0px" title="layered-artisteer-button" border="0" alt="layered-artisteer-button" align="right" src="http://softduit.com/wp-content/uploads/2009/11/layeredartisteerbutton1.png" width="244" height="204" /></a> If you want to follow along during the presentation, I recommend downloading the free trial software from <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> or Cnet</p>
<blockquote><p><strong>1. Go to Artisteer &amp; follow the instructions to download the free trial via Cnet (Mac users navigate to the News tab, scroll down and download the Mac OSx version of Artisteer)</strong></p>
<p>*If you are using a <strong>Mac with Snow Leopard 10.6</strong>, there is a early beta (<a href="http://www.artisteer.com/support/ArtisteerUpdateMacOSX10.6.dmg" target="_blank">download trial beta</a>) that is workable for most users so far, that early release by Apple has the team at Artisteer working over time like so many other companies I suspect.</p>
<p><strong>2.&#160; Install the free trial software (works on PCs or Macs) &amp; generate your theme.</strong></p>
</blockquote>
<p> <img src='http://softduit.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div style="text-align: left; width: 425px" id="__ss_2070223"><a style="margin: 12px 0px 3px; display: block; font: 14px helvetica,arial,sans-serif; text-decoration: underline" title="Design Your First Word Press Theme In Minutes Word Camp Birmingham Brett Bumeter Softduit Media" href="http://www.slideshare.net/brettbum/design-your-first-word-press-theme-in-minutes-word-camp-birmingham-brett-bumeter-softduit-media">Design Your First Word Press Theme In Minutes Word Camp Birmingham Brett Bumeter Softduit Media</a><object style="margin:0px" width="425" height="355"><param name="movie" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=designyourfirstwordpressthemeinminutes-wordcamp-birmingham-brettbumetersoftduitmedia-090926023258-phpapp02&amp;stripped_title=design-your-first-word-press-theme-in-minutes-word-camp-birmingham-brett-bumeter-softduit-media" /><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><embed src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=designyourfirstwordpressthemeinminutes-wordcamp-birmingham-brettbumetersoftduitmedia-090926023258-phpapp02&amp;stripped_title=design-your-first-word-press-theme-in-minutes-word-camp-birmingham-brett-bumeter-softduit-media" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object>
<div style="font-family: tahoma,arial; height: 26px; font-size: 11px; padding-top: 2px">View more <a style="text-decoration: underline" href="http://www.slideshare.net/">presentations</a> from <a style="text-decoration: underline" href="http://www.slideshare.net/brettbum">Brett Bumeter</a>.</div>
</p></div>
<p>For more information on the Theme Design Contest . . . see -&gt;</p>
<p><a href="http://softduit.com/events/enter-the-wordpress-license-to-design-theme-contest-2-0/">Enter the WordPress ‘License to Design’ Theme Contest 2.0</a></p>


<p>Related posts:<ol><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/enter-the-wordpress-license-to-design-theme-contest-2-0/' rel='bookmark' title='Permanent Link: Enter the WordPress &lsquo;License to Design&rsquo; Theme Contest 2.0'>Enter the WordPress &lsquo;License to Design&rsquo; Theme Contest 2.0</a></li>
<li><a href='http://softduit.com/barcamp-chattanooga-brett-bumeter-design-a-wordpress-theme-in-10-minutes/' rel='bookmark' title='Permanent Link: Barcamp Chattanooga &#8211; Brett Bumeter Design a WordPress Theme in 10 Minutes'>Barcamp Chattanooga &#8211; Brett Bumeter Design a WordPress Theme in 10 Minutes</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://softduit.com/wordcamp-birmingham-2009-presentation-slides-design-your-first-wordpress-theme-in-minutes/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>Barcamp Chattanooga &#8211; Brett Bumeter Design a WordPress Theme in 10 Minutes</title>
		<link>http://softduit.com/barcamp-chattanooga-brett-bumeter-design-a-wordpress-theme-in-10-minutes/</link>
		<comments>http://softduit.com/barcamp-chattanooga-brett-bumeter-design-a-wordpress-theme-in-10-minutes/#comments</comments>
		<pubDate>Mon, 27 Jul 2009 12:15:00 +0000</pubDate>
		<dc:creator>Brett Bumeter</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[barcamp]]></category>
		<category><![CDATA[social media conferences]]></category>
		<category><![CDATA[WordCamp]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Theme Design Software]]></category>

		<guid isPermaLink="false">http://softduit.com/events/barcamp-chattanooga-brett-bumeter-design-a-wordpress-theme-in-10-minutes/</guid>
		<description><![CDATA[Brett Bumeter of Softduit Media joined a large group of attendees and presenters at Barcamp Chattanooga at Chattanooga State Community College.&#160; Brett kicked off one of the first sessions by demonstrating how to create a WordPress theme in 10 minutes with no web design or PHP experience.
This was a live demo of Artisteer for both [...]


Related posts:<ol><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>
<li><a href='http://softduit.com/brett-bumeter-speaking-at-wordcamp-rdu-2009/' rel='bookmark' title='Permanent Link: Brett Bumeter Speaking at WordCamp RDU 2009'>Brett Bumeter Speaking at WordCamp RDU 2009</a></li>
<li><a href='http://softduit.com/wordcamp-birmingham-2009-presentation-slides-design-your-first-wordpress-theme-in-minutes/' rel='bookmark' title='Permanent Link: WordCamp Birmingham 2009 Presentation Slides &ndash; Design Your First WordPress Theme in Minutes'>WordCamp Birmingham 2009 Presentation Slides &ndash; Design Your First WordPress Theme in Minutes</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Brett Bumeter of Softduit Media joined a large group of attendee<img title="104_2150" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; margin: 10px 0px 10px 10px; border-right-width: 0px" height="244" alt="104_2150" src="http://softduit.com/wp-content/uploads/2009/07/104_2150.jpg" width="210" align="right" border="0" />s and presenters at Barcamp Chattanooga at <a href="http://chattanoogastate.edu/" target="_blank">Chattanooga State Community College</a>.&#160; Brett kicked off one of the first sessions by demonstrating how to create a WordPress theme in 10 minutes with no web design or PHP experience.</p>
<p>This was a live demo 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> for both PCs &amp; Macs and neither video nor slides were available from the actual event, but people can view are in depth video from a WordPress meetup in Charlotte covering <a href="http://softduit.com/products-reviews-and-tutorials/wordpress-theme-software/generate-wp-theme-video/" target="_blank">WordPress Theme design for people of any skill level from novice to advanced</a>. </p>
<p>Barcamp Chattanooga was a lively and busy event with close to 100 people registering for the event.&#160; Chattanooga is rather unique as a city that has an extremely high percentage of citizen twitter users as well, so this strong turnout for a first year event was probably not a surprise for local visitors.&#160; </p>
<p>People travelled from Memphis, Atlanta, Birmingham and of course Softduit Media’s Brett Bumeter travelled in from Charlotte NC about 5 and a half hours away by car.</p>
<p>Chattanooga will also be the location of a future Palm Pre development meetup and Birmingham will host the next WordCamp in the SouthEast at the end of September with attendance currently projected between 150-250 people.</p>
<h2>Pictures from Barcamp Chattanooga</h2>
<p> <object width="500" height="375"><param name="flashvars" value="offsite=true&lang;=en-us&amp;page_show_url=%2Fgroups%2Fbarcampchatt%2Fpool%2Fshow%2F&amp;page_show_back_url=%2Fgroups%2Fbarcampchatt%2Fpool%2F&amp;group_id=1103004@N21&amp;jump_to=&amp;start_index="></param><param name="movie" value="http://www.flickr.com/apps/slideshow/show.swf?v=71649"></param><param name="allowFullScreen" value="true"></param><embed type="application/x-shockwave-flash" src="http://www.flickr.com/apps/slideshow/show.swf?v=71649" allowFullScreen="true" flashvars="offsite=true&#038;lang=en-us&#038;page_show_url=%2Fgroups%2Fbarcampchatt%2Fpool%2Fshow%2F&#038;page_show_back_url=%2Fgroups%2Fbarcampchatt%2Fpool%2F&#038;group_id=1103004@N21&#038;jump_to=&#038;start_index=" width="500" height="375"></embed></object></p>


<p>Related posts:<ol><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>
<li><a href='http://softduit.com/brett-bumeter-speaking-at-wordcamp-rdu-2009/' rel='bookmark' title='Permanent Link: Brett Bumeter Speaking at WordCamp RDU 2009'>Brett Bumeter Speaking at WordCamp RDU 2009</a></li>
<li><a href='http://softduit.com/wordcamp-birmingham-2009-presentation-slides-design-your-first-wordpress-theme-in-minutes/' rel='bookmark' title='Permanent Link: WordCamp Birmingham 2009 Presentation Slides &ndash; Design Your First WordPress Theme in Minutes'>WordCamp Birmingham 2009 Presentation Slides &ndash; Design Your First WordPress Theme in Minutes</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://softduit.com/barcamp-chattanooga-brett-bumeter-design-a-wordpress-theme-in-10-minutes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
