<?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>Headway Drag and Drop WordPress Theme</title>
	<atom:link href="http://headwaythemes.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://headwaythemes.com</link>
	<description></description>
	<lastBuildDate>Sat, 04 Feb 2012 01:25:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3-RC1</generator>
		<item>
		<title>Fluid Headers &amp; Footers in Headway 3.0</title>
		<link>http://headwaythemes.com/fluid-headers-footers-in-headway-3-0/</link>
		<comments>http://headwaythemes.com/fluid-headers-footers-in-headway-3-0/#comments</comments>
		<pubDate>Fri, 03 Feb 2012 21:00:28 +0000</pubDate>
		<dc:creator>Caitlin</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[Documentation]]></category>
		<category><![CDATA[Headway Tutorials]]></category>

		<guid isPermaLink="false">http://headwaythemes.com/?p=278736</guid>
		<description><![CDATA[So-called &#8220;fluid&#8221; headers and footers are quite the rage in web development, aren&#8217;t they? So pretty, So shiny, So, so fluid. You want it, and I can&#8217;t blame you. I want it too. A future version of Headway will include the ability to create a fluid header and footer more easily without any custom code, [...]]]></description>
			<content:encoded><![CDATA[<p>So-called &#8220;fluid&#8221; headers and footers are quite the rage in web development, aren&#8217;t they? So pretty, So shiny, So, so <em>fluid</em>. You want it, and I can&#8217;t blame you. I want it too.</p>
<p>A future version of Headway will include the ability to create a fluid header and footer more easily without any custom code, but until then, this tutorial should suit. Let&#8217;s get on the same page about what we&#8217;re talking about: A fluid header and footer, as it&#8217;s often defined, really refer to anything where the header and/or footer area appear to fill the entire screen &#8211; no matter the width &#8211; while the page and header content (logos, phone numbers, etc) actually stay centered on the page. This is different than a strong trend in web design now called <a title="Smashing Magazine Archives: Responsive Design" href="http://www.smashingmagazine.com/tag/responsive-design/" target="_blank">responsive design</a>. You can see examples of fluid header and footer on this site, and at <a href="http://www.bbc.co.uk/news/" target="_blank">BBC News</a>, <a href="http://wordpress.org" target="_blank">WordPress.org</a>, and <a href="http://wp.tutsplus.com/" target="_blank">WPTuts+</a>.</p>
<h2>Fluid Header</h2>
<p>This part is the simplest &#8211; and doesn&#8217;t require any custom CSS at all.</p>
<p>1. <strong>Create a background image</strong>. You can do this in simple, free online image editors &#8211; like pixlr.com, for example. The image should be as small as possible, since we&#8217;ll just repeat it across the screen. For example, it might be a solid blue line that is 100px tall and just 3 px wide. <a title="View / Download the Body Background Image Example" href="http://headwaythemes.com/wp-content/uploads/2012/01/bodybg.jpg" target="_blank">Like this one. </a><br />
2. <strong>Upload the background. </strong> If you wanted this as the background for the top of the site &#8211; to create the look of a fluid header &#8211; then upload it to Design Mode on the BODY element as a background, and tile it horizontally using the options in the Options Panel.</p>
<p>If you only want a fluid header, you can stop here. If you want a fluid footer, then you can go one step further. Right now, this one does require a little custom CSS (and, again, we will be improving this in the future)</p>
<h2>Fluid Fooder</h2>
<p>3. <strong>Create your footer background.</strong> Maybe this one&#8217;s black! With a gradient overlay! Mix it up a little, have fun! <img src='http://headwaythemes.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Anyway, same principle as before &#8211; small, and repeatable! <a title="View / Download the Footer Background" href="http://headwaythemes.com/wp-content/uploads/2012/01/footerbg.jpg" target="_blank">Like this one!</a><br />
4. <strong>Upload to the Media Library in WordPress</strong>. Keep the link to the file handy, we&#8217;ll need it in a moment.<br />
5. <strong>Add the CSS</strong>.  Go to the VIsual Editor in Manage or Design mode to access the <a title="Members Only Link: Live CSS Documentation" href="http://codex.headwaythemes.com/index.php/Live_CSS" target="_blank">Live CSS</a> (members only) editor.</p>
<p>Code:</p>
<pre>body.custom #whitewrap {
background-image: url(http://yourdomain.com/wp-content/uploads/1/12/footerbg.jpg);
background-repeat: repeat-x;
background-position: bottom left;
}</pre>
<h3>What does this do?</h3>
<p>It adds a background to another full-screen element in Headway &#8211; the &#8220;Whitewrap&#8221; &#8211; which comes directly after the body and covers 100% of the screen. By using this, we can appear to have two background images (or one image that has a &#8220;fluid&#8221; center that grows with the content on the page). We&#8217;ve set the backgound to appear on the bottom left of the page, and to repeat across (x) the screen.</p>
<div class="notice">Note:  This is just a background image for the screen, and there&#8217;s a chance that you&#8217;ll still need a little finagling of block positions and sizes to make sure that what you want in the footer area fits on top of that image &#8211; won&#8217;t lie to you! So more custom CSS may be needed depending on what you are attempting to do. On my sites, it&#8217;s usually just a little block positioning to shift things a hair &#8211; 10 pixels here, 5 pixels there &#8211; to get it looking great in all browsers.</div>
]]></content:encoded>
			<wfw:commentRss>http://headwaythemes.com/fluid-headers-footers-in-headway-3-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Build a Site in 5 Easy Steps</title>
		<link>http://headwaythemes.com/how-to-build-a-site-in-5-easy-steps/</link>
		<comments>http://headwaythemes.com/how-to-build-a-site-in-5-easy-steps/#comments</comments>
		<pubDate>Fri, 03 Feb 2012 15:00:39 +0000</pubDate>
		<dc:creator>AJ Morris</dc:creator>
				<category><![CDATA[Headway Tutorials]]></category>
		<category><![CDATA[Screencasts]]></category>

		<guid isPermaLink="false">http://headwaythemes.com/?p=278754</guid>
		<description><![CDATA[This post is actually a series of posts that are designed to help you get the process down to building a site with Headway Themes. Each post will walk you through about 10 minutes of video filled with everything you need to get a site up and running. Each video only takes on specific parts [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-278756" src="http://headwaythemes.com/wp-content/uploads/2012/02/HowToBuildSiteGraphic-blogpost.jpg" alt="How to Build a Site in 5 Easy Steps" width="600" height="200" style="border-radius: 5px;" /></p>
<p>This post is actually a series of posts that are designed to help you get the process down to building a site with Headway Themes. Each post will walk you through about 10 minutes of video filled with everything you need to get a site up and running. Each video only takes on specific parts of the whole site design so that you are working on pieces for 10 minutes at a time.</p>
<h3>Getting Started</h3>
<p>Before you get started you need to get WordPress installed. There&#8217;s several ways to get it installed but we recommend <a title="Detailed Instructions for Installing WordPress" href="http://codex.wordpress.org/Installing_WordPress#Detailed_Instructions">these as the best</a>. Once you&#8217;ve got WordPress installed, you need to get Headway installed. If you haven&#8217;t purchased Headway Themes, make sure you go check out our <a title="Headway Pricing Options" href="http://headwaythemes.com/pricing/">pricing page</a> and choose the option that best works for you.</p>
<p>And if you need help installing Headway, we&#8217;ve got you <a title="Installing and Upgrading Headway Themes" href="http://headwaythemes.com/a-new-daily-how-to-series/">covered for that as well</a>.</p>
<p>Once you have got WordPress and Headway running you are ready to check out this steps.</p>
<h3>Step 1</h3>
<p>This first step is all about laying down the foundation to the site. We&#8217;re going to move fast through this, so feel free to pause the video as you are going through it. If you have questions about the video, please make sure to leave a comment on the blog post and we&#8217;ll try to help you out.</p>
<p><a title="How to: Build a Site in 10 Minutes" href="http://headwaythemes.com/how-to-build-a-site-in-10-minutes/">Part 1 of Building a Site in 5 Easy Steps</a></p>
<h3>Step 2</h3>
<p>The second step is sort of a continuation to step 1. Here we&#8217;re going to take a look at adding more to our foundation.</p>
<p><a title="How to Build a Site in 10 Minutes Part 2" href="http://headwaythemes.com/how-to-build-a-site-in-10-minutes-part-2/">Part 2 of Building a Site in 5 Easy Steps</a></p>
<h3>Step 3</h3>
<p>In this video we&#8217;re going to take a look at borders and fonts of other areas to help really make the design start to come together.</p>
<p><a title="How to Build a Site in 10 Minutes – Part 3" href="http://headwaythemes.com/how-to-build-a-site-in-10-minutes-part-3/">Part 3 of Building a Site in 5 Easy Steps</a></p>
<h3>Step 4</h3>
<p>In this video we&#8217;re going to take a look at working with the post meta and finding an icon for the comments post meta area.</p>
<p><a title="How to Build a Site in 10 Minutes – Part 4" href="http://headwaythemes.com/how-to-build-a-site-in-10-minutes-part-4/">Part 4 of Building a Site in 5 Easy Steps</a></p>
<h3>Step 5</h3>
<p>In this video we&#8217;re going to take a look at working with the post thumbnails and getting those into a place we&#8217;re satisfied with.</p>
<p><a title="How to Build a Site in 10 Minutes – Part 5" href="http://headwaythemes.com/how-to-build-a-site-in-10-minutes-part-5/">Part 5 of Building a Site in 5 Easy Steps</a></p>
<h3>Your Next Steps</h3>
<p>When you&#8217;ve completed each step, you should have a working site that you could use. Of course we only covered one page. There&#8217;s definitely some refinements you can now make on your own to handle the inside pages of the site. But the design should mostly be there. If you have questions, please let us know!</p>
]]></content:encoded>
			<wfw:commentRss>http://headwaythemes.com/how-to-build-a-site-in-5-easy-steps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Build a Site in 10 Minutes &#8211; Part 5</title>
		<link>http://headwaythemes.com/how-to-build-a-site-in-10-minutes-part-5/</link>
		<comments>http://headwaythemes.com/how-to-build-a-site-in-10-minutes-part-5/#comments</comments>
		<pubDate>Fri, 03 Feb 2012 01:31:25 +0000</pubDate>
		<dc:creator>AJ Morris</dc:creator>
				<category><![CDATA[Headway Tutorials]]></category>
		<category><![CDATA[Screencasts]]></category>

		<guid isPermaLink="false">http://headwaythemes.com/?p=278751</guid>
		<description><![CDATA[We are here everyone! We are at the last of the series for the building a website in 10 minutes. It has been a lot of fun working on this project and showing you some of how my process is when I&#8217;m working on a site from a PSD or HTML site into putting it [...]]]></description>
			<content:encoded><![CDATA[<p>We are here everyone! We are at the last of the series for the building a website in 10 minutes. It has been a lot of fun working on this project and showing you some of how my process is when I&#8217;m working on a site from a PSD or HTML site into putting it Headway Themes. This has been a popular series. If you have other ideas for a series, let me know. I&#8217;d love to do another one!</p>
<p>In this video we take a look at finishing the design with our thumbnails. If you didn&#8217;t do the homework before the previous video, make sure that you take a few minutes and add a couple of thumbnails to your posts, so you have something to work with when you work through this video. I ran just a little longer, closer to 15 minutes in this video, but it was just to finish up. Hope you guys enjoy!</p>
<p><iframe name="wistia_embed" src="http://fast.wistia.com/embed/iframe/e64b32ea13?videoWidth=560&amp;videoHeight=315&amp;controlsVisibleOnLoad=true&amp;playerColor=db4a1e" frameborder="0" width="560" height="315"></iframe></p>
<h3>How to Build a site in 10 Minute Series</h3>
<ul>
<li><a title="How to: Build a Site in 10 Minutes" href="http://headwaythemes.com/how-to-build-a-site-in-10-minutes/">Part 1 &#8211; Backgrounds and Layouts</a></li>
<li><a title="How to Build a Site in 10 Minutes Part 2" href="http://headwaythemes.com/how-to-build-a-site-in-10-minutes-part-2/">Part 2 &#8211; Header and Footer background</a></li>
<li><a title="How to Build a Site in 10 Minutes – Part 3" href="http://headwaythemes.com/how-to-build-a-site-in-10-minutes-part-3/">Part 3 - Borders, fonts, and more</a></li>
<li><a title="How to Build a Site in 10 Minutes – Part 4" href="http://headwaythemes.com/how-to-build-a-site-in-10-minutes-part-4/">Part 4 &#8211; Post Meta, Icon Finder</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://headwaythemes.com/how-to-build-a-site-in-10-minutes-part-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Build a Site in 10 Minutes &#8211; Part 4</title>
		<link>http://headwaythemes.com/how-to-build-a-site-in-10-minutes-part-4/</link>
		<comments>http://headwaythemes.com/how-to-build-a-site-in-10-minutes-part-4/#comments</comments>
		<pubDate>Wed, 01 Feb 2012 22:07:35 +0000</pubDate>
		<dc:creator>AJ Morris</dc:creator>
				<category><![CDATA[Headway Tutorials]]></category>
		<category><![CDATA[Screencasts]]></category>

		<guid isPermaLink="false">http://headwaythemes.com/?p=278745</guid>
		<description><![CDATA[We&#8217;re going to tidy up the Post Title and Post Meta in this 10 minutes. It&#8217;s all about the subtle differences to really make your site stand out! And a great tool to make sure you are getting the most out of it is to use a tool like IconFinder. It&#8217;s a great site that [...]]]></description>
			<content:encoded><![CDATA[<p>We&#8217;re going to tidy up the Post Title and Post Meta in this 10 minutes. It&#8217;s all about the subtle differences to really make your site stand out! And a great tool to make sure you are getting the most out of it is to use a tool like <a href="http://iconfinder.com">IconFinder</a>. It&#8217;s a great site that can help you find just the icon(s) you are looking for. The comment icon I chose for the comments area <a href="http://www.iconfinder.com/icondetails/14353/16/comments_small_icon">was this one</a>.</p>
<p>If you have watched the first 3 parts of this series, you can see <a title="How to: Build a Site in 10 Minutes" href="http://headwaythemes.com/how-to-build-a-site-in-10-minutes/">part 1</a>, <a title="How to Build a Site in 10 Minutes Part 2" href="http://headwaythemes.com/how-to-build-a-site-in-10-minutes-part-2/">part 2</a>, and <a title="How to Build a Site in 10 Minutes – Part 3" href="http://headwaythemes.com/how-to-build-a-site-in-10-minutes-part-3/">part 3</a> with these links. Definitely go back and check those out if you haven&#8217;t been following along, or if you need a little bit of a refresher.</p>
<p><iframe name="wistia_embed" src="http://fast.wistia.com/embed/iframe/93913637c9?videoWidth=560&amp;videoHeight=315&amp;controlsVisibleOnLoad=true&amp;playerColor=db4e1a" frameborder="0" width="560" height="315"></iframe></p>
<p>I&#8217;m going to finish this up with a part 5. We could likely go on, but there&#8217;s other great tutorials that I want to get out. There will definitely be things in the design that you could add to (take a look at the widget areas for one!), outside of this tutorial series. This certainly has been a fun tutorial series to do! I&#8217;ll leave the wrap-up for part 5 tomorrow.</p>
]]></content:encoded>
			<wfw:commentRss>http://headwaythemes.com/how-to-build-a-site-in-10-minutes-part-4/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to Build a Site in 10 Minutes &#8211; Part 3</title>
		<link>http://headwaythemes.com/how-to-build-a-site-in-10-minutes-part-3/</link>
		<comments>http://headwaythemes.com/how-to-build-a-site-in-10-minutes-part-3/#comments</comments>
		<pubDate>Wed, 01 Feb 2012 13:43:25 +0000</pubDate>
		<dc:creator>AJ Morris</dc:creator>
				<category><![CDATA[Headway Tutorials]]></category>
		<category><![CDATA[Screencasts]]></category>

		<guid isPermaLink="false">http://headwaythemes.com/?p=278741</guid>
		<description><![CDATA[The more I write the title to this post, the more I think we should change it to something like &#8216;Building a Site 10 minutes at a time.&#8217; It makes more sense since that&#8217;s what we&#8217;ve turned this into! Just to play catch in case you have not been following us through this series, we&#8217;ve [...]]]></description>
			<content:encoded><![CDATA[<p>The more I write the title to this post, the more I think we should change it to something like &#8216;Building a Site 10 minutes at a time.&#8217; It makes more sense since that&#8217;s what we&#8217;ve turned this into! Just to play catch in case you have not been following us through this series, we&#8217;ve been building a site using Headway&#8217;s Visual Editor and adding in some CSS when needed. We&#8217;ve also been limiting it to 10 minutes at a time. So hopefully it&#8217;s just enough time to get you going until the next video.</p>
<p>Before watching this video, make sure you take some time to watch <a title="How to: Build a Site in 10 Minutes" href="http://headwaythemes.com/how-to-build-a-site-in-10-minutes/">part 1</a> and <a title="How to Build a Site in 10 Minutes Part 2" href="http://headwaythemes.com/how-to-build-a-site-in-10-minutes-part-2/">part 2</a> for the first time or as refreshers if you need to.</p>
<p>In this video we take a look at adding borders via CSS to the entry title and post meta area. We also take a look at tidying up the continue reading button so that it looks closer to what <a title="Six Revisions" href="http://sixrevisions.com" target="_blank">Six Revisions</a> has, except we&#8217;re going to place it on the right hand side of the content instead of the left. This video is just under 10 minutes (9:30ish) since I&#8217;ve been going over my 10 minute timeframe in the past videos.</p>
<p><iframe name="wistia_embed" src="http://fast.wistia.com/embed/iframe/364df91622?videoWidth=560&amp;videoHeight=315&amp;controlsVisibleOnLoad=true&amp;playerColor=db4a1e" frameborder="0" width="560" height="315"></iframe></p>
<p>Part 4 will be up later today, so make sure you stick around the Headway blog for the next installment of How to Build a Site in 10 Minutes.</p>
]]></content:encoded>
			<wfw:commentRss>http://headwaythemes.com/how-to-build-a-site-in-10-minutes-part-3/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>5 Blogging Myths that Need to Die in a Fire</title>
		<link>http://headwaythemes.com/blogging-myths/</link>
		<comments>http://headwaythemes.com/blogging-myths/#comments</comments>
		<pubDate>Tue, 31 Jan 2012 22:00:50 +0000</pubDate>
		<dc:creator>Michael Martine</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[blogging]]></category>

		<guid isPermaLink="false">http://headwaythemes.com/?p=278728</guid>
		<description><![CDATA[Blogging is evolving quickly and growing up. Unfortunately, it&#8217;s easy to come across outdated advice on the web that ranks high in search due to its longstanding popularity. There are things you think you know about blogging&#8230; and there&#8217;s reality (well, my interpretation of reality, anyway&#8212;we all know how subjective this is). So it&#8217;s with [...]]]></description>
			<content:encoded><![CDATA[<p>Blogging is evolving quickly and growing up. Unfortunately, it&#8217;s easy to come across outdated advice on the web that ranks high in search due to its longstanding popularity. There are things you think you know about blogging&#8230; and there&#8217;s reality (well, my interpretation of reality, anyway&#8212;we all know how subjective this is).</p>
<p>So it&#8217;s with a bit of vicious glee I present blog myths that need to just die in a fire, already.</p>
<h3>Blogging is Dying</h3>
<p>I think this one gets trotted out at least once if not twice a year now as some new social media service appears. Facebook was going to kill blogging. Twitter was going to kill blogging. If they haven&#8217;t yet, I&#8217;m sure someone will hold forth that Pinterest will kill blogging.</p>
<p>Blogging isn&#8217;t going away. It&#8217;s like the Borg in Star Trek: it assimilates everything in its path and just keeps going relentlessly. Only, except for the being evil part.</p>
<p>Now, for huge corporations, <a href="http://www.marketingpilgrim.com/2012/01/blogging-declines-in-inc-500-survey.html" target="_blank">blogging has declined</a>. But for online small business, blogging (and social media) <a href="http://www.fastcompany.com/1753785/small-businesses-connecting-with-customers-on-multiple-fronts" target="_blank">is stronger than ever</a>. In part I believe this is because <em>some</em> people <em>would</em> rather use Facebook or Pinterest instead of creating a blog. They&#8217;re not running a business and may not even particularly feel a strong need to express themselves&#8212;they just want to stay in touch with family &amp; friends and share with them. That means a little less noise on the blogging front so your signal can get through.</p>
<p>Blogging is firmly entrenched in the online ecosystem. Some of the most powerful and visited sites in the world are blogs. Blogging&#8230; dead? It is to laugh.</p>
<h3>You Need to Have Keywords in Your Domain Name</h3>
<p>This is a tricky one, because as of now you can still benefit greatly from having keywords in your domain name. But it would be false to say you <em>need</em> to have keywords in your domain name. Google&#8217;s war against spammers and SEO hucksters rages on. As the <a href="http://yoast.com/search-social-cream-coffee/" target="_blank">blending of search and social</a> continues, <a href="http://www.seobook.com/googles-matt-cutts-talks-down-keyword-domain-names" target="_blank">branding will become more important</a> than ever.</p>
<p>Exact keyword match domain names just <em>sound spammy</em>, anymore. Nobody believes there are real people or a real business there. But a brand name communicates <em>humanity</em> and that is a very important signal.</p>
<p>Which is good, because nearly all the exact match keyword domain names for anything imaginable have already been taken.</p>
<h3>You Should Have a Blogroll</h3>
<p>There are several good reasons why blogrolls need to die in a fire:</p>
<ul>
<li>They can get out of hand, taking up a huge amount of vertical sidebar space and making your site look ungainly.</li>
<li>They can <a href="http://andybeard.eu/121/how-a-blogroll-can-kill-your-pagerank.html" target="_blank">mess up your SEO pretty badly</a>.</li>
<li>You have to play favorites and be exclusive, rather than inclusive, for your blogroll to hold any value, but then you risk offending those who didn&#8217;t make the cut.</li>
</ul>
<div>A blogroll is just one of those things that the evolution of social media and business blogging techniques <em>has </em>replaced. Linking out to your favorite sites via social media or a resources page is simply a better and more effective idea. Why? because it will fulfill the idea behind a blogroll better than a blogroll can. And without creating hundreds of links that are identical on every single page of your site.</div>
<h3>You Should Blog Every Day</h3>
<p>Ah, yes, the old &#8220;quantity vs. quality&#8221; debate. Let me get this out of the way: Quality takes quantity out into the back alley and does very bad things to it with a crowbar. It&#8217;s true that frequent publishing has many benefits, however if the content is crap, you don&#8217;t get those benefits. About the only way to be prolific and profitable is to have a team of people publishing around the clock. Between myself and A.J., we can come up at least one if not two good posts a day here on the Headway blog.</p>
<p>So take into account how much time you have and how often you can create something that actually resonates with people, and figure out your posting schedule from there. Some tips that really help:</p>
<ul>
<li><strong>Create an editorial calendar for your blog.</strong> By determining topics in advance you dramatically shorten writing times because your subconscious has already been writing the post while you were doing other things.</li>
<li><strong>Batch-write your posts.</strong> If you can set aside a block of time to write two or three posts instead of just one, you&#8217;ll gain efficiency and productivity by not having to switch gears. You can get in the flow and get more done.</li>
<li><strong>Write every day.</strong> Notice I didn&#8217;t say publish every day&#8230; I said <em>write</em> every day. Why? Discipline, for one thing. Your writing will improve immensely. And if you combine this with the other two tips, you <em>will</em> be able to post quality posts more frequently.</li>
<li><strong>Create a system to follow.</strong> Check out my post on the <a href="http://remarkablogger.com/2011/09/14/life-cycle-business-blog-post/" target="_blank">life cycle of a blog post</a> to see how you can create a good workflow for yourself.</li>
</ul>
<h3>Blogs are for Amateurs/Not to be Taken Seriously</h3>
<p>Have you ever heard the word <em>blogger</em> used derisively?</p>
<p>I have, plenty of times. Usually its hurled about by people whose professions are being transformed into something scary and unrecognizable to them by the internet, such as journalists. The line between blogging and journalism is a moving target. Sometimes bloggers are treated like journalists and sometimes they&#8217;re not, and we&#8217;re not sure who&#8217;s more happy or offended about it!</p>
<p>But seeing as how some of the most visited sites on the web are those of the <a href="http://www.alexa.com/topsites/global;0" target="_blank">major blog services</a>, and many news organizations&#8217; websites are using blog software and incorporating &#8220;bloggy&#8221; elements into their designs such as comments, we can definitely let this myth die in a fire.</p>
<h3>Only Five? Surely There are More</h3>
<p>Surely there are! But five is enough for one post. Each myth has a decent amount of explanation and you only have so much free time.</p>
<p>But if you can think of any other blogging myths that need to just die in a fire, already, post &#8216;em in the comments below and I&#8217;ll incorporate them into another post. Or maybe you want to defend your blogroll or your keyword-rich domain name? Please, be my guest! We love to discuss in the comments. <img src='http://headwaythemes.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://headwaythemes.com/blogging-myths/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Screencast Tuesday: Mass Block Selection Mode</title>
		<link>http://headwaythemes.com/screencast-tuesday-mass-block-selection-mode/</link>
		<comments>http://headwaythemes.com/screencast-tuesday-mass-block-selection-mode/#comments</comments>
		<pubDate>Tue, 31 Jan 2012 20:44:40 +0000</pubDate>
		<dc:creator>AJ Morris</dc:creator>
				<category><![CDATA[Headway Tutorials]]></category>
		<category><![CDATA[Screencasts]]></category>

		<guid isPermaLink="false">http://headwaythemes.com/?p=278732</guid>
		<description><![CDATA[Over the weekend I saw a few people struggling with how to move multiple blocks around with a layout, so I thought what better for a Screencast Tuesday tutorial than to show you how to use Mass Block Selection mode. While the feature can be pretty straightforward, I tried to go over all of the [...]]]></description>
			<content:encoded><![CDATA[<p>Over the weekend I saw a few people struggling with how to move multiple blocks around with a layout, so I thought what better for a Screencast Tuesday tutorial than to show you how to use Mass Block Selection mode. While the feature can be pretty straightforward, I tried to go over all of the ways it works and how to get in and out of mass block selection mode. Hope you guys like it!</p>
<p><iframe src="http://fast.wistia.com/embed/iframe/07a5f308de?videoWidth=560&#038;videoHeight=315&#038;controlsVisibleOnLoad=true&#038;playerColor=db4e1a" allowtransparency="true" frameborder="0" class="wistia_embed" name="wistia_embed" width="560" height="315"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://headwaythemes.com/screencast-tuesday-mass-block-selection-mode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Build a Site in 10 Minutes Part 2</title>
		<link>http://headwaythemes.com/how-to-build-a-site-in-10-minutes-part-2/</link>
		<comments>http://headwaythemes.com/how-to-build-a-site-in-10-minutes-part-2/#comments</comments>
		<pubDate>Tue, 31 Jan 2012 04:19:56 +0000</pubDate>
		<dc:creator>AJ Morris</dc:creator>
				<category><![CDATA[Headway Tutorials]]></category>
		<category><![CDATA[Screencasts]]></category>

		<guid isPermaLink="false">http://headwaythemes.com/?p=278725</guid>
		<description><![CDATA[Alright, you guys have convinced me to deviate from my original plan and come back to a part 2, 3, and maybe 4 of building a site in 10 minutes. If you haven&#8217;t watched part 1 yet, you might be a little lost, so make sure you go back and watch that. Today we&#8217;re going to look [...]]]></description>
			<content:encoded><![CDATA[<p>Alright, you guys have convinced me to deviate from my original plan and come back to a part 2, 3, and maybe 4 of <a title="How to: Build a Site in 10 Minutes" href="http://headwaythemes.com/how-to-build-a-site-in-10-minutes/">building a site in 10 minutes</a>. If you haven&#8217;t watched part 1 yet, you might be a little lost, so make sure you go back and watch that.</p>
<p>Today we&#8217;re going to look at part 2, which ended up going a little bit over my 10 minute mark to 12 minutes (so I cut off the ending <img src='http://headwaythemes.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> ), but we&#8217;re talking gradients, the little refinements, and some cool CSS3 techniques to do it. To get help with CSS Gradients, we <a title="CSS Gradient Tool" href="http://www.westciv.com/tools/gradients/index.html">can use this tool</a> that&#8217;s free and works great for both Webkit and Firefox browsers. If you&#8217;re using Chrome like me and want to download the Pendule tool I use to bring up a color pick, make sure to <a title="Pendule Extension App for Google Chrome" href="https://chrome.google.com/webstore/detail/gbkffbkamcejhkcaocmkdeiiccpmjfdi">get the extension here</a>.</p>
<p><iframe name="wistia_embed" src="http://fast.wistia.com/embed/iframe/06ce127e07?videoWidth=560&amp;videoHeight=315&amp;controlsVisibleOnLoad=true&amp;playerColor=db4a1e" frameborder="0" width="560" height="315"></iframe></p>
<p>Part 1 in the Building a Site in 10 minutes series, <a title="How to: Build a Site in 10 Minutes" href="http://headwaythemes.com/how-to-build-a-site-in-10-minutes/">can be watched here</a>. See you tomorrow for part 3!</p>
]]></content:encoded>
			<wfw:commentRss>http://headwaythemes.com/how-to-build-a-site-in-10-minutes-part-2/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>The 3-P Formula You Must Know for Business and Blog Success</title>
		<link>http://headwaythemes.com/3-part-formula-blog-success/</link>
		<comments>http://headwaythemes.com/3-part-formula-blog-success/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 22:04:37 +0000</pubDate>
		<dc:creator>Michael Martine</dc:creator>
				<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://headwaythemes.com/?p=278717</guid>
		<description><![CDATA[One simple 3-part formula can help ensure success for your blog. The reason this formula works is because it allows you to get inside the minds of your audience. And if you can&#8217;t do that, no one will even know your blog exists because they&#8217;ll never find it and no one else will ever send [...]]]></description>
			<content:encoded><![CDATA[<p>One simple 3-part formula can help ensure success for your blog. The reason this formula works is because it allows you to get inside the minds of your audience. And if you can&#8217;t do that, no one will even know your blog exists because they&#8217;ll never find it and no one else will ever send them links to it. The reason I call it the 3-P formula is not because it&#8217;s 3 parts, but because each part begins with the letter P.</p>
<p>This formula is based on how people get to what they consider valuable content on the web. This only happens one of two ways:</p>
<ul>
<li><strong>They find it in a search - </strong>In order to be found in search, the words of your content has to match up with words people type into that search box on Google. And it has to do it better than everyone else who is trying to attract the same people you are.</li>
<li><strong>They click on a link sent to them by someone else &#8211; </strong>Some kind of referring agent (their browser&#8217;s home page or friends in social media or by email are several examples) sends a link to a member of your audience. It doesn&#8217;t matter whether the link was created automatically or manually.</li>
</ul>
<p>That&#8217;s it.</p>
<p>There is no other way for anyone to reach your blog.</p>
<p>In all the blather out there on the web about &#8220;how to get more traffic,&#8221; you will find that most folks focus on tactics and tools: use this software, this service. Post at certain times of day or during the week. Measure certain things.</p>
<p>All of which fails to address something deeper: the strategy that leads you to use certain tools and tactics.</p>
<h3>The 3-P Formula: People, Problem, Product</h3>
<p>I&#8217;ve been using this formula successfully with my own <a href="http://remarkablogger.com" target="_blank">blog consulting</a> clients for years, now. Often it&#8217;s the one thing that really gets everything to &#8220;click&#8221; inside the client&#8217;s mind and brings them the understanding they never had before. Let&#8217;s go over each part of the formula so you too can use it.</p>
<h3>The First P: People</h3>
<p>The first P in the formula is <em>people</em>. What kind of people are we talking about here? The people you&#8217;re trying to reach with your content:</p>
<ul>
<li>Who are they?</li>
<li>Where do they live?</li>
<li>How educated are they?</li>
<li>How old are they?</li>
<li>What is their relationship status?</li>
<li>Where/how do they work?</li>
<li>How do they learn?</li>
<li>How much do they earn?</li>
<li>How do they think?</li>
<li>What social media networks do they use?</li>
<li>How technologically savvy are they?</li>
<li>What devices and technologies do they use?</li>
</ul>
<p>Some of this what you might call good ol&#8217; demographics. Some of it is what you would call &#8220;technographics.&#8221; Knowing this stuff matter. For example, if your ideal customer is older and using a desktop he chose with the help of his son and he is married and approaching retirement, you&#8217;ll design your site a certain way in Headway and create content in a specific way that&#8217;s best for him.</p>
<p>But if your ideal customer is a middle-aged stay-at/work from home mother  with an iPad, iPhone and laptop, then you&#8217;d do things differently.</p>
<p>You can&#8217;t talk meaningfully to anyone unless you know <em>exactly</em> who you&#8217;re talking to. You can&#8217;t talk to everyone: your message will not get even get through. What can you say to everyone that would matter to them? What are the things which everyone searches for on Google or shares with friends?</p>
<p>Damn little, that&#8217;s what.</p>
<p>One example of seeing this put to good use is <a href="http://robbsutton.com/" target="_blank">Robb Sutton</a>. His site states it is for entrepreneurs and fathers. This automatically excludes a great many people: women and men who have no children and of course people who do not identify themselves as entrepreneurs. Is this bad? Not a chance: Robb has dramatically increased his chances of reaching the people he wishes to serve. That&#8217;s not a bad thing at all. It&#8217;s a <em>great </em>thing.</p>
<p>So the first P is People, and now you know why.</p>
<p>Notice how this has absolutely nothing to do at all with you? Nothing to do with who you are, what you&#8217;re selling or what skills you have. People don&#8217;t care about you. They care about what they want. They care about what you can do for them, but even that won&#8217;t happen until they know you really understand them. And understanding begins with knowing who they are as people.</p>
<p>Let&#8217;s move on to the second P.</p>
<h3>The Second P: Problem</h3>
<p>Problem is the problem a person has which causes them to either deliberately search for something or be interested in something when it&#8217;s sent their way by a well-meaning friend. This problem could be something acute, such as a funny bump he just found on his skin, or it could be diffuse, such as being pushed around by a bank&#8217;s bureaucratic labyrinth time and time again.</p>
<p>People and problem are so interconnected it&#8217;s hard to separate them. Indeed, &#8220;problem&#8221; here is really the second part of the sentence &#8220;People who have X problem.&#8221;</p>
<p>This is where the topic of your blog really connects with folks&#8230; or doesn&#8217;t. If you&#8217;re blogging about tax help, for example, the location of your customer matters a great deal, as taxes are different all over the world. You&#8217;ll write or create content differently for older or younger people. Different things will appeal to high-net-worth clients as compared to middle class recently unemployed people.</p>
<p>In fact, let&#8217;s take the same problem and look at it as faced by two different people: recovering from and managing unemployment. Sure, there are some tips and services that would be important to <em>anyone </em>who suddenly finds himself unemployed.</p>
<p>But you&#8217;d do things differently if you were targeting the well-to-do who suddenly find themselves ejected from senior management positions as compared to recent college grads who can&#8217;t even get employment in the first place and has tens of thousands of student loan debt hanging over their heads.</p>
<p>So&#8230; what&#8212;<em>specifically</em>&#8212;is/are the problem(s) that you help your <em>specific</em> people with?</p>
<p>Again, this is not about what you <em>do</em>. Nobody cares if you&#8217;re an accountant. <em>Can you help a middle-aged &#8220;empty nester&#8221; woman from the United States figure out her self-employed taxes? She&#8217;s worried she&#8217;s screwing it all up and missing out on deductions or will trigger an audit.</em> That&#8217;s what someone&#8212;a very specific someone&#8212;would care about.</p>
<p>Now that we see what the Problem component is and how it&#8217;s tied in with the People component, let&#8217;s move on to the third part of the 3-P Formula.</p>
<h3>The Third P: Product</h3>
<p>So, now you know who you&#8217;re talking to and you know what problems you solve for them.</p>
<p><em>How</em> are you going to solve them? <em>What</em> will they buy from you to solve their problem?</p>
<p>This is of course is strongly related to people and problem: different people use different kinds of tools to learn and execute tasks in life. Some prefer to watch video or read text. Some want to see examples while others learn by doing. Some have a Kindle while others wait for the DVDs or printed books to arrive in the mail. Some want a mentor while others want a servant.</p>
<p>What will you create to sell or give to the people you serve to help with their problem?</p>
<p>That is your product.</p>
<h3>The Big Mistake People Make</h3>
<p>The big mistake people make in all this is that they start with a product first and then try to figure out how to get as many people as possible to buy it. They don&#8217;t take into account that nobody wants it or that it doesn&#8217;t appeal to anyone. Notice how Product comes <em>last</em> in the formula. That&#8217;s because without People and Problem, <em>you really have no product.</em></p>
<h3>Putting it all Together in Headway</h3>
<p>Ah, you knew there had to be a connection to Headway in there somewhere, didn&#8217;t you? Of course! Here are some blog and content tips you can use to implement the 3-P formula in your blog:</p>
<ul>
<li><strong>Address the 3 P&#8217;s right on your home page.</strong> In fact, hit them right between the eyes with it. <a href="http://codex.wordpress.org/Creating_a_Static_Front_Page" target="_blank">Create a separate home page</a> and use <a href="http://headwaythemes.com/screencast-tuesday-double-take-grid-wizard-and-content-block-updates-in-3-0-5/">Content blocks</a> and Media blocks to really let the <em>right </em>people know they&#8217;ve found their new best friend online. Use custom code blocks create contact forms, sign-up forms, or place buy button code.</li>
<li><strong>Organize your blog categories around the way your people think of the Problem(s). </strong>Instead of using normal category archive pages, create separate pages in WordPress and then use Content blocks to filter by category. See how <a href="http://worklifenation.com" target="_blank">WorkLife Nation</a> (a consulting client of mine) does this to create much nicer-looking high-SEO-value pages.</li>
<li><strong>Go beyond the norm and incorporate highly-relevant links into your navigation bar.</strong> Use WordPress&#8217;s menu system (<a href="http://headwaythemes.com/how-to-wordpress-menu-headway/">Headway 2.x link</a>, <a href="http://headwaythemes.com/how-to-use-headway-3-0s-navigation-block-with-wordpress-menus/">Headway 3 link</a>) along with Headway&#8217;s <a href="http://headwaythemes.com/screencast-tuesday-using-multiple-navigation-blocks-with-the-visual-editor-and-css/">Navigation blocks</a> to create amazing high-value links in your main navigation your ideal customer will want to click on.</li>
</ul>
<h3>Over to You</h3>
<p>Any ways you can think of to make the 3 P&#8217;s happen on your site? Share them in the comments! Have any questions? Ask away in the comments!</p>
]]></content:encoded>
			<wfw:commentRss>http://headwaythemes.com/3-part-formula-blog-success/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How to Install LiveFyre</title>
		<link>http://headwaythemes.com/how-to-install-livefyre/</link>
		<comments>http://headwaythemes.com/how-to-install-livefyre/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 15:00:21 +0000</pubDate>
		<dc:creator>AJ Morris</dc:creator>
				<category><![CDATA[Headway Tutorials]]></category>
		<category><![CDATA[Screencasts]]></category>

		<guid isPermaLink="false">http://headwaythemes.com/?p=278711</guid>
		<description><![CDATA[This was actually supposed to go out Friday, but due to some video encoding issues, I had to wait until today to put it up. So you&#8217;ll be getting two posts today. In this video, we&#8217;re showing you how to install LiveFyre, a popular comment system plugin, that we use here on our own blog. [...]]]></description>
			<content:encoded><![CDATA[<p>This was actually supposed to go out Friday, but due to some video encoding issues, I had to wait until today to put it up. So you&#8217;ll be getting two posts today.</p>
<p>In this video, we&#8217;re showing you how to install LiveFyre, a popular comment system plugin, that we use here on our own blog. It&#8217;s quite simple to install, and the video is under 2 minutes, so you shouldn&#8217;t have any problems getting it installed and working on your next blog!</p>
<p>Hope you guys enjoy!</p>
<p><iframe name="wistia_embed" src="http://fast.wistia.com/embed/iframe/0620d2beed?videoWidth=560&amp;videoHeight=315&amp;controlsVisibleOnLoad=true&amp;playerColor=db4e1a" frameborder="0" width="560" height="315"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://headwaythemes.com/how-to-install-livefyre/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Database Caching 1/3 queries in 0.001 seconds using disk: basic
Object Caching 707/707 objects using disk: basic

Served from: headwaythemes.com @ 2012-02-03 21:38:29 -->
