<?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>WP Blog Host&#039;s Blog &#187; optimization</title>
	<atom:link href="http://wpbloghost.com/blog/tag/optimization/feed/" rel="self" type="application/rss+xml" />
	<link>http://wpbloghost.com/blog</link>
	<description></description>
	<lastBuildDate>Mon, 19 Jul 2010 18:02:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Hammering Down 2 More Ways To Speed Up Your WordPress Blog</title>
		<link>http://wpbloghost.com/blog/speeding-up-wordpress/</link>
		<comments>http://wpbloghost.com/blog/speeding-up-wordpress/#comments</comments>
		<pubDate>Mon, 12 Oct 2009 04:00:32 +0000</pubDate>
		<dc:creator>John Hoff</dc:creator>
				<category><![CDATA[Blog Optimization/SEO]]></category>
		<category><![CDATA[Landing Page Optimization]]></category>
		<category><![CDATA[optimization]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://wpbloghost.com/blog/?p=2379</guid>
		<description><![CDATA[In a recent post I talked about how you can speed up WordPress through compressing data using gzip by way of PHP. Since I posted that article I&#8217;ve had more than a few people ask me what other ways I know that can help speed up a WordPress blog. To be honest, most of what [...]


Related posts:<ol><li><a href='http://wpbloghost.com/blog/wordpress-defender/' rel='bookmark' title='Permanent Link: WordPress Defender: 30 Ways to Secure Your Blog from Attack Anyone Can Do'>WordPress Defender: 30 Ways to Secure Your Blog from Attack Anyone Can Do</a></li>
<li><a href='http://wpbloghost.com/blog/2-easy-ways-to-set-up-a-wordpress-firewall/' rel='bookmark' title='Permanent Link: 2 Easy Ways To Set Up A WordPress Firewall'>2 Easy Ways To Set Up A WordPress Firewall</a></li>
<li><a href='http://wpbloghost.com/blog/how-to-install-google-analytics-on-a-wordpress-blog-without-using-a-plugin/' rel='bookmark' title='Permanent Link: How To Install Google Analytics On A WordPress Blog Without Using A Plugin'>How To Install Google Analytics On A WordPress Blog Without Using A Plugin</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img src="http://wpbloghost.com/blog/wp-files-greenblog/../blogimages/2009/10/bullet.jpg" alt="WordPress-Bullet" title="WordPress-Bullet" width="270" height="212" class="alignright size-full wp-image-2382" />In a recent post I talked about how you can speed up WordPress through <a href="http://wpbloghost.com/blog/gzip-compression/" title="1 Incredibly Wicked Trick To Speeding Up Your Blog’s Load Time">compressing data using gzip</a> by way of PHP.</p>
<p>Since I posted that article I&#8217;ve had more than a few people ask me what other ways I know that can help speed up a WordPress blog. To be honest, most of what I know is from what I&#8217;ve found online. </p>
<p>Something to note before we begin, though, is that if you&#8217;re going to toy around with your blog&#8217;s performance and theme&#8217;s code, be sure to <a href="http://wpbloghost.com/blog/how-to-backup-wordpress/">back everything up first</a>. Do NOT skip this step!</p>
<p>Also, always make sure your website is working properly immediately after attempting any of these hacks.</p>
<h3>Speed Tip #1: Enable Caching Through .htaccess</h3>
<p>If your web host supports mod_deflate, try adding this code to your root .htaccess file to compress javascript and css before it is sent to your visitor&#8217;s browser.</p>
<p>&lt;IfModule mod_deflate.c&gt;<br />
&lt;FilesMatch &quot;\.(js|css)$&quot;&gt;<br />
SetOutputFilter DEFLATE<br />
&lt;/FilesMatch&gt;<br />
&lt;/IfModule&gt;</p>
<p>Source: <a href="http://www.askapache.com/htaccess/apache-speed-compression.html">AskApache</a></p>
<h3>Speed Tip #2: Combine and Minify Javascript and CSS</h3>
<p>One way to speed things up is to rearrange Javascript and CSS files so that everything loads quicker. In practice, if you combine all your Javascript files into one file and load it at the end of your website (i.e. in the footer), your site will load quicker because there are fewer stops and waits for multiple Javascript files to be accessed.</p>
<p>Similarly, the same holds true for CSS files except you&#8217;d rather have those load at the top of your website, not the bottom.</p>
<p>WordPress makes this very difficult because of the use of plugins. Many plugins come with their own CSS and Javascript files and unless you&#8217;re into coding big time, it&#8217;ll be extremely difficult to combine all your plugin&#8217;s CSS and Javascript files.</p>
<p>There is hope, however, thanks to (ironically) minify plugins.</p>
<p>Two minify plugins I have experimented with are the <a href="http://wordpress.org/extend/plugins/wp-minify/">WP Minify</a> and <a href="http://wordpress.org/extend/plugins/head-cleaner/">Head Cleaner</a> plugins.</p>
<p>These plugins attempt to speed up your blog&#8217;s load time by combining Javascript and CSS files respectively and loading them in their appropriate places for increased speed. Of the two plugins, the WP Minify plugin worked best for me as seen by these screen shots below using the Firebug/Y-Slow add-ons for Firefox.</p>
<p>Before WP Minify my blog had a B rating because it made too many http requests (which slow things down):</p>
<p><img src="http://wpbloghost.com/blog/wp-files-greenblog/../blogimages/2009/10/before-wp-minify.jpg" alt="before-wp-minify" title="before-wp-minify" width="565" height="302" class="aligncenter size-full wp-image-2391" /></p>
<p>After installing the WP Minify plugin my blog now has an A rating:</p>
<p><img src="http://wpbloghost.com/blog/wp-files-greenblog/../blogimages/2009/10/after-wp-minify.jpg" alt="after-wp-minify" title="after-wp-minify" width="565" height="295" class="aligncenter size-full wp-image-2392" /></p>
<p>One thing to note about the WP Minify plugin: if your blog is located in the <strong>/blog</strong> or some directory other than your website&#8217;s root, make sure to define its location in the plugin&#8217;s settings.</p>
<p>There are lots more little tips and tricks you can do to increase the speed at which your blog loads, some things work, others don&#8217;t or have very little performance changes. It&#8217;s always best if you can find articles which back up claims with statistics.</p>
<p>By the way, if you&#8217;re still looking to get your own WordPress blog or you&#8217;re in the market for a domain name, SSL certificate, etc., don&#8217;t forget we provide <a href="http://www.securepaynet.net/gdshop/catalog.asp?ci=6899&#038;prog_id=442543">all these hosting/domains services</a> here at WP Blog Host. <img src='https://wpbloghost.com/blog/wp-files-greenblog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>SSL certificates are a great way to log into your WordPress admin area and do whatever it is you want to do under the protection of everything being encrypted. We&#8217;ll talk more about that and how to set it up in a future post.</p>


<p>Related posts:<ol><li><a href='http://wpbloghost.com/blog/wordpress-defender/' rel='bookmark' title='Permanent Link: WordPress Defender: 30 Ways to Secure Your Blog from Attack Anyone Can Do'>WordPress Defender: 30 Ways to Secure Your Blog from Attack Anyone Can Do</a></li>
<li><a href='http://wpbloghost.com/blog/2-easy-ways-to-set-up-a-wordpress-firewall/' rel='bookmark' title='Permanent Link: 2 Easy Ways To Set Up A WordPress Firewall'>2 Easy Ways To Set Up A WordPress Firewall</a></li>
<li><a href='http://wpbloghost.com/blog/how-to-install-google-analytics-on-a-wordpress-blog-without-using-a-plugin/' rel='bookmark' title='Permanent Link: How To Install Google Analytics On A WordPress Blog Without Using A Plugin'>How To Install Google Analytics On A WordPress Blog Without Using A Plugin</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://wpbloghost.com/blog/speeding-up-wordpress/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>1 Incredibly Wicked Trick To Speeding Up Your Blog&#8217;s Load Time</title>
		<link>http://wpbloghost.com/blog/gzip-compression/</link>
		<comments>http://wpbloghost.com/blog/gzip-compression/#comments</comments>
		<pubDate>Mon, 07 Sep 2009 04:00:19 +0000</pubDate>
		<dc:creator>John Hoff</dc:creator>
				<category><![CDATA[Blog Optimization/SEO]]></category>
		<category><![CDATA[Landing Page Optimization]]></category>
		<category><![CDATA[optimization]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[videos]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://wpbloghost.com/blog/?p=2293</guid>
		<description><![CDATA[We all know attention spans on the Web are small. Make a potential first time visitor to your site wait more than a few moments for your blog to load and they&#8217;ll click away faster than you can say, &#8220;But wait!&#8221; Here&#8217;s an incredibly easy trick you can do to reducing that &#8220;but wait&#8221;-time for [...]


Related posts:<ol><li><a href='http://wpbloghost.com/blog/speeding-up-wordpress/' rel='bookmark' title='Permanent Link: Hammering Down 2 More Ways To Speed Up Your WordPress Blog'>Hammering Down 2 More Ways To Speed Up Your WordPress Blog</a></li>
<li><a href='http://wpbloghost.com/blog/how-to-install-google-analytics-on-a-wordpress-blog-without-using-a-plugin/' rel='bookmark' title='Permanent Link: How To Install Google Analytics On A WordPress Blog Without Using A Plugin'>How To Install Google Analytics On A WordPress Blog Without Using A Plugin</a></li>
<li><a href='http://wpbloghost.com/blog/wordpress-management-moving-core-files/' rel='bookmark' title='Permanent Link: WordPress Management: Cleaning Up Your Root Folder'>WordPress Management: Cleaning Up Your Root Folder</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>We all know attention spans on the Web are small. Make a potential first time visitor to your site wait more than a few moments for your blog to load and they&#8217;ll click away faster than you can say, &#8220;But wait!&#8221;</p>
<p>Here&#8217;s an incredibly easy trick you can do to reducing that &#8220;but wait&#8221;-time for your blog to load. In most cases, it&#8217;s as easy as copy &amp; paste.</p>
<p>Now who doesn&#8217;t like the copy, paste, and done tutorials? </p>
<p>Let&#8217;s first show you what to do and then for those who are interested, we&#8217;ll talk about what we did (in easy terms).</p>
<h3>Copy This and Put It Here</h3>
<p><strong>Copy</strong></p>
<p style="border-style: dotted; border-width: 1px; border-color: #008e84; margin: 5px 20px 15px 9px;">&lt;?php if (substr_count($_SERVER['HTTP_ACCEPT_ENCODING'], &#8216;<span class="highlight">gzip</span>&#8216;)) ob_start(&#8220;ob_gzhandler&#8221;); else ob_start(); ?&gt;</p>
<p><strong>Paste A (for WordPress users)</strong></p>
<p>For WordPress users, paste the code up at the very top of your header.php file (above the <strong>DOCTYPE</strong> line). If you&#8217;re not sure how to do this, see the video at the end of this tutorial.</p>
<p><img src="http://wpbloghost.com/blog/wp-files-greenblog/../blogimages/2009/09/gzip-where-to-paste-php.jpg" alt="gzip-where-to-paste-php" title="gzip-where-to-paste-php" width="592" height="131" class="aligncenter size-full wp-image-2301" /></p>
<p><strong>Paste B (for static .html pages)</strong></p>
<p>If your website is coded in html and not php, then what you&#8217;ll need to do is copy the code above and paste it up at the very top of each web page you want to compress (above the <strong>DOCTYPE</strong>). </p>
<p>The one change you&#8217;ll need to do here is change the extension of your web pages from .html to .php.</p>
<p>So for example, change: index.html to index.php</p>
<h3>What Did We Do?</h3>
<p>Without going into a bunch of techno talk, we basically instructed, through PHP, that the Web server compress files for transit to your visitors&#8217; Web browser by use of gzip. </p>
<p>I&#8217;m sure you&#8217;ve seen zip files before (myfile.zip). Zip is a compression utility that takes a bunch of data and files and compresses them into one smaller size file. </p>
<p>By using gzip, we compressed your blog&#8217;s data into a smaller file size before sending it over to your visitor&#8217;s Web browser. As a result, your blog loads faster for your visitor.</p>
<p>Simple. Easy. Works.</p>
<h3>How To Test It</h3>
<p>Of course you&#8217;ll want proof that your site is loading quicker. You should notice a difference in load time just by clicking around your blog before and after the line is pasted in. But if you want to see actual data, head over to <a href="http://www.port80software.com/support/p80tools.asp" target="_blank" title="Analysis Tools For Your Website">http://www.port80software.com</a> and type your blog&#8217;s address in the Compression Check box.</p>
<p>Here&#8217;s the results for my blog. I circled the parts that showed my after compression data.</p>
<p><img src="http://wpbloghost.com/blog/wp-files-greenblog/../blogimages/2009/09/compression-snapshot.jpg" alt="compression-snapshot" title="compression-snapshot" width="380" height="327" class="aligncenter size-full wp-image-2319" /></p>
<p>As you can see, my blog loads more than <strong>4 times faster</strong> with the <a href="http://en.wikipedia.org/wiki/Gzip_compression" title="Wikipedia's definition" target="_blank">gzip compression</a> enabled.</p>
<p>Also, the file size transmitted over the Internet and to my visitor&#8217;s browser was reduced from 60,241 bytes to just 12,963 bytes. <strong>That&#8217;s a 47,278 difference in file size!</strong></p>
<h3>WordPress How-To Video</h3>
<p>For those who like videos, here&#8217;s how to copy and paste this command into your WordPress header.php file.</p>
<p><center><embed src="http://blip.tv/play/AYGdozIC" type="application/x-shockwave-flash" width="580" height="490" allowscriptaccess="always" allowfullscreen="true"></embed> </center></p>
<h3>Share It</h3>
<p>This little tip has helped many people decrease how long it takes their sites to load. If you have a moment, please consider sharing it through your social networks like Stumble Upon, Twitter, etc. While you&#8217;re at it, feel free to <a href="http://twitter.com/wpbloghost">follow me on Twitter</a>.</p>


<p>Related posts:<ol><li><a href='http://wpbloghost.com/blog/speeding-up-wordpress/' rel='bookmark' title='Permanent Link: Hammering Down 2 More Ways To Speed Up Your WordPress Blog'>Hammering Down 2 More Ways To Speed Up Your WordPress Blog</a></li>
<li><a href='http://wpbloghost.com/blog/how-to-install-google-analytics-on-a-wordpress-blog-without-using-a-plugin/' rel='bookmark' title='Permanent Link: How To Install Google Analytics On A WordPress Blog Without Using A Plugin'>How To Install Google Analytics On A WordPress Blog Without Using A Plugin</a></li>
<li><a href='http://wpbloghost.com/blog/wordpress-management-moving-core-files/' rel='bookmark' title='Permanent Link: WordPress Management: Cleaning Up Your Root Folder'>WordPress Management: Cleaning Up Your Root Folder</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://wpbloghost.com/blog/gzip-compression/feed/</wfw:commentRss>
		<slash:comments>53</slash:comments>
		</item>
		<item>
		<title>Creating A Blog Supermodel: Professionalism &amp; Production Quality</title>
		<link>http://wpbloghost.com/blog/blog-supermodel-production/</link>
		<comments>http://wpbloghost.com/blog/blog-supermodel-production/#comments</comments>
		<pubDate>Mon, 03 Aug 2009 05:00:48 +0000</pubDate>
		<dc:creator>John Hoff</dc:creator>
				<category><![CDATA[Blog Optimization/SEO]]></category>
		<category><![CDATA[Blog Development]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[Landing Page Optimization]]></category>
		<category><![CDATA[optimization]]></category>

		<guid isPermaLink="false">http://wpbloghost.com/blog/?p=2160</guid>
		<description><![CDATA[If you&#8217;re like me, you want a blog design that looks nice, doesn&#8217;t confuse your visitors, and encourages them to hang around for awhile. Of course if you&#8217;re selling something, it&#8217;s always nice if they become customers. That is after all why many of us start a blog, isn&#8217;t it? To make money or drive [...]


Related posts:<ol><li><a href='http://wpbloghost.com/blog/blogoptimization-post-one/' rel='bookmark' title='Permanent Link: Intro To Creating A Supermodel Blog Design Series'>Intro To Creating A Supermodel Blog Design Series</a></li>
<li><a href='http://wpbloghost.com/blog/landing-page-optimization-jesse-james-is-a-dead-man/' rel='bookmark' title='Permanent Link: Landing Page Optimization: Lesson Learned by Watching Jesse James is a Dead Man'>Landing Page Optimization: Lesson Learned by Watching Jesse James is a Dead Man</a></li>
<li><a href='http://wpbloghost.com/blog/204-ways-people-scan-your-website/' rel='bookmark' title='Permanent Link: 20.4 Ways People Scan Your Website'>20.4 Ways People Scan Your Website</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re like me, you want a blog design that looks nice, doesn&#8217;t confuse your visitors, and encourages them to hang around for awhile. Of course if you&#8217;re selling something, it&#8217;s always nice if they become customers.</p>
<p>That is after all why many of us start a blog, isn&#8217;t it? To make money or drive traffic to our business website?</p>
<p>Today I want to talk about <strong>professionalism</strong> and <strong>production quality</strong> when it comes to designing your blog. Its already been said online and by various gurus that your site visitors will ask themselves these questions immediately when they land on your site, especially if you&#8217;re trying to sell something:</p>
<ul>
<li>What&#8217;s Here?</li>
<li>Why Here?</li>
<li>Why You?</li>
<li>Why Now?</li>
<li>Why This?</li>
<li>So What?</li>
</ul>
<p>If you&#8217;re a blogger, I&#8217;m sure you&#8217;ve also heard that content is king. There are tons of blogs out there dedicated solely to this topic alone. They show you how to create creative and compelling content which ultimately gets your visitor to stick around or purchase something (i.e. convert).</p>
<p>But if you only have 5 seconds or so to convince a new visitor to stay on your site and have a look around, obviously your content won&#8217;t play a big role here. Instead, the visitor will scan your site in an instant and come to a conclusion: <em>&#8220;Should I stay or should I go?&#8221;</em></p>
<p>Hey . . . isn&#8217;t that a song?</p>
<p>Let&#8217;s take a look at some things you can do so that you can communicate in 5 seconds what you&#8217;re all about and hopefully convince your site visitor to stick around and take notice. Remember this: Attention is like trust, you have to earn it.</p>
<p><strong>Things you can do to capture attention and convey a message quickly</strong></p>
<p>The first thing a new site visitor will notice is, well, your site. How does it look? What colors are being used? Am I being yelled at (bright colors, lots of capital letters, etc.)? Does it look like &#8220;my kind of site?&#8221; What&#8217;s that tagline say?</p>
<p>You&#8217;ll notice one of the questions I highlighted above is, &#8220;Is this my kind of site?&#8221; What I&#8217;m referring to here is in reference to your target customers. For example, if your target customers are computer/Internet techs, your site might be better designed to look high tech and possibly a little corporate; however, if your target customer base are low key and non-techie, then a more relaxed and calming site design might be more suitable.</p>
<p><strong>Colors</strong></p>
<p>For corporate colors, go with colors like:</p>
<ul>
<li>dark blue</li>
<li> gray</li>
<li>black and white</li>
<li>dark red, etc.</li>
</ul>
<p>For a more relaxed setting, try shades of:</p>
<ul>
<li>green</li>
<li>soft yellows and oranges</li>
<li>earth tones (brown, cream, etc.)</li>
</ul>
<p><strong>Image Quality &#038; Message</strong></p>
<p>Visitors will also notice immediately the quality of your images. Is that tagline in your header blurry? Make sure if you have text in an image, it comes out clearly and in a font that&#8217;s not hard to read.</p>
<p>Also, if you&#8217;re running banner ads in your sidebar, it would be nice if they had something to do with your niche. Site visitors who are not bloggers might not <em>quickly</em> realize those are advertisements. Instead, those banners convey a quick message to them. If you sell tax auditing services and in your sidebar there are 3 banner ads showcasing images and sites not related to your niche, that subconsciously tells your visitor a message, and it&#8217;s probably not related to finding tax services on your site.</p>
<p>Don&#8217;t confuse your site visitor with mix matches of messages in your images, because as I always say, a confused mind always says, <em>no.</em></p>
<p><strong>Font style and link color</strong></p>
<p>For a while I was a big advocate for changing your link color to something that &#8220;pops&#8221;. I&#8217;m sure you have visited a ton of websites in the past, what color did 90% of those sites use for their link color? Blue, right. I experimented with different link colors and for a while favored red because it really popped out and was not what everyone did.</p>
<p>However, I must admit that time and experience has changed my mind on this. After reviewing my statistics, I found that the different link color really didn&#8217;t matter much. In fact, traditionally red has always been associated with danger or &#8220;Red Alert&#8221;. Therefore, my pick for link color is to simply stick with blue.</p>
<p>For font style, you can never go wrong with Arial, however other styles which seem to be easy on the eyes are Verdana and Tahoma.</p>
<p>As for font size, 12 is pretty standard. I&#8217;d say start there and see how it looks and if it makes sense to go a little bigger, try it. Whatever you do, don&#8217;t make your visitors have to squint to see your text. Black text over a white background is always preferable. If you experiment with anything other than that, be sure to get feedback from your regular site visitors, their input will help you iron out all the small details. Remember, not everyone uses the same screen size and monitor as you.</p>
<p><strong>Convey quick messages with bullet points</strong></p>
<p>Nothing works as quick and easy as bullet points. Knowing that 98% of new visitors to your site are going to first quickly scan your blog, you can use that information to your advantage. While scanning, they want the bullet points of what your site is all about, so give them bullet points.</p>
<p>Bullet points work really well in header images.</p>
<p>For example, our company which provides <a href="http://wpbloghost.com/pages/wordpress-blog-hosting.hmtl/" title="WP Blog Host Hosting for WordPress">Blog Hosting</a> could add 3 quick bullet points in our header image which quickly tells visitors what they need to know:</p>
<ul>
<li>Starting a blog made easy</li>
<li>Get tons of help</li>
<li>Learn the basics of blogging</li>
</ul>
<p>For my tagline, also included in the header, I could use something like: &#8220;You blog. We&#8217;re here to help. It&#8217;s THAT simple.&#8221; Speaking of taglines, they traditionally go below your logo.</p>
<p>So in my header image now, I&#8217;d have the name of my company, a quick tagline, and 3 bullet points highlighting what my blog or website is all about.</p>
<p>Oh wait! Did we just quickly answer the <strong>What&#8217;s Here?</strong>, <strong>Why You?</strong>, and <strong>Why This?</strong> questions I highlighted at the beginning of this article?</p>
<p>In our example header image, we quickly sent our site visitor a message which told them:</p>
<ul>
<li>You can start a blog here.</li>
<li>Starting a blog will be easy.</li>
<li>With our company you will get tons of help.</li>
</ul>
<p><strong>A final tip: Start at the end and work backwards</strong></p>
<p>Often times thinking in reverse works very well in most things relating to business. The same holds true for designing your blog. Start with then end in mind (i.e. what you want your visitors to do) and <em>then</em> build a site around THAT notion.</p>
<p>Everything else you add to your blog which doesn&#8217;t lead the visitor to do what it is you want them to do is just distraction and noise (and less money in your pocket).</p>
<h2>Summary (for those of you that skimmed)</h2>
<p>It&#8217;s ok, I do my fair share of skimming, too <img src='https://wpbloghost.com/blog/wp-files-greenblog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<ul>
<li>Look at your logo, tagline, font, colors, and quality of images. People look from the upper left down to lower right of your blog when scanning. Typically logo goes above the tagline. </li>
<li>Focus your tagline for your audience. If they are newbies, make it sound friendly.</li>
<li>Use quick bullet points to convey a message quickly. 3 to 4 are good, no more than 6. They would be well placed in your header image, if possible.</li>
<li>Be careful sending mixed messages with images on your site. Your banner ads could tell a person scanning your blog a message which has no relation to what you&#8217;re all about.</li>
<li>General site colors: Blue and gray (techie) are good for corporate looking websites, so is red and black and white and black. For a more laid back and non corporate look, try earth tones – browns, soft yellows, greens, soft oranges, etc.</li>
<li>For link color, blue probably works best. Red means danger, error message, etc. </li>
<li>When first designing your blog, think in reverse. What is the end result you want from a visitor? Design your site around that notion, everything else is just noise.</li>
</ul>
<p><strong>Food For Thought</strong></p>
<p>What is the purpose of your blog?</p>
<p>If you&#8217;ve been blogging for awhile, has your blog become cluttered with a bunch of items in your sidebar which you really don&#8217;t need and does nothing for the purpose of your blog?</p>
<p>I know mine has, and I&#8217;m doing something about it as we speak.</p>


<p>Related posts:<ol><li><a href='http://wpbloghost.com/blog/blogoptimization-post-one/' rel='bookmark' title='Permanent Link: Intro To Creating A Supermodel Blog Design Series'>Intro To Creating A Supermodel Blog Design Series</a></li>
<li><a href='http://wpbloghost.com/blog/landing-page-optimization-jesse-james-is-a-dead-man/' rel='bookmark' title='Permanent Link: Landing Page Optimization: Lesson Learned by Watching Jesse James is a Dead Man'>Landing Page Optimization: Lesson Learned by Watching Jesse James is a Dead Man</a></li>
<li><a href='http://wpbloghost.com/blog/204-ways-people-scan-your-website/' rel='bookmark' title='Permanent Link: 20.4 Ways People Scan Your Website'>20.4 Ways People Scan Your Website</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://wpbloghost.com/blog/blog-supermodel-production/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Intro To Creating A Supermodel Blog Design Series</title>
		<link>http://wpbloghost.com/blog/blogoptimization-post-one/</link>
		<comments>http://wpbloghost.com/blog/blogoptimization-post-one/#comments</comments>
		<pubDate>Sun, 19 Jul 2009 15:32:35 +0000</pubDate>
		<dc:creator>John Hoff</dc:creator>
				<category><![CDATA[Blog Optimization/SEO]]></category>
		<category><![CDATA[Blog Development]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[Landing Page Optimization]]></category>
		<category><![CDATA[optimization]]></category>

		<guid isPermaLink="false">http://wpbloghost.com/blog/?p=2053</guid>
		<description><![CDATA[Image Credit: *spoOky* Have you ever wondered why some people make more money from their blog than others do? You might even ask yourself, &#8220;What the heck? It&#8217;s impossible to put more hours into blogging than I do; I sit at my computer all day. What is it she&#8217;s doing that I&#8217;m not?&#8221; The first [...]


Related posts:<ol><li><a href='http://wpbloghost.com/blog/blog-supermodel-production/' rel='bookmark' title='Permanent Link: Creating A Blog Supermodel: Professionalism &amp; Production Quality'>Creating A Blog Supermodel: Professionalism &amp; Production Quality</a></li>
<li><a href='http://wpbloghost.com/blog/landing-page-optimization-jesse-james-is-a-dead-man/' rel='bookmark' title='Permanent Link: Landing Page Optimization: Lesson Learned by Watching Jesse James is a Dead Man'>Landing Page Optimization: Lesson Learned by Watching Jesse James is a Dead Man</a></li>
<li><a href='http://wpbloghost.com/blog/204-ways-people-scan-your-website/' rel='bookmark' title='Permanent Link: 20.4 Ways People Scan Your Website'>20.4 Ways People Scan Your Website</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<table align="right">
<tr>
<td><img src="http://wpbloghost.com/images/blog-supermodel1.jpg" alt="blog-supermodel1" title="blog-supermodel1" width="265" height="198" class="alignnone size-full wp-image-2056" /></td>
</tr>
<tr>
<td align="right">Image Credit: <a target="_blank" href="http://www.flickr.com/photos/spo0ky/154138594/">*spoOky*</a></td>
</tr>
</table>
<p>Have you ever wondered why some people make more money from their blog than others do?</p>
<p>You might even ask yourself, &#8220;What the heck? It&#8217;s <em>impossible</em> to put more hours into blogging than I do; I sit at my computer all day. What is it she&#8217;s doing that I&#8217;m not?&#8221;</p>
<p>The first thing you need to understand is the fact that <strong>blogs suck at making money. Blogs don&#8217;t make money, people and their creative minds do</strong>. In other words, it&#8217;s what you do with your blog that makes the money.</p>
<p>People will tell you content is king, and if that&#8217;s true, then blog design is the engineer that builds the glorious kingdom. Without a kingdom, what would come of a king?</p>
<p>So how do we create a blog design in a way that gets people to click where you want them to click and their eyes to look where you want their eyes to look? That&#8217;s question that cannot be answered in just one blog article. People have written entire books on the subject.</p>
<p>Over the next several weeks, we&#8217;ll discuss some major points I think are mission critical to building a better blog design which will answer the question above. For now, let&#8217;s take a quick look at how I compare building a better blog design with how designers build a supermodel.</p>
<h2>A Supermodel Analogy</h2>
<p>Let&#8217;s compare building a blog with building a supermodel (and yes, they build them). Please excuse my very poor excuse for a flowchart.</p>
<p><img src="http://wpbloghost.com/images/supermodel-compairison.jpg" alt="supermodel-compairison" title="supermodel-compairison" width="618" height="506" class="alignnone size-full wp-image-2068" /></p>
<p>As you can see, there is a certain process to building both a supermodel and building a better blog design. Let&#8217;s take a look at my top 6 better blog design bullet points you can use to build a supermodel blog.</p>
<p><strong>Topics will include (but are not limited to):</strong></p>
<ol>
<li>Professionalism and production quality</li>
<li>Page layout and the use of screen real estate</li>
<li>Navigational architecture</li>
<li>Trust and credibility</li>
<li>The main content area</li>
<li>Calls to action</li>
</ol>
<p>One thing you should come to understand, however, is the fact that we are all too close to our own work. Because we understand our products and offers so well, sometimes it is difficult for us to design our blogs and websites in such a way our target customers will react positively to. So the first thing we should try doing is taking a good look at ourselves and realize what we&#8217;re assuming about our site visitors is probably wrong.</p>
<p>Once you understand that fact, then you can go about designing an effective blog design which your site visitors will react in ways you want them to.</p>
<p>The questions then are: Have you taken a good look at your blog or website lately through the eyes of your target audience? Do you understand that what you&#8217;re assuming about them is probably wrong? What is it you want them to do? Have you made it easy for them to quickly find what they&#8217;re looking for?</p>
<p>For WP Blog Host, we&#8217;ve been testing design changes and you&#8217;ll probably be seeing a new design here soon. Our target customers for <a href="http://www.securepaynet.net/gdshop/hosting/shared.asp?isc=appemail40&#038;ci=1783&#038;prog_id=442543" title="Our shared web hosting plans">web hosting</a> are bloggers; so shouldn&#8217;t our site reflect blogging?</p>
<p>I think so, and I&#8217;ve convinced others.</p>


<p>Related posts:<ol><li><a href='http://wpbloghost.com/blog/blog-supermodel-production/' rel='bookmark' title='Permanent Link: Creating A Blog Supermodel: Professionalism &amp; Production Quality'>Creating A Blog Supermodel: Professionalism &amp; Production Quality</a></li>
<li><a href='http://wpbloghost.com/blog/landing-page-optimization-jesse-james-is-a-dead-man/' rel='bookmark' title='Permanent Link: Landing Page Optimization: Lesson Learned by Watching Jesse James is a Dead Man'>Landing Page Optimization: Lesson Learned by Watching Jesse James is a Dead Man</a></li>
<li><a href='http://wpbloghost.com/blog/204-ways-people-scan-your-website/' rel='bookmark' title='Permanent Link: 20.4 Ways People Scan Your Website'>20.4 Ways People Scan Your Website</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://wpbloghost.com/blog/blogoptimization-post-one/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Landing Page Optimization: Lesson Learned by Watching Jesse James is a Dead Man</title>
		<link>http://wpbloghost.com/blog/landing-page-optimization-jesse-james-is-a-dead-man/</link>
		<comments>http://wpbloghost.com/blog/landing-page-optimization-jesse-james-is-a-dead-man/#comments</comments>
		<pubDate>Fri, 17 Jul 2009 05:00:46 +0000</pubDate>
		<dc:creator>John Hoff</dc:creator>
				<category><![CDATA[Blog Optimization/SEO]]></category>
		<category><![CDATA[Blog Development]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[Landing Page Optimization]]></category>
		<category><![CDATA[optimization]]></category>

		<guid isPermaLink="false">http://wpbloghost.com/blog/?p=1966</guid>
		<description><![CDATA[Ok, I admit it. I like reality TV. A couple years ago when my blog was new, I watched an episode of Kitchen Nightmares (Chef Gordon Ramsay) which inspired me to write a post entitled, A Lesson Learned by Watching Kitchen Nightmares. While watching the show I observed how all though Chef Ramsay is a [...]


Related posts:<ol><li><a href='http://wpbloghost.com/blog/a-lesson-learned-by-watching-kitchen-nightmares/' rel='bookmark' title='Permanent Link: A Lesson Learned by Watching &quot;Kitchen Nightmares&quot;'>A Lesson Learned by Watching &quot;Kitchen Nightmares&quot;</a></li>
<li><a href='http://wpbloghost.com/blog/blog-supermodel-production/' rel='bookmark' title='Permanent Link: Creating A Blog Supermodel: Professionalism &amp; Production Quality'>Creating A Blog Supermodel: Professionalism &amp; Production Quality</a></li>
<li><a href='http://wpbloghost.com/blog/blogoptimization-post-one/' rel='bookmark' title='Permanent Link: Intro To Creating A Supermodel Blog Design Series'>Intro To Creating A Supermodel Blog Design Series</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Ok, I admit it. I like reality TV.</p>
<p>A couple years ago when my blog was new, I watched an episode of Kitchen Nightmares (Chef Gordon Ramsay) which inspired me to write a post entitled, <a href="http://wpbloghost.com/blog/a-lesson-learned-by-watching-kitchen-nightmares/">A Lesson Learned by Watching Kitchen Nightmares</a>. While watching the show I observed how all though Chef Ramsay is a Chef, he&#8217;s also an entrepreneur, and that particular episode inspired an entrepreneurial post out of me.</p>
<p>Two years later and I&#8217;ve done it again.</p>
<p>Landing page optimization has been on my mind a lot lately because I know parts of our site are in need of some tlc.</p>
<p>Back to the topic of this article, this time I was watching an episode of <a href="http://www.spike.com/full-episode/baja-500/32902" title="Spike TV">Jesse James is a Dead Man</a> and what he did to train for the Baja 500 (an off road race). I immediately made a connection in my head with his training exercise and <strong>what you don&#8217;t want your blog visitors to do</strong> when they come to your site.</p>
<p>To train for the Baja 500, Jesse drove a truck through minefield with a computer attached to his head which monitored and tracked his eye movements during the drive.</p>
<p>What? You haven&#8217;t done this before?</p>
<p>After his first run through, the computer showed that Jesse&#8217;s eye movements were somewhat erratic and his eyes jumped from one area of the minefield to another. This told Jesse that he wasn&#8217;t sure where exactly he wanted to go.</p>
<p>After reviewing the footage, Jesse tried the obstacle course again but this time he made sure to focus his eyes on where he wanted to go.</p>
<p>As a result of being more focused on his destination and where he wanted to go (i.e. less erratic eye movements), Jesse ran the obstacle course far better than his first attempt.</p>
<p>You can watch the full episode <a href="http://www.spike.com/full-episode/baja-500/32902" target="_blank">right here</a>. If you want to see the part I was talking about, skip ahead to about 8:30 in the video.</p>
<h2>How this relates to landing page optimization</h2>
<p>In case you haven&#8217;t made the connection already, the way this all fits in together with optimizing a blog&#8217;s landing or sales page is <strong>focus</strong> and <strong>direction</strong>.</p>
<p>What you don&#8217;t want is your site visitor&#8217;s eyes jumping all over the place. You want to guide them and tell them where to look.</p>
<p>By default, blogs suck at converting traffic into sales. There&#8217;s just <a href="http://wpbloghost.com/blog/204-ways-people-scan-your-website/" title="20.4 Ways People Scan Your Website">too much to look at</a> and their eyes will jump all over. Some of those eye-jumping areas include:</p>
<ul>
<li>Your header image</li>
<li>Blog&#8217;s title and tagline</li>
<li>Horizontal menu</li>
<li>Big or blinking graphics (no blinking, please)</li>
<li>Lots of links in your sidebar</li>
</ul>
<h2>The Takeaway</h2>
<p>If part of your goal in blogging is to sell products and/or services, you need to direct your visitors where to go. Remember, the first thing a visitor will do when they arrive on your site is ask themselves, &#8220;What does this person want me to do?&#8221;</p>
<p>If your visitor is a blogger, there&#8217;s going to be a lot of assuming going on in their heads. They&#8217;re going to assume what you want them to do is read your blog article and are probably going to skip everything on your site and go straight to your content.</p>
<p>If your visitor is not a blogger, they&#8217;re probably going to see something on your site that &#8220;pops&#8221;, like a nice big pretty image. Simply writing a blog article about your product and then linking to the article isn&#8217;t going to do it. You need to link to a product sales page with very little, if none, distractions.</p>
<p>You probably don&#8217;t even want a menu system. In this way, their eyes won&#8217;t jump all around with many things to see and wonder about. They&#8217;ll only have one place to look, where your product and description is.</p>
<p>In fact, make them have to click the back button to get off your page while you&#8217;re at it.</p>


<p>Related posts:<ol><li><a href='http://wpbloghost.com/blog/a-lesson-learned-by-watching-kitchen-nightmares/' rel='bookmark' title='Permanent Link: A Lesson Learned by Watching &quot;Kitchen Nightmares&quot;'>A Lesson Learned by Watching &quot;Kitchen Nightmares&quot;</a></li>
<li><a href='http://wpbloghost.com/blog/blog-supermodel-production/' rel='bookmark' title='Permanent Link: Creating A Blog Supermodel: Professionalism &amp; Production Quality'>Creating A Blog Supermodel: Professionalism &amp; Production Quality</a></li>
<li><a href='http://wpbloghost.com/blog/blogoptimization-post-one/' rel='bookmark' title='Permanent Link: Intro To Creating A Supermodel Blog Design Series'>Intro To Creating A Supermodel Blog Design Series</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://wpbloghost.com/blog/landing-page-optimization-jesse-james-is-a-dead-man/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How To Not Track Your Own Visits In Google Analytics &#8211; Setting Up A Filter</title>
		<link>http://wpbloghost.com/blog/how-to-not-track-your-own-visits-in-google-analytics-setting-up-a-filter/</link>
		<comments>http://wpbloghost.com/blog/how-to-not-track-your-own-visits-in-google-analytics-setting-up-a-filter/#comments</comments>
		<pubDate>Mon, 20 Apr 2009 05:50:38 +0000</pubDate>
		<dc:creator>John Hoff</dc:creator>
				<category><![CDATA[Blogging Video Articles]]></category>
		<category><![CDATA[analytics]]></category>
		<category><![CDATA[Blog Development]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[optimization]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[videos]]></category>
		<category><![CDATA[web tools]]></category>

		<guid isPermaLink="false">http://wpbloghost.com/blog/?p=1439</guid>
		<description><![CDATA[Anyone whose been blogging for longer than a couple weeks will of at least heard of Google Analytics. Problem is, it&#8217;s so damn difficult to try and figure out when you&#8217;re just starting out because there&#8217;s SO much you can do with it. One of my first frustrations with it was the fact that I [...]


Related posts:<ol><li><a href='http://wpbloghost.com/blog/how-to-install-google-analytics-on-a-wordpress-blog-without-using-a-plugin/' rel='bookmark' title='Permanent Link: How To Install Google Analytics On A WordPress Blog Without Using A Plugin'>How To Install Google Analytics On A WordPress Blog Without Using A Plugin</a></li>
<li><a href='http://wpbloghost.com/blog/google-keyword-toolbox/' rel='bookmark' title='Permanent Link: Google Keyword Tool  +  Top 50 Google Tools Bloggers Can Use'>Google Keyword Tool  +  Top 50 Google Tools Bloggers Can Use</a></li>
<li><a href='http://wpbloghost.com/blog/videos-to-help-craft-a-better-website-attract-attention/' rel='bookmark' title='Permanent Link: Videos To Help Craft A Better Website &amp; Attract Attention'>Videos To Help Craft A Better Website &amp; Attract Attention</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Anyone whose been blogging for longer than a couple weeks will of at least heard of <a href="http://www.google.com/analytics/" title="The most popular analytics program">Google Analytics</a>.</p>
<p>Problem is, it&#8217;s so damn difficult to try and figure out when you&#8217;re just starting out because there&#8217;s SO much you can do with it. One of my first frustrations with it was the fact that I couldn&#8217;t determine which clicks and visits were my own?</p>
<p>Obviously, you&#8217;re more interested in who is visiting your site, where they came from, and what they did to find you. You&#8217;re <em>not</em> interested in how you found your own website.</p>
<p>So here&#8217;s a little video I put together which hopefully you&#8217;ll find useful. It will show you how to set up a filter on Google Analytics so you don&#8217;t track your own movements and visits to your own website.</p>
<p>If you haven&#8217;t already set up Google Analytics to run on your blog, here&#8217;s how: <a href="http://wpbloghost.com/blog/how-to-install-google-analytics-on-a-wordpress-blog-without-using-a-plugin/" title="Video tutorial included.">How To Install Google Analytics On A WordPress Blog Without Using A Plugin</a></p>
<h2>How To Set Up A Google Analytics Filter</h2>
<p><center><object width="445" height="364"><param name="movie" value="http://www.youtube.com/v/8JAuTE8P0XI&#038;hl=en&#038;fs=1&#038;color1=0x3a3a3a&#038;color2=0x999999&#038;border=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/8JAuTE8P0XI&#038;hl=en&#038;fs=1&#038;color1=0x3a3a3a&#038;color2=0x999999&#038;border=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="445" height="364"></embed></object></center></p>


<p>Related posts:<ol><li><a href='http://wpbloghost.com/blog/how-to-install-google-analytics-on-a-wordpress-blog-without-using-a-plugin/' rel='bookmark' title='Permanent Link: How To Install Google Analytics On A WordPress Blog Without Using A Plugin'>How To Install Google Analytics On A WordPress Blog Without Using A Plugin</a></li>
<li><a href='http://wpbloghost.com/blog/google-keyword-toolbox/' rel='bookmark' title='Permanent Link: Google Keyword Tool  +  Top 50 Google Tools Bloggers Can Use'>Google Keyword Tool  +  Top 50 Google Tools Bloggers Can Use</a></li>
<li><a href='http://wpbloghost.com/blog/videos-to-help-craft-a-better-website-attract-attention/' rel='bookmark' title='Permanent Link: Videos To Help Craft A Better Website &amp; Attract Attention'>Videos To Help Craft A Better Website &amp; Attract Attention</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://wpbloghost.com/blog/how-to-not-track-your-own-visits-in-google-analytics-setting-up-a-filter/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Understanding The Psychology Of Your Website Visitors</title>
		<link>http://wpbloghost.com/blog/understanding-the-psychology-of-your-website-visitors/</link>
		<comments>http://wpbloghost.com/blog/understanding-the-psychology-of-your-website-visitors/#comments</comments>
		<pubDate>Mon, 01 Dec 2008 10:19:55 +0000</pubDate>
		<dc:creator>John Hoff</dc:creator>
				<category><![CDATA[Blog Optimization/SEO]]></category>
		<category><![CDATA[Blog Development]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[optimization]]></category>

		<guid isPermaLink="false">http://wpbloghost.com/blog/?p=298</guid>
		<description><![CDATA[If only we could read minds. Courtesy Paramount Pictures The other day my wife emailed me a link to a &#8220;What&#8217;s Your Personality Type?&#8221; quiz (PersonalityType.com). At first I wasn&#8217;t too interested but after hearing the results from her test I was intrigued and headed over to the site to take the quiz. It asked [...]


Related posts:<ol><li><a href='http://wpbloghost.com/blog/is-your-website-web-20-or-corporate/' rel='bookmark' title='Permanent Link: Is Your Website Web 2.0 or Corporate?'>Is Your Website Web 2.0 or Corporate?</a></li>
<li><a href='http://wpbloghost.com/blog/using-photos-on-your-website/' rel='bookmark' title='Permanent Link: Using Photos On Your Website'>Using Photos On Your Website</a></li>
<li><a href='http://wpbloghost.com/blog/videos-to-help-craft-a-better-website-attract-attention/' rel='bookmark' title='Permanent Link: Videos To Help Craft A Better Website &amp; Attract Attention'>Videos To Help Craft A Better Website &amp; Attract Attention</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<table border="0" align="right">
<tbody>
<tr>
<td style="text-align: center;"><img src="http://wpbloghost.com/images/blog_articles/images/mindmeld.jpg" alt="Spock's Mindmeld" /></td>
</tr>
<tr>
<td align="center"><em>If only we could read minds.</em><br />
Courtesy Paramount Pictures</td>
</tr>
</tbody>
</table>
<p>The other day my wife emailed me a link to a &#8220;What&#8217;s Your Personality Type?&#8221; quiz (<a title="Personality Quiz" href="http://www.personalitytype.com/prequiz.aspx" target="_blank">PersonalityType.com</a>).</p>
<p>At first I wasn&#8217;t too interested but after hearing the results from her test I was intrigued  and headed over to the site to take the quiz. It asked me a few questions about what type of person I am, such as do I often say whatever comes to my mind or do I hold things back? It also asked me questions about how organized I am and orderly I like my universe; I prefer orderly, however, with 2 young children running around all day . . . you get the picture <img src='https://wpbloghost.com/blog/wp-files-greenblog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>So you&#8217;re probably curious as to what personality type I am, aren&#8217;t you?</p>
<p>I was awarded with the <a title="What's This Mean?" href="#INTJ">INTJ</a> personality type. <em>&#8220;Yes thank you, I accept this award and I&#8217;d like to thank my mother, father, beautiful wife . . .&#8221;</em></p>
<p>Ok seriously though, here&#8217;s what that means and how it all ties into  understanding the psychology of your website visitors.</p>
<h2>Where This Test Came From</h2>
<p>After doing a little research, I found that the test PersonalityType.com puts you through is the  <a title="WikiPedia Definition" href="http://en.wikipedia.org/wiki/Myers-Briggs_Type_Indicator" target="_blank">Myers-Briggs Type Indicator (MBTI)</a>.</p>
<p>In short, it is a test to classify a person&#8217;s personality type which might aid in helping you figure out how you might act in a given situation as well as provide people of different types  as a means to understand one another.</p>
<p>The box below shows the comparisons you are asked and classified into. For example, are you an Extraversion or Introversion? Do you gather information via Sensory or Intuition? etc.</p>
<table style="text-align: center; width: 50%;" border="1" align="center">
<tbody>
<tr>
<td colspan="2"><strong>4 Pairs Of Preferences</strong></td>
</tr>
<tr>
<td><strong>E</strong>xtraversion</td>
<td><strong>I</strong>ntroversion</td>
</tr>
<tr>
<td><strong>S</strong>ensing</td>
<td>i<strong>N</strong>tuition</td>
</tr>
<tr>
<td><strong>T</strong>hinking</td>
<td><strong>F</strong>eeling</td>
</tr>
<tr>
<td><strong>J</strong>udging</td>
<td><strong>P</strong>erceiving</td>
</tr>
</tbody>
</table>
<p>I don&#8217;t think the test on PersonalityType.com gives you an answer key as to what  your combination classifies you as, however, here is what I&#8217;ve discovered:</p>
<table border="0" cellspacing="6" width="90%" align="center">
<tbody>
<tr>
<td><a name="INTJ">INTJ = Mastermind / Entailing</a></td>
<td>ENFJ = Teacher / Education</td>
</tr>
<tr>
<td>INFJ = Counselor / Guilding</td>
<td>ENFP = Champion / Motivating</td>
</tr>
<tr>
<td>INFP = Healer / Conciliating</td>
<td>ENTJ = Fieldmarshal / Mobilizing</td>
</tr>
<tr>
<td>ENTP = Inventor / Devising</td>
<td>INTP = Architect / Designing</td>
</tr>
<tr>
<td>ESTJ = Supervisor / Enforcing</td>
<td>ISTJ = Inspector / Certifying</td>
</tr>
<tr>
<td>ESFJ = Provider / Supplying</td>
<td>ISFJ = Protector / Securing</td>
</tr>
<tr>
<td>ESTP = Promoter / Persuading</td>
<td>ISTP = Crafter / Instrumenting</td>
</tr>
<tr>
<td>ESFP = Performer / Demonstrating</td>
<td>ISFP = Composer / Synthesizing</td>
</tr>
</tbody>
</table>
<h2>How This Ties Into Web Design</h2>
<p>After taking the test I made a connection between how I craft everything on my  website for my target audience and how this tool helps me to better understand  them<em>.</em></p>
<p>As a webmaster, web designer, copywriter, entrepreneur, marketer, etc., part of being successful is getting into the heads of your target customers and understanding how they will respond to certain pieces of text, ads, banners, and so on that you create.</p>
<p>Inevitably, it is somewhat of a lost cause as you can never really get into the heads of your  potential customers. However, with tests like the Myers-Briggs Type Indicator and  <a title="WikiPedia Definition" href="http://en.wikipedia.org/wiki/Keirsey_Temperament_Sorter" target="_blank">Keirsey Temperament Sorter</a>, we can work off something.</p>
<p>As an example, let&#8217;s say you&#8217;ve discovered that your primary website visitors are ENFJs. You could then find out behavioral patterns they  exhibit and tailor your offer to satisfy their needs &#8211; <em>oh what&#8217;s that I&#8217;m saying again . . . you need to solve problems to succeed in business</em> <img src='https://wpbloghost.com/blog/wp-files-greenblog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>So the question is, what type of people do you think your target audience is? In all honesty, unless you&#8217;ve put a lot of money into polling and personal interaction statistics, it&#8217;s probably not who you think they are.</p>


<p>Related posts:<ol><li><a href='http://wpbloghost.com/blog/is-your-website-web-20-or-corporate/' rel='bookmark' title='Permanent Link: Is Your Website Web 2.0 or Corporate?'>Is Your Website Web 2.0 or Corporate?</a></li>
<li><a href='http://wpbloghost.com/blog/using-photos-on-your-website/' rel='bookmark' title='Permanent Link: Using Photos On Your Website'>Using Photos On Your Website</a></li>
<li><a href='http://wpbloghost.com/blog/videos-to-help-craft-a-better-website-attract-attention/' rel='bookmark' title='Permanent Link: Videos To Help Craft A Better Website &amp; Attract Attention'>Videos To Help Craft A Better Website &amp; Attract Attention</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://wpbloghost.com/blog/understanding-the-psychology-of-your-website-visitors/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Videos To Help Craft A Better Website &amp; Attract Attention</title>
		<link>http://wpbloghost.com/blog/videos-to-help-craft-a-better-website-attract-attention/</link>
		<comments>http://wpbloghost.com/blog/videos-to-help-craft-a-better-website-attract-attention/#comments</comments>
		<pubDate>Mon, 21 Jul 2008 09:00:49 +0000</pubDate>
		<dc:creator>John Hoff</dc:creator>
				<category><![CDATA[Blogging Video Articles]]></category>
		<category><![CDATA[Blog Development]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[optimization]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[videos]]></category>

		<guid isPermaLink="false">http://wpbloghost.com/blog/?p=92</guid>
		<description><![CDATA[In today&#8217;s world, having a website is one of the most powerful marketing tools entrepreneurs can have for their businesses and it&#8217;s their responsibility to make sure people can find it and understand its message. Craft a bad, unorganized website and your potential customers will no longer be potential. My last post 20.4 Ways People [...]


Related posts:<ol><li><a href='http://wpbloghost.com/blog/using-photos-on-your-website/' rel='bookmark' title='Permanent Link: Using Photos On Your Website'>Using Photos On Your Website</a></li>
<li><a href='http://wpbloghost.com/blog/the-video-boss/' rel='bookmark' title='Permanent Link: Fatten Up Your Wallet by Using Online Videos'>Fatten Up Your Wallet by Using Online Videos</a></li>
<li><a href='http://wpbloghost.com/blog/204-ways-people-scan-your-website/' rel='bookmark' title='Permanent Link: 20.4 Ways People Scan Your Website'>20.4 Ways People Scan Your Website</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>In today&#8217;s world, having a website is one of the most powerful marketing tools entrepreneurs can have for their businesses and it&#8217;s their responsibility to make sure people can find it and understand its message.</p>
<p>Craft a bad, unorganized website and your potential customers will no longer be potential.</p>
<p>My last post <a href="http://wpbloghost.com/blog/204-ways-people-scan-your-website">20.4 Ways People Scan Your Website</a> showed us how people scan your website and where their eyes naturally are drawn to. Today I&#8217;d like to share some videos which can help us learn to design better websites and attract more clicks/sales.</p>
<p><!-- 1st Video --></p>
<h2>Attractive Headlines</h2>
<p>Excellent video on the importance of <a href="http://www.copyblogger.com/magnetic-headlines/" target="_blank">writing good headlines</a>. Think about how important good headlines are for magazines like Cosmopolitan, Maxim, Enquirer, etc. Headlines are important for your business in press releases and getting people to click through your blog.</p>
<p><span style="font-size: x-small;"><br />
Headlines, by Cory from <a href="http://www.boingboing.net/" target="_blank">Boing Boing</a><br />
Run Time: 6:03</span></p>
<p style="text-align: center;"><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/w4S9wjuJPk8&#038;rel=0&#038;color1=0xd6d6d6&#038;color2=0xf0f0f0&#038;border=0"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/w4S9wjuJPk8&#038;rel=0&#038;color1=0xd6d6d6&#038;color2=0xf0f0f0&#038;border=0" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
<p><!-- End 1st Video --></p>
<table style="height: 15px;" border="0">
<tbody>
<tr>
<td></td>
</tr>
</tbody>
</table>
<p><!-- 2nd Video --></p>
<h2>Getting Incoming Links</h2>
<p>This video shows a few ways how to obtain incoming links to your website. One such method is the link exchange method which as he points out can be a bit time consuming. However, it can be an effective tool to get your site ranked higher in search engines.</p>
<p>He also points out a useful tool that not many people know about. If you own a website and want to get an idea of what websites are out there linking to you, type <strong>link: <em>your_website.com</em></strong> in the search box of Google, Yahoo!, or MSN.</p>
<p><span style="font-size: x-small;"><br />
Author: <a href="http://www.michaelstrafficvideos.com/" target="_blank">Michael Cheney</a><br />
Run Time: 9:47</span></p>
<p style="text-align: center;"><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/0RfzDSKAE5M&#038;rel=0&#038;color1=0xd6d6d6&#038;color2=0xf0f0f0&#038;border=0"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/0RfzDSKAE5M&#038;rel=0&#038;color1=0xd6d6d6&#038;color2=0xf0f0f0&#038;border=0" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
<p><!-- End 2nd Video --></p>
<table style="height: 15px;" border="0">
<tbody>
<tr>
<td></td>
</tr>
</tbody>
</table>
<p><!-- Begin thrid video --></p>
<p><!-- End Third Video --></p>
<p><!-- 4th Video --></p>
<h2>Site Makeover</h2>
<p>This is a very important topic that some <em>Search Engine Marketers</em> aren&#8217;t well trained on. True you want your website to be optimized so Google or Yahoo! can rank it high in their indexes but you also don&#8217;t want to ignore the <a href="http://menwithpens.ca/index.php?s=design+for+humans">human element</a>.</p>
<p>Also, just like writing captivating headlines helps persuade site visitors to click on that particular topic, so too do you need to actually <em>tell</em> your visitors/customers what to do (something not mentioned in this video). For example, instead of creating a link or button that says &#8220;Sign Up,&#8221; create one that gives the call to action like, &#8220;Subscribe Now!&#8221; Or maybe instead of a &#8220;$50 off special&#8221; image, your image says &#8220;Save $50 by Purchasing Now!&#8221;</p>
<p>The following video illustrates how you should really examine your website and see if you might be confusing people and/or telling them exactly what it is you want them to do.</p>
<p><!-- Begin Edit --></p>
<p><span style="font-size: x-small;"><br />
Site Makeover &#8211; Generating Ecommerce Sales, by <a href="http://www.mindvalleylabs.com/" target="_blank">www.mindvalleylabs.com</a><br />
Run Time: 5:24</span></p>
<p style="text-align: center;"><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/MyaSjav_ZOU&#038;rel=1"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/MyaSjav_ZOU&#038;rel=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
<p><!-- End 4th Video --></p>
<table style="height: 15px;" border="0">
<tbody>
<tr>
<td></td>
</tr>
</tbody>
</table>
<p><!-- 5th Video --></p>
<h2>Site Makeover 2</h2>
<p>Very good idea on how you could look up typical keywords people use to get to your product and then add those words in a menu link on the side of your page, maybe a more information section<br />
or something.</p>
<p><!-- Begin Edit --></p>
<p><span style="font-size: x-small;"><br />
Boosting Sales for a Catalogue Site, by <a href="http://www.mindvalleylabs.com/" target="_blank">www.mindvalleylabs.com</a><br />
Run Time: 4:49</span></p>
<p style="text-align: center;"><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/Huw2ZDj2TFw&#038;rel=1"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/Huw2ZDj2TFw&#038;rel=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
<p><!-- End 5th Video --></p>
<table style="height: 15px;" border="0">
<tbody>
<tr>
<td></td>
</tr>
</tbody>
</table>
<p><!-- 6th Video --></p>
<h2>Site Makeover 3</h2>
<p>Some thoughts on designing your blog to help people stay connected with your blog.</p>
<p><!-- Begin Edit --></p>
<p><span style="font-size: x-small;"><br />
Site Makeover &#8211; Getting Repeat Traffic to Your Blog, by <a href="http://www.mindvalleylabs.com/" target="_blank">www.mindvalleylabs.com</a><br />
Run Time: 3:55</span></p>
<p style="text-align: center;"><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/c5Qxgnc3q0Y&#038;rel=1"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/c5Qxgnc3q0Y&#038;rel=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
<p><!-- End 6th Video --></p>
<table style="height: 15px;" border="0">
<tbody>
<tr>
<td></td>
</tr>
</tbody>
</table>
<p><!-- End 7th Video --></p>
<h2>Site Makeover 4</h2>
<p><span style="font-size: x-small;">Site Makeover &#8211; Getting Users to Click, by <a href="http://www.mindvalleylabs.com/" target="_blank">www.mindvalleylabs.com</a><br />
Run Time: 3:01</span></p>
<p style="text-align: center;"><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/g_eJYUR4rl4&#038;rel=1"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/g_eJYUR4rl4&#038;rel=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
<p><!-- End 7th Video --></p>
<table style="height: 15px;" border="0">
<tbody>
<tr>
<td></td>
</tr>
</tbody>
</table>
<p><!-- End 8th Video --></p>
<h2>Optimizing WordPress for Search Engines</h2>
<p><span style="font-size: x-small;">Make Your WordPress Blog Search Engine Friendly, by <a href="http://www.wolf-howl.com/" target="_blank">Michael Gray</a><br />
Run Time: 4:41</span></p>
<p style="text-align: center;"><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/BiCn6y6JU8o&#038;rel=1"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/BiCn6y6JU8o&#038;rel=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
<p><!-- End 8th Video --></p>


<p>Related posts:<ol><li><a href='http://wpbloghost.com/blog/using-photos-on-your-website/' rel='bookmark' title='Permanent Link: Using Photos On Your Website'>Using Photos On Your Website</a></li>
<li><a href='http://wpbloghost.com/blog/the-video-boss/' rel='bookmark' title='Permanent Link: Fatten Up Your Wallet by Using Online Videos'>Fatten Up Your Wallet by Using Online Videos</a></li>
<li><a href='http://wpbloghost.com/blog/204-ways-people-scan-your-website/' rel='bookmark' title='Permanent Link: 20.4 Ways People Scan Your Website'>20.4 Ways People Scan Your Website</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://wpbloghost.com/blog/videos-to-help-craft-a-better-website-attract-attention/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Using Photos On Your Website</title>
		<link>http://wpbloghost.com/blog/using-photos-on-your-website/</link>
		<comments>http://wpbloghost.com/blog/using-photos-on-your-website/#comments</comments>
		<pubDate>Fri, 13 Jun 2008 10:00:13 +0000</pubDate>
		<dc:creator>John Hoff</dc:creator>
				<category><![CDATA[Blog Optimization/SEO]]></category>
		<category><![CDATA[Blog Development]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[optimization]]></category>

		<guid isPermaLink="false">http://wpbloghost.com/blog/?p=72</guid>
		<description><![CDATA[Image by carf Photos on your website are a great way to convey a message or tell an instant story to your website&#8217;s visitor. These photos are part of your sales tools. Of course if you have products you&#8217;re selling, you should include pictures. But I&#8217;m talking about pictures that tell a story to your [...]


Related posts:<ol><li><a href='http://wpbloghost.com/blog/204-ways-people-scan-your-website/' rel='bookmark' title='Permanent Link: 20.4 Ways People Scan Your Website'>20.4 Ways People Scan Your Website</a></li>
<li><a href='http://wpbloghost.com/blog/understanding-the-psychology-of-your-website-visitors/' rel='bookmark' title='Permanent Link: Understanding The Psychology Of Your Website Visitors'>Understanding The Psychology Of Your Website Visitors</a></li>
<li><a href='http://wpbloghost.com/blog/is-your-website-web-20-or-corporate/' rel='bookmark' title='Permanent Link: Is Your Website Web 2.0 or Corporate?'>Is Your Website Web 2.0 or Corporate?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<table border="0" align="right">
<tbody>
<tr>
<td style="text-align: center;"><img src="http://wpbloghost.com/images/blog_articles/images/child.jpg" alt="website photos" /></td>
</tr>
<tr>
<td>Image by <a onclick="javascript:pageTracker._trackPageview ('/outbound/www.flickr.com');" href="http://www.flickr.com/photos/beija-flor/415525246/" target="_blank">carf</a></td>
</tr>
</tbody>
</table>
<p>Photos on your website are a great way to convey a message or tell an instant story to your website&#8217;s visitor.</p>
<p>These photos are part of your sales tools.</p>
<p>Of course if you have products you&#8217;re selling, you should include pictures. But I&#8217;m talking about pictures that tell a story to your visitor. The ones that spark emotional responses.</p>
<p>Be sure, however, the picture will convey the response you want your visitor to have. A poorly lit, slightly out of focus, or too busy photo may give your visitor a confused feeling. I have a saying which if you follow my blog, you&#8217;ll probably see quite often: <em>a confused mind always says no.</em></p>
<h2>Pictures Of Faces</h2>
<p>One of the most powerful photographs you can use to tell a story are pictures of faces. Perhaps it&#8217;s because we can relate to people and can read their expression and reminisce about times we&#8217;ve had that face.</p>
<p>Close ups of facial shots are better than ones people have to pull up their glasses, lean toward the screen, and squint to see.</p>
<p>Getting your visitor to relate to content and images on your website is a great way to gain a little trust from your visitor. And when your customers trust you, they will buy &#8211; even if you don&#8217;t offer the best deal in town.</p>
<h2>Pictures Of Product Use</h2>
<p>Another powerful image you can convey to your website visitor is the use of showing a person using your product in a way that makes their lives a little easier. If you&#8217;ve done your marketing right, you&#8217;ve attracted a person who actually needs your product or service. So show them how your product makes the person in the photograph&#8217;s life a little easier.</p>
<p>Your site&#8217;s visitor should then relate in some way and move themselves one step closer to purchasing from you.</p>
<h2>Things To Remember</h2>
<p><strong>Number of pictures</strong></p>
<p>Be careful how many pictures you use on any give web page. Pictures take time to download and can slow up load time of your website. As a general rule, if your website takes longer than 8 seconds to load, many people will click away.</p>
<p>Also, too many pictures that aren&#8217;t product-related can cause a distraction and in turn hurt your chances for a sale. Pictures should enhance your content and not the other way around (unless your site is about art or pictures or something of that nature).</p>
<p>Content is king. Pictures are not.</p>
<p><strong>Files Sizes</strong></p>
<p>Keep your picture file sizes to around 100k or less. If you must show large pictures for some reason, then create a smaller version of the picture and make it clickable to the enlarged version for people who are interested to see.</p>
<p><strong>More Tips</strong></p>
<ul>
<li>Remember print photos don&#8217;t always work as well on websites as they do shown in person.</li>
<li>Use programs like Fireworks and Photoshop to resize photos and optimize them for quicker load times.</li>
<li>Sometimes it&#8217;s ok to tell your reader what you want them to read into your photo by adding a caption to it.</li>
<li>If you place a photo on a web page that people are likely to print out, make sure the photo looks decent in a black and white print.</li>
<li>Crop out distractions in photos that take away from the message you&#8217;re trying to tell.</li>
</ul>
<p>Do you have any tips to add to this?</p>
<h2>Finding Photos To Use On The Web</h2>
<p>Here are a few places you can find photos to use on your website:</p>
<ul>
<li><a href="http://www.gettyimages.com/Creative/RoyaltyFree.aspx">Getty Images</a></li>
<li><a href="http://www.istockphoto.com/index.php">iStockphoto</a></li>
<li><a href="http://www.dreamstime.com/">dreamstime</a></li>
<li><a href="http://www.flickr.com/search/advanced/">Flickr</a> &#8211; Be sure to choose &#8220;Only search within Creative Commons-licensed content.&#8221;</li>
<li><a href="http://images.google.com/">Google Images</a></li>
<li><a href="http://images.search.yahoo.com/">Yahoo Images</a></li>
</ul>
<p>Skellie wrote an excellent article entitled  <a href="http://www.skelliewag.org/a-complete-guide-to-finding-and-using-incredible-flickr-images-162.htm">A Complete Guide to Finding and Using Incredible Flickr Images</a> which you might also find useful.</p>
<p>So here&#8217;s a question for you: If you put photos on your website regularly, how and where do you find them?</p>


<p>Related posts:<ol><li><a href='http://wpbloghost.com/blog/204-ways-people-scan-your-website/' rel='bookmark' title='Permanent Link: 20.4 Ways People Scan Your Website'>20.4 Ways People Scan Your Website</a></li>
<li><a href='http://wpbloghost.com/blog/understanding-the-psychology-of-your-website-visitors/' rel='bookmark' title='Permanent Link: Understanding The Psychology Of Your Website Visitors'>Understanding The Psychology Of Your Website Visitors</a></li>
<li><a href='http://wpbloghost.com/blog/is-your-website-web-20-or-corporate/' rel='bookmark' title='Permanent Link: Is Your Website Web 2.0 or Corporate?'>Is Your Website Web 2.0 or Corporate?</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://wpbloghost.com/blog/using-photos-on-your-website/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Is Your Website Web 2.0 or Corporate?</title>
		<link>http://wpbloghost.com/blog/is-your-website-web-20-or-corporate/</link>
		<comments>http://wpbloghost.com/blog/is-your-website-web-20-or-corporate/#comments</comments>
		<pubDate>Tue, 01 Apr 2008 16:42:33 +0000</pubDate>
		<dc:creator>John Hoff</dc:creator>
				<category><![CDATA[Blog Optimization/SEO]]></category>
		<category><![CDATA[Blog Development]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[Entrepreneurial]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[optimization]]></category>

		<guid isPermaLink="false">http://wpbloghost.com/blog/is-your-website-web-20-or-corporate/</guid>
		<description><![CDATA[Can you guess what I think of corporate websites from this photo? Image by Mister Wind-Up Bird A friend of mine, James Chartrand of Men with Pens, asked me a few days ago, “Why is your site/hosting different from everyone else&#8217;s beyond the “we care” mentality?” He asked this in reply to me mentioning how [...]


Related posts:<ol><li><a href='http://wpbloghost.com/blog/understanding-the-psychology-of-your-website-visitors/' rel='bookmark' title='Permanent Link: Understanding The Psychology Of Your Website Visitors'>Understanding The Psychology Of Your Website Visitors</a></li>
<li><a href='http://wpbloghost.com/blog/using-photos-on-your-website/' rel='bookmark' title='Permanent Link: Using Photos On Your Website'>Using Photos On Your Website</a></li>
<li><a href='http://wpbloghost.com/blog/204-ways-people-scan-your-website/' rel='bookmark' title='Permanent Link: 20.4 Ways People Scan Your Website'>20.4 Ways People Scan Your Website</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<table align="right" height="270" width="202">
<tr>
<td><img src="http://wpbloghost.com/images/blog_articles/images/snow_road.jpg" align="right" /></td>
</tr>
<tr>
<td><em>Can you guess what I think of corporate websites from this photo?</em> <center>Image by <a href="http://www.flickr.com/photos/misterwindupbird/79161152/" target="_blank">Mister Wind-Up Bird</a></center></td>
</tr>
</table>
<p>A friend of mine, James Chartrand of <a href="http://www.menwithpens.ca/">Men with Pens</a>, asked me a few days ago, “Why is your site/hosting different from everyone else&#8217;s beyond the “<em>we care”</em> mentality?”</p>
<p>He asked this in reply to me mentioning how I wanted WP Blog Host to be different. I wanted it to play by different rules than all the other hosting companies out there.</p>
<p>I sat back in my leather-cushioned chair, twirled my pen in hand, and thought for a moment about his question. It was harder to answer than I thought.</p>
<p>As I always do to gain some insight, I thought in reverse. How are we the same as everyone else? We offer <a href="http://wpbloghost.com/pages/wordpress-blog-hosting.html/">3 hosting plans</a>, which is typical, along with virtual and dedicated servers. We include free scripts (programs like osCommerce and WordPress), just as many companies do. <a href="http://wpbloghost.com/wordpress-hosting/domain-names/">Domains</a>, FTP, SSL, tech support, etc.</p>
<p>Pretty typical stuff for a web host.</p>
<p>Then I took myself back to when I wrote our <a href="http://wpbloghost.com/blog/how-to-write-a-business-plan/">business plan</a>. During the examining of my competition part of the plan, I remember being frustrated by pretty much all of my competition. Some of those frustrations were:</p>
<ul type="disc">
<li>Their websites all basically looked the same.</li>
<li>Their “Marketing” links were a joke.</li>
<li>I felt like their websites were one big ad with strange people staring at me.</li>
<li>I found no real value in their websites. They’d sell you on hosting and tell you “Good luck, we’re here if you encounter any technical problems with your web hosting account.&#8221;</li>
</ul>
<p>The problem was they were <strong><em>all corporate</em></strong>.</p>
<p>To use James’ words, “Corporate websites are <em>boring</em>.” It’s like they were all spit out of a processing plant that created useless and boring websites.</p>
<p>Yes, that’s a key part to how we are different. I tried to make WP Blog Host, <em><strong>not boring</strong>. </em>But that still wasn’t my answer; part of it, yes – but something was still missing. Then it finally hit me like a snowball to the face first thing in the morning.</p>
<p>I pushed off from my desk making my chair roll back two feet while I viciously pointed at my computer screen and said, <strong><em>“There! That’s how we&#8217;re different. That’s what it is. That’s our brand!”</em></strong></p>
<p>What was I pointing at, you ask?</p>
<p>It was an interview I read over at <a href="http://www.retireat21.com/blog/interview-with-aaron-wall-of-seobookcom/" target="_blank">Retire @ 21</a>. Michael interviewed probably the most knowledgeable search engine optimization guy that has ever lived, <a href="http://www.seobook.com/" target="_blank">Aaron Wall</a>.</p>
<p>When asked what the best advice Aaron has ever been given, his response was:</p>
<blockquote>
<p>I think the best brands, the best sites have a large portion of their founders personality in them. Never be afraid to be yourself, after all there are 1/2 billion people on the www, not all of them have to agree with you. Concentrate on the ones that share your views, concentrate on making their experience the very best it can be, the rest forget them.</p>
</blockquote>
<p>WP Blog Host is an extension of<strong>, <em>me</em>. </strong></p>
<p>That’s how we’re different. In a way, that’s our brand. Our website has life. It grows; it learns, it’s fun; and it’s business. It’s not corporate. It’s <a href="http://en.wikipedia.org/wiki/Web_2.0" target="_blank">Web 2.0</a>.</p>
<p>From day one our target customers were bloggers (though we don’t forget the rest as Aaron mentions). We provide them with the tools they need to succeed online and then encourage them to stick around and grow with us as bloggers, entrepreneurs, and business owners.</p>
<p>I’m not saying no other web hosting and development companies out there have a Web 2.0 aspect to them. Many have forums and blogs, but none live and grow as WP Blog Host does. Heck, Yahoo! is probably the biggest social media web host there is.</p>
<p>But Yahoo! is something for everybody. And something for everybody is something for nobody.</p>
<p>So which is it? If you own a business, you’ll have to decide. Do you go corporate or social? Why?</p>


<p>Related posts:<ol><li><a href='http://wpbloghost.com/blog/understanding-the-psychology-of-your-website-visitors/' rel='bookmark' title='Permanent Link: Understanding The Psychology Of Your Website Visitors'>Understanding The Psychology Of Your Website Visitors</a></li>
<li><a href='http://wpbloghost.com/blog/using-photos-on-your-website/' rel='bookmark' title='Permanent Link: Using Photos On Your Website'>Using Photos On Your Website</a></li>
<li><a href='http://wpbloghost.com/blog/204-ways-people-scan-your-website/' rel='bookmark' title='Permanent Link: 20.4 Ways People Scan Your Website'>20.4 Ways People Scan Your Website</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://wpbloghost.com/blog/is-your-website-web-20-or-corporate/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>
