<?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>Gravitate &#187; Blog</title>
	<atom:link href="http://www.gravitatedesign.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.gravitatedesign.com</link>
	<description>Digital Marketing &#38; Design Agency</description>
	<lastBuildDate>Fri, 24 May 2013 15:17:35 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Gravitate Encryption for WordPress and Gravity Forms</title>
		<link>http://www.gravitatedesign.com/blog/wordpress-and-gravity-forms/</link>
		<comments>http://www.gravitatedesign.com/blog/wordpress-and-gravity-forms/#comments</comments>
		<pubDate>Thu, 16 May 2013 17:39:13 +0000</pubDate>
		<dc:creator>Geoff Gedde</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.gravitatedesign.com/?p=3346</guid>
		<description><![CDATA[Nowadays Encryption has been getting more and more attention.  With so many server attacks being done every minute, we need a solution to prevent our clients data from being used maliciously. Gravity Forms Encryption Gravity Forms is an awesome plugin for WordPress.  However, it doesn’t come with an option to encrypt the data when it... <a class="moretag" href="http://www.gravitatedesign.com/blog/wordpress-and-gravity-forms/">Read More &#187;</a>]]></description>
				<content:encoded><![CDATA[<p>Nowadays Encryption has been getting more and more attention.  With so many server attacks being done every minute, we need a solution to prevent our clients data from being used maliciously.</p>
<h3><b>Gravity Forms Encryption </b></h3>
<p>Gravity Forms is an awesome plugin for WordPress.  However, it doesn’t come with an option to encrypt the data when it is being stored in the database.  While most of us will use gravity forms as a simple Contact Form, many of us might want to use it for much more than that. Gravity Forms is simple enough to use for a Contact Form, but if you wanted to use it as application tool that stores emails, phone numbers, even Social Security Numbers then you might want something that has a higher method of security then storing plain text in the database.</p>
<h3><b>Gravitate Encryption </b></h3>
<p>This is where the Gravitate Encryption Plugin comes in handy. This plugin allows you to use four methods of security with your client data.</p>
<ul>
<li><strong>Symmetric Encryption</strong><br />
This method uses PHP’s “mcrypt” library to encrypt and decrypt the data with a secret passphrase that you configure.  It will use a random IV with MCRYPT_RIJNDAEL_128 and MCRYPT_MODE_CBC.  There is an option to automatically create and email a Secret Key for you if you don’t know what the best option is.<br />
Your server will need to have “mcrypt” library installed and configured properly.</li>
</ul>
<ul>
<li><strong>A-Symmetric Encryption</strong><br />
This method uses PHP’s “openssl” library to encrypt the date with a public_key and decrypts the data with a private_key.  This method uses a 2048bit RSA encrypted key to encrypt the full data.  This allows you to encrypt large amounts of data instead of the default RSA limited amount.  There is an option to automatically create and email a Public and Private Key for you if you don’t know how to do this yourself. The main usage of this type is that you can store the Private_Key in a separate location.  This way the Data can’t be accessed even in the Admin Panel unless you have the Private_Key.  Your server will need to have “openssl” library installed and configured properly.</li>
</ul>
<ul>
<li><strong>Weak Encryption</strong><br />
Well this encryption method is just as it sounds.  The real only use for this is if your server doesn’t have “mcrypt” or “openssl” installed.  While this method is better than storing the data as plain text, it wouldn’t really hold against someone who know a thing or two about decrypting.  However, if it is your only option then it is there for you.<br />
* If you plan on storing very sensitive data, then we recommend working with your Web Server admin to get one of the other methods installed and working instead of using this method.</li>
</ul>
<ul>
<li><strong>Remote Database Storage</strong><br />
This option allows for the data to be Stored on a Separate MySQL Database.  Useful if you want to keep the data behind your own Firewall.  This option can be used with any of the Three Encryption options above at the same time.  You will need to know how to configure a MySQL database as this option does require knowledge of a MySQL database configuration.</li>
</ul>
<h3><b>WordPress Encryption</b></h3>
<p>While this plugin was intended for Gravity Forms, it can be used by any plugin or even in your WordPress theme files. First you will want to make sure that you have installed the Gravitate Encryption Plugin and configured it.  Next, make sure to Test the plugin.  There is an Encryption Test option at the bottom of the plugin.  If it is working properly then the Un-encrypted Text will show as the same as the Decrypted Text.</p>
<p><b>To encrypt data use this PHP code:</b><br />
<code><br />
if(class_exists('GDS_Encryption_Class'))<br />
{<br />
echo GDS_Encryption_Class::encrypt('This is the Text to Encrypt');<br />
}<br />
</code><br />
<b>To decrypt data use this PHP code:</b><br />
<code><br />
if(class_exists('GDS_Encryption_Class'))<br />
{<br />
echo GDS_Encryption_Class::decrypt('enx2:JKM3FFR4WP5HN6SG0C4ZAIF5K7H');<br />
}<br />
</code></p>
<h4>* WARNING:</h4>
<p>Once you start using the plugin and start storing the data as Encrypted, you should not change the settings of the plugin as it will no longer be able to Decrypt the data.  That means it will not be able to turn the Encrypted data back into a readable form.  Therefore it will make the data <b>unusable</b>.</p>
<p>You should only configure it once and then Disable the Plugin from being managed in the Admin Panel.</p>
<p>If you need to change the settings you will need a Web Administrator to backup your data Un-Encrypted then change the settings and Re-Populate the data with the New Encrypted Settings.</p>
<p>&nbsp;</p>
<p><b>Disable the Plugin from being managed in the Admin Panel</b></p>
<p>This can only be done from within the code of the plugin.</p>
<p>You can update the code in two ways.  Either using FTP or you can edit the file from within the Plugin Edit page.</p>
<p>Go into the “gds_encryption.php” file and change:</p>
<p><code>$gds_encryption_enable_settings_page = true;</code></p>
<p>to</p>
<p><code>$gds_encryption_enable_settings_page = false;</code></p>
<p>&nbsp;</p>
<h4>Get the Plugin</h4>
<p>You can get the plugin here:<br />
<a title="Gravitate Encryption for WordPress" href="http://wordpress.org/plugins/gravitate-encryption/" target="_blank">http://wordpress.org/plugins/gravitate-encryption/</a></p>
<p>&nbsp;</p>
<p><em>* Sorry, but Gravitate offers no Support, Guarantees, or Warranty for this plugin.  Any comments or reply’s provided by a Gravitate member is done at will. Use this Plugin at your own risk.</em></p>
<p><em> *It is recommended to use private data in the comments and to not share your website or company information on this page.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.gravitatedesign.com/blog/wordpress-and-gravity-forms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Designer + Developer, not Designer vs. Developer</title>
		<link>http://www.gravitatedesign.com/blog/designers-and-developers/</link>
		<comments>http://www.gravitatedesign.com/blog/designers-and-developers/#comments</comments>
		<pubDate>Tue, 14 May 2013 17:04:16 +0000</pubDate>
		<dc:creator>Brian Ferdinand</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.gravitatedesign.com/?p=3234</guid>
		<description><![CDATA[Here&#8217;s a post from one of our code geeks, Brian who is affectionately known as a &#8220;unicorn&#8221; around here because he&#8217;s skilled in both  development and design. While I was doing some research on designers and developers working together, I found that most of the information out there is about how designers and developers don&#8217;t work well together. Most... <a class="moretag" href="http://www.gravitatedesign.com/blog/designers-and-developers/">Read More &#187;</a>]]></description>
				<content:encoded><![CDATA[<p>Here&#8217;s a post from one of our code geeks, <a href="http://www.gravitatedesign.com/team/brian-f/">Brian</a> who is affectionately known as a &#8220;unicorn&#8221; around here because he&#8217;s skilled in both  development and design.</p>
<p>While I was doing some research on designers and developers working together, I found that most of the information out there is about how designers and developers <em>don&#8217;t</em> work well together. Most articles are titled &#8220;Designer vs. Developer&#8221;, so I wanted to bring to light how it should be &#8220;Designer + Developer&#8221; because a lot of issues can arise if the designer and developer don&#8217;t communicate.</p>
<h3>What Happens if they Don&#8217;t?</h3>
<div id="attachment_3236" class="wp-caption alignnone" style="width: 654px"><a href="http://www.gravitatedesign.com/wp/wp-content/uploads/designervsdeveloper.jpg" rel="shadowbox[sbpost-3234];player=img;"><img class="size-full wp-image-3236 " alt="designervsdeveloper" src="http://www.gravitatedesign.com/wp/wp-content/uploads/designervsdeveloper.jpg" width="644" height="234" /></a><p class="wp-caption-text">image created by @shanesnow</p></div>
<p>First, we should be all too painfully aware of what happens when the designer and developer don&#8217;t communicate on a project.</p>
<p>The best case scenario is that the website works&#8230;but that&#8217;s about all. There will be (of course) a large disconnect between the design that was originally created and the end product.</p>
<p>On the other end of the spectrum is that the site is not useable, doesn&#8217;t make sense and leaves the end user feeling confused and even frustrated. Both of these outcomes will result in a loss of site users.</p>
<p><a href="http://www.gravitatedesign.com/wp/wp-content/uploads/designeranddeveloper.jpg" rel="shadowbox[sbpost-3234];player=img;"><img class="alignnone size-full wp-image-3237" alt="designeranddeveloper" src="http://www.gravitatedesign.com/wp/wp-content/uploads/designeranddeveloper.jpg" width="640" height="365" /></a></p>
<h3>What Happens if they Do?</h3>
<p>The most obvious answer is you will have an amazing product! Having the designer and developer talk means that they can bounce ideas off of each other and find the best solution to each problem. The designer might have ideas that the developer hasn&#8217;t thought of and the developer might have suggestions about functionality that the designer didn&#8217;t know was even possible.</p>
<p>There are of course a lot of other benefits to having a designer and developer work together. One way to think of it is two sides of the same coin. Without both, the coin isn&#8217;t worth anything. Horrible cliche; but I think that it explains the point.</p>
<p>Thankfully, I am privileged to work with an amazing team that focuses on communication through every step of our process. A very large part of that communication comes down to the designers and the developers actually sitting down and <em>talking</em>.  I know we have all heard the stories about how designers and developers don&#8217;t speak the same language, or that there is no way for them to communicate. But, I know first hand, that this does not have to be the case.</p>
<h3>How to speak the same language</h3>
<p>Let me share some of the tips I have picked up here at Gravitate that can allow this miracle to happen for you, too!</p>
<p>First and foremost is let the passion for your craft help you to find a common ground. You both want to create the best website you possibly can, so let that help guide the communication.</p>
<p>Second, put yourself in the other person&#8217;s shoes. You have been doing this type of exercise all along by putting yourself in the shoes of the end user (or at least you should be). Therefore it shouldn&#8217;t be too much of a stretch to look at where your counter-part is coming from.</p>
<p>Finally, push yourself. Use each other to push your boundaries, comfort zones and skills farther and farther. If both designer and developer aren&#8217;t learning from each other then one or both can become stagnant and that is the last thing you want in this business.</p>
<p>What it all comes down to is just talk. You will both be amazed at what you can create when you work together.</p>
<p>To close, I&#8217;d like to share a quote with you as I think it&#8217;s very fitting for this topic.</p>
<p>&#8220;&#8230;there lies buried in the Greek language a startling insight: the same word, <i>poiesis</i>, describes the work of both the mechanic and the poet. In modern times we have grown accustomed to thinking of the inspired artist and the disciplined engineer as opposed human types who gaze upon one another with mutual incomprehension, if not outright and avowed hostility. The Greeks, however, could not even express in language the difference between the artist and the engineer.&#8221; &#8211; Barry M. Katz</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gravitatedesign.com/blog/designers-and-developers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 Developer Tools We Can&#8217;t Live Without</title>
		<link>http://www.gravitatedesign.com/blog/tools-for-developers/</link>
		<comments>http://www.gravitatedesign.com/blog/tools-for-developers/#comments</comments>
		<pubDate>Thu, 09 May 2013 18:55:23 +0000</pubDate>
		<dc:creator>Jeremy Wilson</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.gravitatedesign.com/?p=3218</guid>
		<description><![CDATA[Hello, PHP-ninja Jeremy here again! A few weeks ago, I posted a blog about my 13 Favorite WordPress Plugins and got a lot of questions about what other types of tools I use to make my job easier. So here it is, my top 10 list. It&#8217;s a bit of a mixed bag, but excellence of... <a class="moretag" href="http://www.gravitatedesign.com/blog/tools-for-developers/">Read More &#187;</a>]]></description>
				<content:encoded><![CDATA[<p style="text-align: left;">Hello, PHP-ninja Jeremy here again! A few weeks ago, I posted a blog about my <a href="http://www.gravitatedesign.com/blog/13-lucky-plugins-for-wordpress-developers/">13 Favorite WordPress Plugins</a> and got a lot of questions about what other types of tools I use to make my job easier. So here it is, my top 10 list. It&#8217;s a bit of a mixed bag, but excellence of this caliber takes a lot of support. Enjoy!<em><br />
</em></p>
<p>&nbsp;</p>
<h4>1. Malsup Plugins</h4>
<p><a href="http://malsup.com/jquery/" target="_blank">http://malsup.com/jquery/</a><br />
These are some of my favorite and most-used jQuery plugins. Mike has done an amazing job at building solid and well-documented plugins. I especially love the Form plugin!</p>
<p>&nbsp;</p>
<h4>2. Preloaders</h4>
<p><a href="http://www.preloaders.net" target="_blank">http://www.preloaders.net</a><br />
I&#8217;ve never met a designer who wanted to custom design a loading indicator, much less animate it. So it&#8217;s usually up to me, a colorblind and socially-awkward developer who stopped drawing in middle school, to figure out what will look good. Preloaders to the rescue!</p>
<p><strong>Honorable mention:</strong> <a href="http://www.ajaxload.info" target="_blank">ajaxload.info</a></p>
<p>&nbsp;</p>
<h4>3. FamFamFam Icons</h4>
<p><a href="http://www.famfamfam.com/lab/icons/" target="_blank">http://www.famfamfam.com/lab/icons/</a><br />
A gorgeous and very useful collection of icons, you can drop these into just about any project and they&#8217;ll look great. Works wonders for custom post type icons, too. (You&#8217;re not leaving those set to the default &#8220;pin&#8221; icon, are you!?)</p>
<p>&nbsp;</p>
<h4>4. Mozilla Developer&#8217;s Network</h4>
<p><a href="https://developer.mozilla.org/en-US/" target="_blank">https://developer.mozilla.org/en-US/</a><br />
My go-to resource for news and updates on most web development technologies I use. Way easier to understand than the official HTML5 specification.</p>
<p>&nbsp;</p>
<h4>5. Initializr</h4>
<p><a href="http://www.initializr.com/" target="_blank">http://www.initializr.com/</a><br />
Need to start a project fast? Generate a boilerplate with Initializr and you can take the rest of the day off! Fill it with Lorem Ipsum and take two days off.</p>
<p>&nbsp;</p>
<h4>6. PHP Manual</h4>
<p><a href="http://php.net/manual/en/">http://php.net/manual/en/</a><br />
The best documentation available for PHP. This thing is chock full of examples and comments from other developers. If you need to learn about a function or language construct of PHP, there&#8217;s no other website you should go to first.</p>
<p>&nbsp;</p>
<h4>7. Pastie.org</h4>
<p><a href="http://pastie.org" target="_blank">http://pastie.org</a><br />
I use this for sharing code/snippets with people quickly, so they can review it or help figure out where an issue lies. I love the color coding options and the ability to set it to private, so that only people with the link can see the post. I also like looking through the public posts to see all the awful stuff people are putting up there.</p>
<p>&nbsp;</p>
<h4>8. JSFiddle</h4>
<p><a href="http://jsfiddle.net">http://jsfiddle.net</a><br />
Sort of like Pastie on steroids, JSFiddle is almost a complete IDE in the web browser. You can share your functioning HTML/CSS/JS with other people, who can then edit it as well as create new branches so your original code doesn&#8217;t get destroyed.</p>
<p><strong>Honorable mention:</strong> <a href="http://codepen.io" target="_blank">http://codepen.io</a> (just as good, if not better than JSFiddle. I definitely like the design more.)</p>
<p>&nbsp;</p>
<h4>9. Google Developers</h4>
<p><a href="https://developers.google.com/" target="_blank">https://developers.google.com/</a><br />
Like most things Google does, their developer resource library is well-made and extensive. If you&#8217;re working on a project that uses any of Google&#8217;s APIs, those fine folks have made plenty of examples for you to dissect and learn from &#8211; and of course the full blown API documentation as well.</p>
<p>&nbsp;</p>
<h4>10. Google Web Fonts</h4>
<p><a href="http://www.google.com/fonts/">http://www.google.com/fonts/</a><br />
I&#8217;ve almost forgotten about the days when websites were limited to the 12 or so system fonts that most OSes used. Google, among others, has made the embedding and use of custom fonts so easy and ubiquitous that even management knows about it!</p>
<p><strong>Honorable mention:</strong> <a href="http://fontsquirrel.com">http://fontsquirrel.com</a></p>
<p>&nbsp;</p>
<p>I know what some of you are thinking, &#8220;It&#8217;s more fun and rewarding to figure things out on my own.&#8221; And I agree, in most cases &#8211; but sometimes you ain&#8217;t got time/resources to do so and that&#8217;s the beauty of living in an open source world. What tools do you love? Want to add one or 10 to this list? Leave us a comment.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gravitatedesign.com/blog/tools-for-developers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Design &amp; Identity in the Business of Fashion</title>
		<link>http://www.gravitatedesign.com/blog/design-identity-in-the-business-of-fashion/</link>
		<comments>http://www.gravitatedesign.com/blog/design-identity-in-the-business-of-fashion/#comments</comments>
		<pubDate>Fri, 03 May 2013 18:54:21 +0000</pubDate>
		<dc:creator>Chris Osaka</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.gravitatedesign.com/?p=3108</guid>
		<description><![CDATA[It’s springtime and with the warmer weather (sporadic here in the PNW) comes spring fashion. To celebrate our newly-renovated historic downtown building, Gravitate hosted “Couve Couture”, a bi-annual, one-night only fashion event highlighting local apparel design talent. “Vancouver, Washington has fashion designers?” you ask. Why yes we do! And quite a few. Including Bravo! Network’s... <a class="moretag" href="http://www.gravitatedesign.com/blog/design-identity-in-the-business-of-fashion/">Read More &#187;</a>]]></description>
				<content:encoded><![CDATA[<p dir="ltr"><img alt="cc_logo_2" src="http://www.gravitatedesign.com/wp/wp-content/uploads/cc_logo_2.jpg" width="1024" height="683" /></p>
<p dir="ltr">It’s springtime and with the warmer weather (sporadic here in the PNW) comes spring fashion. To celebrate our newly-renovated historic downtown building, Gravitate hosted “Couve Couture”, a bi-annual, one-night only fashion event highlighting local apparel design talent.</p>
<p dir="ltr">“Vancouver, Washington has fashion designers?” you ask. Why yes we do! And quite a few. Including Bravo! Network’s Project Runway winner Seth Aaron. And with Michelle Lesniak winning the most recent season, the Portland/Vancouver metro area now counts more winners than any other city in the US.</p>
<p dir="ltr">Located on the other side of the Columbia River, Vancouver has long since been seen as the little sibling of Portland, Oregon and a much less progressive one, at that. Less than 10 miles away, FashionNXT (aka Portland Fashion Week) is the third longest running fashion week in the US after New York and Los Angeles.</p>
<p dir="ltr"><a href="http://www.gravitatedesign.com/wp/wp-content/uploads/cc_eventphoto_11.jpg" rel="shadowbox[sbpost-3108];player=img;"><img alt="cc_eventphoto_1" src="http://www.gravitatedesign.com/wp/wp-content/uploads/cc_eventphoto_1.jpg" width="1024" height="683" /></a></p>
<p dir="ltr">It takes more than raw design talent and showmanship to be successful in the fashion industry. Of course there are the production, operation, sales and distribution aspects that all take careful planning. But what creates the initial hook? What makes consumers, retailers or industry experts take notice of the “next big thing”?</p>
<p dir="ltr"><img alt="cc_eventphoto_8" src="http://www.gravitatedesign.com/wp/wp-content/uploads/cc_eventphoto_8.jpg" width="1024" height="683" /></p>
<h3>It’s The Pitch!</h3>
<p dir="ltr">A compelling identity and message not only creates awareness and excitement, but also communicates a company&#8217;s personality and values. For the budding Couve Couture fashion show, this is where Gravitate came in.</p>
<p dir="ltr"><img alt="cc_poster1" src="http://www.gravitatedesign.com/wp/wp-content/uploads/cc_poster1.jpg" width="1024" height="683" /></p>
<p dir="ltr"><img alt="cc_logo_1" src="http://www.gravitatedesign.com/wp/wp-content/uploads/cc_logo_1.jpg" width="1024" height="683" /></p>
<p>Our goal was to create an identity that highlighted the unique personality of Vancouver fashion. It had to be chic and sophisticated yet not too much as to alienate a newcomer that might think Couve Couture was overstepping its bounds. It had be neutral enough to encompass and represent the wide variety of the contributing designers&#8217; styles, but strong enough to stand toe-to-toe with Portland Fashion Week’s established presence.</p>
<p dir="ltr"><img class="alignnone size-full wp-image-3116" alt="cc_lanyardimage_2" src="http://www.gravitatedesign.com/wp/wp-content/uploads/cc_lanyardimage_2.jpg" width="1024" height="683" /></p>
<p dir="ltr"><img class="alignnone size-full wp-image-3118" alt="cc_eventphoto_3" src="http://www.gravitatedesign.com/wp/wp-content/uploads/cc_eventphoto_3.jpg" width="1024" height="683" /></p>
<p dir="ltr"><img class="alignnone size-full wp-image-3111" alt="cc_productionimage" src="http://www.gravitatedesign.com/wp/wp-content/uploads/cc_productionimage.jpg" width="1024" height="683" /></p>
<p>When it was all said and done, designer <a href="https://twitter.com/ryan_mowery" target="_blank">Ryan Mowery</a> did a fantastic job. Proof was a sold out crowd of 575 energized spectators.</p>
<p dir="ltr"><img class="alignnone size-full wp-image-3119" alt="cc_eventphoto_11" src="http://www.gravitatedesign.com/wp/wp-content/uploads/cc_eventphoto_11.jpg" width="1024" height="683" /></p>
<p dir="ltr">For more on business, fashion, and design, follow me on Twitter <b id="docs-internal-guid-43b49e3c-486f-4d8c-200d-9a56fcef5e9d"><a href="http://twitter.com/chrisosaka">@chrisosaka</a></b></p>
<p dir="ltr"><img class="alignnone size-full wp-image-3132" alt="cc_image2" src="http://www.gravitatedesign.com/wp/wp-content/uploads/cc_image2.jpg" width="1024" height="683" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.gravitatedesign.com/blog/design-identity-in-the-business-of-fashion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sensible Website Options for Sensible Startup Businesses</title>
		<link>http://www.gravitatedesign.com/blog/sensible-website-options-for-sensible-startup-businesses/</link>
		<comments>http://www.gravitatedesign.com/blog/sensible-website-options-for-sensible-startup-businesses/#comments</comments>
		<pubDate>Mon, 29 Apr 2013 20:53:59 +0000</pubDate>
		<dc:creator>Lynn Elyse</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Strategy]]></category>

		<guid isPermaLink="false">http://www.gravitatedesign.com/?p=3097</guid>
		<description><![CDATA[Frequently, one of the first tasks a startup undertakes is a website build. Good idea, because it’s the marketing foundation for most businesses. However, don’t blow your entire marketing budget on it—just as Rome wasn’t built in a day, neither is a typical startup website. A website is a continually evolving business tool, and you... <a class="moretag" href="http://www.gravitatedesign.com/blog/sensible-website-options-for-sensible-startup-businesses/">Read More &#187;</a>]]></description>
				<content:encoded><![CDATA[<p>Frequently, one of the first tasks a startup undertakes is a website build. Good idea, because it’s the marketing foundation for most businesses. However, don’t blow your entire marketing budget on it—just as Rome wasn’t built in a day, neither is a typical startup website. A website is a continually evolving business tool, and you should anticipate that it will grow along with your business.</p>
<div id="attachment_3098" class="wp-caption alignnone" style="width: 310px"><a href="http://www.gravitatedesign.com/wp/wp-content/uploads/website-options-before.jpg" rel="shadowbox[sbpost-3097];player=img;"><img class="size-medium wp-image-3098" alt="website-options-before" src="http://www.gravitatedesign.com/wp/wp-content/uploads/website-options-before-300x296.jpg" width="300" height="296" /></a><p class="wp-caption-text">Baja Fresh circa 1997</p></div>
<div id="attachment_3099" class="wp-caption alignnone" style="width: 310px"><a href="http://www.gravitatedesign.com/wp/wp-content/uploads/website-options-after.jpg" rel="shadowbox[sbpost-3097];player=img;"><img class="size-medium wp-image-3099" alt="website-options-after" src="http://www.gravitatedesign.com/wp/wp-content/uploads/website-options-after-300x295.jpg" width="300" height="295" /></a><p class="wp-caption-text">Baja Fresh today</p></div>
<p><br clear="all" /> <br clear="all" /> The first step in any startup website project is to make sure you’re ready for it; otherwise you could end up making a <a title="3 Heinous Website Mistakes Startup Businesses Make" href="http://www.gravitatedesign.com/blog/3-heinous-website-mistakes-by-startup-businesses/">huge website design mistake</a>. Once you have your business and marketing basics in hand, there are several reasonably-priced ways to launch your first website. The one that’s right for you depends on your resources in terms of time, money, and technical skill.</p>
<h3>Website Basics: Domain Name &amp; Hosting</h3>
<p>Regardless of how you build it, two mandatory expenses will span the life of your website: domain name registration and website hosting. Domain name registration secures a unique website name and permission to use it. There are hundreds of domain name registrars online and the fee is usually nominal—the typical U.S. small business can expect to pay $8 to $10 per year.</p>
<p>Even if you opt to hire a website company, you should still take charge of domain name registration because it is an annual fee to be renewed in perpetuity&#8211; you don&#8217;t want to lose your domain name a few years down the road because, come renewal time, you can&#8217;t find your web designer.</p>
<p>Web hosting is a service that makes your website available for use on the Internet; it is usually another nominal fee and typically a monthly charge. Many web design companies offer hosting services, or you can arrange for hosting on your own.</p>
<p><a href="http://www.godaddy.com/hosting/web-hosting.aspx?gclid=CK_ml__Z8LYCFQ9eQgodu0MAIQ&amp;isc=hos1gbr02&amp;ef_id=@9JP90DpK6kAAAI0:20130429202108:s" target="_blank">GoDaddy </a>and <a href="http://dreamhost.com/web-hosting/" target="_blank">DreamHost</a> are a couple of popular providers of both domain registration and website hosting services.</p>
<h3>Fast &amp; Easy Do-it-Yourself Website Builders</h3>
<p>If you have very little technical skill, then pre-designed and developed websites are a good bet. A service like <a href="https://www.yola.com/features" target="_blank">Yola </a>is a popular option. Companies like this usually charge a monthly fee that allows you to select from a variety of website designs and add your own information. The downside is that you have less design variety and less ability to customize your site, and further, you don’t own your website—if you stop paying the monthly fee, the website shuts down and you cannot access the files.</p>
<h3>Theme Websites</h3>
<p>For those who have a little bit of technical skill or are willing to learn, theme websites designed with content management systems can be a great option. With this approach, you’ll have a broader selection of designs than with the website builders, plus you’ll own all of your website files. With these services you select, purchase and download website files, then set them up in your own hosting environment. You’ll be able to add your own copy and images using the content management system (WordPress and Drupal are the most common ones). <a href="http://themeforest.net/" target="_blank">ThemeForest</a>, <a href="http://www.studiopress.com/" target="_blank">StudioPress </a>and <a href="http://www.woothemes.com/" target="_blank">WooThemes </a>are good options&#8211;<a href="http://www.elegantthemes.com/" target="_blank">ElegantThemes </a>is another favorite because, although they offer fewer themes, they have great technical support.</p>
<h3>Website Options for the Technically Challenged</h3>
<p>If you really aren&#8217;t up for doing any of the technical part but still need a cost-effective solution, there are companies like <a href="http://homespunwebsites.com/" target="_blank">HomeSpun Websites</a> with DIY website builders that also provide a real, live support person to help you with the tricky parts.</p>
<h3>Custom Designed Website Options</h3>
<p>So far, all the options discussed are pre-designed and developed websites. With a custom-designed website, you start with a blank page and have free range to design anything you like, which improves your chances of getting exactly what you want. The challenge with custom website design is that there are so many different vendors it can be hard to find the right fit for your startup.</p>
<p>There are three main components to consider when creating a website: design, development, and SEO. To understand the difference between them, it’s a little like building a custom home:  the architect draws up the blueprints, the contractor builds it, and the realtor finds buyers. Each is a critical part of the process, but they require very different skill sets—you probably wouldn’t hire one person to design, build, and attract potential buyers.</p>
<p>Likewise, when evaluating potential website companies, no one person is going to be good at design and development and seo. Be wary of a single freelancer who says he or she can do it all. Probably the best way to find a reputable website company is to ask for referrals from businesses with websites you admire. Check their online portfolio (make sure you like it!) and do your due diligence by contacting references.</p>
<p>Avoid making a decision based solely on price—a website isn’t a commodity, and you won’t be comparing apples to apples. Sometimes, the company with the higher price tag offers the better value. In addition to price tag, timeline is another factor to consider. A custom website usually takes time to do well—expect it to take at least three months for the entire process, from kickoff to launch. The most frequent cause for website project delays are content (the words and images for the website). Most website companies do not write website copy for you—clients are expected to provide web-ready copy. Ideally, you will have your website copy drafted before you get started on your project.</p>
<p>While this article barely scratches the surface of the topic, it should help you get a better sense of what you’ll be taking on when starting a website project.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gravitatedesign.com/blog/sensible-website-options-for-sensible-startup-businesses/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mixing Analog and Digital Workflows</title>
		<link>http://www.gravitatedesign.com/blog/mixing-analog-and-digital/</link>
		<comments>http://www.gravitatedesign.com/blog/mixing-analog-and-digital/#comments</comments>
		<pubDate>Wed, 24 Apr 2013 19:07:14 +0000</pubDate>
		<dc:creator>Ryan Mowery</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Culture]]></category>
		<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://www.gravitatedesign.com/?p=3046</guid>
		<description><![CDATA[To mark the opening of our newly renovated space, Ryan Mowery, (designer, digital illustrator, and freestyle rapper) created three 24” x 36”custom prints for the entryway of the kitchen. Here are his thoughts on how and why he made them. Ink to Wood Everything is digital now. Everything. Most companies are going paperless, and processes... <a class="moretag" href="http://www.gravitatedesign.com/blog/mixing-analog-and-digital/">Read More &#187;</a>]]></description>
				<content:encoded><![CDATA[<p>To mark the opening of our newly renovated space, <a href="http://www.gravitatedesign.com/team/ryan/" target="_blank">Ryan Mowery</a>, (designer, digital illustrator, and freestyle rapper) created three 24” x 36”custom prints for the entryway of the kitchen. Here are his thoughts on how and why he made them.</p>
<h2>Ink to Wood</h2>
<p><img class="alignnone size-full wp-image-3047" title="Gravitate Kitchen Art" alt="Gravitate Kitchen Art" src="http://www.gravitatedesign.com/wp/wp-content/uploads/finall_1.jpg" width="750" height="500" /></p>
<p dir="ltr">Everything is digital now. Everything. Most companies are going paperless, and processes that used to require expensive machines and hundreds of hours have been reduced to one person on a laptop in a coffee shop. These scanned objects printed onto wood are meant to embrace the digital methods of creation while honoring traditional methods of printmaking.</p>
<p dir="ltr">The process is time consuming but I find it very rewarding. It helps teach me patience. I like having to go through each step and laboring over the smallest details. It is hard to skip steps and come out with a polished final piece. It&#8217;s therapeutic and relaxing.</p>
<h3><img class="alignnone size-full wp-image-3049" title="Gravitate Kitchen Art - Spoon " alt="Gravitate Kitchen Art - Spoon " src="http://www.gravitatedesign.com/wp/wp-content/uploads/spoon_1.jpg" width="750" height="500" /></h3>
<h3><img class="alignnone size-full wp-image-3050" title="Gravitate Kitchen Art - Fork" alt="Gravitate Kitchen Art - Fork" src="http://www.gravitatedesign.com/wp/wp-content/uploads/fork_2.jpg" width="750" height="500" /></h3>
<h4>A little about the process</h4>
<p dir="ltr">I started by scanning many different silverware utensils on a flatbed scanner. Given that these objects were not flat, capturing the details in the curves and shapes was a bit tricky, but care in positioning and Photoshop helped a lot.</p>
<p dir="ltr">Using Photoshop, I completely de-saturated the image. While the transfers would&#8217;ve worked with color, I felt a darker grayscale tone would be more effective. I also prefer the grayscale look because it communicates conceptually a lot clearer than a color image would. I always try to increase contrast without losing the detail in the gray tones. Darker tones transfer really well, but the real shape of each object comes from the gray tones.</p>
<p dir="ltr">I then printed out the images full size, using toner ink. Toner ink transfers cleaner, and the darker colors are much fuller and richer. Toner heats up and melts onto the paper as opposed to inkjet, which is printed as droplets that dry onto the paper.  It is important to print the image reversed, so it transfers facing the correct way.</p>
<p>To transfer the image, I covered the wood surface Using <a href="http://www.liquitex.com/mattemedium/" target="_blank">Liquitex Matte Medium</a>. This material adhered the paper to the wood. Then I let it dry overnight.</p>
<p>I soaked the dry print/wood in water and gently scraped off the paper, without removing the toner from the wood. Removing the paper was time consuming and required a couple rounds of rubbing and scraping.</p>
<p dir="ltr">Once all the paper was off, I waited for the wood to dry. Then I put a coat of paint thinner over the top. This helped remove some of the excess paper left from the transfer and gives the some depth to the print. For the final output, I gave the print a coat of <a href="http://www.briwax.com" target="_blank">Briwax</a>. <a href="http://www.briwax.com"><br />
</a></p>
<p dir="ltr"><img class="aligncenter size-full wp-image-3074" alt="kitchen_art" src="http://www.gravitatedesign.com/wp/wp-content/uploads/kitchen_art.jpg" width="750" height="500" /></p>
<h4>MY Final thoughts</h4>
<p dir="ltr">It&#8217;s exciting to incorporate other processes and materials into my work. I primarily work digitally so getting to use tangible materials and combining digital with analog workflows was a nice change of pace.</p>
<p dir="ltr">This was just an overview of how I created these. If you&#8217;re interested in my specific techniques &#8211; feel free to <a href="http://www.gravitatedesign.com/team/ryan/">contact me</a>.  You can also visit this great blog on a similar method <a href="http://whollykao.com/2011/12/30/the-photo-to-wood-transfer/" target="_blank">here</a>.<em><a title="Photo to Wood Transfer" href="http://gravit.co/89pu" target="_blank"><br />
</a></em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.gravitatedesign.com/blog/mixing-analog-and-digital/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>3 Heinous Website Mistakes Startup Businesses Make</title>
		<link>http://www.gravitatedesign.com/blog/3-heinous-website-mistakes-by-startup-businesses/</link>
		<comments>http://www.gravitatedesign.com/blog/3-heinous-website-mistakes-by-startup-businesses/#comments</comments>
		<pubDate>Fri, 19 Apr 2013 18:34:07 +0000</pubDate>
		<dc:creator>Lynn Elyse</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Strategy]]></category>

		<guid isPermaLink="false">http://www.gravitatedesign.com/?p=2910</guid>
		<description><![CDATA[Kudos to all those entrepreneurs out there—you’re energetic, inspirational and essential to a healthy business ecosystem. But for fledgling organizations, enthusiasm can backfire when it lacks perception, resulting in a dramatic failure to launch. Agencies are approached regularly by aspiring business owners who jump into a custom web design project too quickly. While a website... <a class="moretag" href="http://www.gravitatedesign.com/blog/3-heinous-website-mistakes-by-startup-businesses/">Read More &#187;</a>]]></description>
				<content:encoded><![CDATA[<p>Kudos to all those entrepreneurs out there—you’re energetic, inspirational and essential to a healthy business ecosystem. But for fledgling organizations, enthusiasm can backfire when it lacks perception, resulting in a dramatic failure to launch.</p>
<p>Agencies are approached regularly by aspiring business owners who jump into a custom web design project too quickly. While a website is unquestionably a critical component of an organization&#8217;s business, it&#8217;s important that your startup is on a firm foundation before you shell out the cash for a website. Consider the following fictional examples drawn from true life situations:</p>
<h3>Mistake  #1 – Failing to research your market before engaging a web designer</h3>
<p>Once upon a time, there was an e-commerce website project that went horribly wrong. Here&#8217;s what happened: a web designer was approached by a woman &#8211;let&#8217;s call her Angela&#8211; with a solepreneur business making custom t-shirts. She’d made the rounds at the appropriate venues: farmers markets, street fairs and music festivals, but she had little success in selling her wares.</p>
<p>Rather than research the possibilities for failure (Product problem? Mistaken market?) she jumped to the conclusion that if she could just sell her tees online, the orders would roll in.</p>
<p>Now, think about this for a minute. If you’re talking face-to-face with the right customer about the right product and they <i>still</i> don&#8217;t buy, why would you possibly have more success selling online?</p>
<p>Unfortunately, Angela found a web designer who disregarded the glaring fact of a flawed business premise and took a hefty chunk of her savings (more than she could really afford) to build an e-commerce site. Despite an attractive and functional website, the e-commerce business was an abject failure and shut down 12 months after launch.</p>
<p>Truth #1: A stellar website can&#8217;t fix a flawed business idea.</p>
<h3>Mistake #2: Thinking you don’t need a plan because your startup idea is so very awesome</h3>
<p>There&#8217;s a certain mythology about the start of startups: HP and Apple were born in a garage. Dell started in a dorm room. YouTube was a sudden inspiration. <a href="http://www.fastcompany.com/58773/myth-about-creation-myths" target="_blank">The truth is something completely different.</a> So legendary entrepreneurs be damned, preparation is not a bad thing if you&#8217;re launching a new business.</p>
<p>To illustrate, here’s another story. A middle-aged couple had a life-changing experience after stumbling across an obscure health supplement while on vacation in India. It gave them vitality and sharpness of mind they hadn&#8217;t felt in decades, perhaps ever.</p>
<p>Eager to share their find with the western world &#8212; and retire fabulously &#8211; they contracted a creative agency that produced a lovely brand identity and e-commerce site, and the couple paid the bill with money pulled from their retirement fund, early withdrawal penalties and all.</p>
<p>On website launch day, the couple called their project manager and said something to the effect of, &#8220;Uh, gee, we won&#8217;t be able to do the business after all.&#8221; Turns out they hadn&#8217;t figured out how to get the proper approvals to import and sell the supplement in the US. They tried to modify their offering with little success and 18 months later, but still haven&#8217;t begun to recoup their investment.</p>
<p>Truth #2  You really should figure out if your business idea is even possible before robbing your nest egg to pay for a custom website.</p>
<h3>Mistake #3  Disregarding the need for a unified internal team</h3>
<p>Another frustrating situation for a web designer is when a project becomes paralyzed because the client has major internal issues. We&#8217;ll call our third scenario Pelosi &amp; Ashcroft Partners, LLC (P&amp;A). Intelligent, successful professionals, the principals of P&amp;A had abandoned corporate employ to join forces and launch their own consultancy. They wanted a polished, professional website to reinforce their credentials and they wanted it fast. Having started the web designer selection process in late fall, they were eager to expense it in the same fiscal year, so they went ahead and paid the entire cost up front (which is atypical).</p>
<p>The project was headed for trouble early on when it became clear that the two partners had wildly different visions for the website (and probably the partnership, too). One wanted a custom-designed website, the other thought a cheap template was good enough. One wanted an ultra-modern look, the other skewed conservative. One wanted to pursue <a title="Gravitate content marketing offerings" href="http://www.gravitatedesign.com/digital-marketing" target="_blank">content marketing</a> to generate leads, the other saw that tactic as useless for their largely word-of-mouth industry.</p>
<p>Website meetings quickly morphed into therapy sessions as the project manager sought common ground between the two partners to keep the project moving forward. Ultimately, it took nearly a year, but the web designer was finally able to create a website with a design and functionality that the two partners agreed on.</p>
<p>However, to this day (18+ months later) the new website <i>still</i> has not launched because P&amp;A can&#8217;t agree on content&#8211;since it has a content management system, in theory, they will be able to finish the project on their own. Whether they will actually do so remains unclear, since there’s no longer a “therapist” to facilitate.</p>
<p>Truth #3  A web designer isn’t a business consultant—they can&#8217;t solve your internal problems.</p>
<h3>How to avoid making these types of mistakes</h3>
<p>If you&#8217;re starting up a business, do your homework. While you probably don&#8217;t need a massive, Harvard MBA-worthy business plan, you do need to put some thought into your enterprise before sinking money into it.</p>
<p>The <a href="http://www.sba.gov/" target="_blank">U.S Small Business Administration</a> and <a href="http://www.score.org/" target="_blank">SCORE</a> are two good places to start. Most metropolitan areas have their own local small business resources, so make sure to ferret those out.</p>
<p>With just a little forethought, you&#8217;ll be well-prepared to collaborate with a web designer who will deliver a website that&#8217;s a powerful business and marketing tool.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gravitatedesign.com/blog/3-heinous-website-mistakes-by-startup-businesses/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Solid Advice on Writing for the Web: Part Two</title>
		<link>http://www.gravitatedesign.com/blog/how-to-have-your-writing-found-on-the-web/</link>
		<comments>http://www.gravitatedesign.com/blog/how-to-have-your-writing-found-on-the-web/#comments</comments>
		<pubDate>Mon, 15 Apr 2013 16:58:33 +0000</pubDate>
		<dc:creator>Pete Sherwood</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Content]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://www.gravitatedesign.com/?p=2936</guid>
		<description><![CDATA[Part 2 of 2: How to have your writing found on the web If you build it, they won’t just come Now that you&#8217;ve used Part One to create inspired, easy-to-digest, compelling piece of original content, it would be nice if people actually read it, right? While the Field of Dreams mentality may work for established... <a class="moretag" href="http://www.gravitatedesign.com/blog/how-to-have-your-writing-found-on-the-web/">Read More &#187;</a>]]></description>
				<content:encoded><![CDATA[<p><strong>Part 2 of 2: How to have your writing found on the web</strong></p>
<h3>If you build it, they won’t just come</h3>
<p>Now that you&#8217;ve used <a href="http://www.gravitatedesign.com/blog/how-to-write-for-the-web/">Part One</a> to create inspired, easy-to-digest, compelling piece of original content, it would be nice if people actually read it, right? While the <i>Field of Dreams </i>mentality may work for established authors and well-known websites, most of us need to promote and optimize our content to avoid having it slip into internet obscurity.</p>
<h3></h3>
<h3>Steps after you publish</h3>
<h4> Optimize Keywords</h4>
<p>Scan through your content and pick the main topics or phrases in your article that would likely be searched on Google. Plug those terms into Google Adwords’ <a href="https://adwords.google.com/o/Targeting/Explorer?__c=1000000000&amp;__u=1000000000&amp;ideaRequestType=KEYWORD_IDEAS">free keyword selection tool</a> to determine whether your headings and main topics need to be refined or generalized depending on the competition and quantity of global/local monthly searches. For example, the subheading/URL of this article was altered from “Getting your content found on the web” to “How to have your writing found on the web” after noticing the original heading was contending with the highly competitive keyword listings of SEO tips and website optimization. ­</p>
<div id="attachment_2937" class="wp-caption aligncenter" style="width: 973px"><a href="http://www.gravitatedesign.com/wp/wp-content/uploads/Screen-Shot-2013-04-14-at-10.26.33-AM.png" rel="shadowbox[sbpost-2936];player=img;"><img class="size-full wp-image-2937 " alt="Google Adwords tool" src="http://www.gravitatedesign.com/wp/wp-content/uploads/Screen-Shot-2013-04-14-at-10.26.33-AM.png" width="963" height="403" /></a><p class="wp-caption-text">&#8220;Content&#8221; results were too broad &#8211; needed to refine to &#8220;Writing&#8221;</p></div>
<h4></h4>
<p>&nbsp;</p>
<h4>Adapt Your Status Updates</h4>
<p>It’s easy to merely post the title of your blog post to your social networks. Don’t do that. To obtain the most traffic from your status updates, try to pose a question that is answered by your article and tailor it to each social community. This may mean multiple updates on different days and at different times to see meaningful results. We suggest sticking to the following social platforms to promote your content (in order of importance): Twitter, Google+, LinkedIn, and Facebook. <a href="http://i2.wp.com/blog.zintro.com/wp-content/uploads/2012/04/use-social-media-to-showcase-expertise.png?resize=600%2C4951" target="_blank">Here’s a helpful infographic</a> that dives into each platform’s audience groups, personas, and surfing habits to help you customize your status updates.</p>
<h4>Seek and Assist</h4>
<p>Proving relevant, researched support that directs traffic toward your content is a great way to build traffic and Twitter/Google+ followers, too, for that matter. Simply do a little digging on Twitter and Google+ for your topic and share your post with people who are asking for guidance. The trick here is that your topic should be answering questions and providing original ideas and resources. If you’re finding that “there are a lot of other articles out there just like mine,” you may need to <a href="http://www.gravitatedesign.com/blog/how-to-write-for-the-web/">take another look at your topic and decide why anyone would care to read it.</a></p>
<h3></h3>
<h3>Google Authorship and Author Rank</h3>
<p>You aren’t a robot. You don’t churn out ten, 500-word articles a day and then do it all again tomorrow—or at least you shouldn’t.  You spent time brainstorming, researching, writing, editing, and promoting your content—and you are proud of it. Google wants to reward you for your effort and punish the anonymous writers who pump out poor content crafted only for link building. Bottom-line, Google wants to promote great writers who create great content they stand behind.</p>
<h4>Authorship vs. Author Rank</h4>
<p>There is a great deal of confusion surrounding Author Rank and Authorship markup—first off, they’re <em><strong>NOT </strong></em>the same thing. Authorship markup is the method Google is currently using to display authorship information in search results for the content you create. For example:</p>
<div id="attachment_2941" class="wp-caption aligncenter" style="width: 819px"><a href="http://www.gravitatedesign.com/wp/wp-content/uploads/Screen-Shot-2013-04-14-at-11.08.08-AM.png" rel="shadowbox[sbpost-2936];player=img;"><img class="size-full wp-image-2941" alt="Google Authorship markup example" src="http://www.gravitatedesign.com/wp/wp-content/uploads/Screen-Shot-2013-04-14-at-11.08.08-AM.png" width="809" height="381" /></a><p class="wp-caption-text">Authorship markup puts a face behind the content</p></div>
<p>Author Rank, on the other hand, is an aspect of Google’s search algorithm, rumored to be implemented in the future. Currently, there is only speculation and not enough data to define precisely how it works—<a href="https://twitter.com/ajkohn">A. J. Kohn</a>, an experienced marketing executive with a successful track record spanning nearly 20 years, explains it like this:</p>
<p><a href="http://www.gravitatedesign.com/wp/wp-content/uploads/AJ-Kohn-quote2.jpg" rel="shadowbox[sbpost-2936];player=img;"><img class="aligncenter size-full wp-image-2944" alt="AJ Kohn quote" src="http://www.gravitatedesign.com/wp/wp-content/uploads/AJ-Kohn-quote2.jpg" width="1250" height="400" /></a></p>
<h4></h4>
<p>&nbsp;</p>
<h4></h4>
<h4>How to Set Up Authorship</h4>
<p>It’s a simple three-step process:</p>
<ul>
<li>Install “Wordpress SEO by Yoast” on the sites that you contribute to</li>
<li>Add your Google+ profile URL within the “Users” section on sites you contribute to</li>
<li>In your Google+ profile’s “About” section, add the site’s URL you contribute to within the ”Contributor to” section.</li>
</ul>
<p>For more information, <a href="https://plus.google.com/authorship">here’s Google’s tutorial</a></p>
<h3>TL;DR</h3>
<p>Through Google Authorship, Google essentially wants to make sure you’re a real human being and someone who is willing to put your name on the line for the content you create.</p>
<p>With Google+ growing and Authorship in place, it’s only a matter of time until we see Author Rank rolled out.</p>
<p>In the meantime, keep creating enthralling content, set up your Authorship, and promote and optimize your content.</p>
<h4></h4>
<p>&nbsp;</p>
<h3></h3>
]]></content:encoded>
			<wfw:commentRss>http://www.gravitatedesign.com/blog/how-to-have-your-writing-found-on-the-web/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>13 Lucky Plugins for WordPress Developers</title>
		<link>http://www.gravitatedesign.com/blog/13-lucky-plugins-for-wordpress-developers/</link>
		<comments>http://www.gravitatedesign.com/blog/13-lucky-plugins-for-wordpress-developers/#comments</comments>
		<pubDate>Wed, 10 Apr 2013 17:00:14 +0000</pubDate>
		<dc:creator>Jeremy Wilson</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.gravitatedesign.com/?p=2798</guid>
		<description><![CDATA[We hope that you enjoy reading this much anticipated post from Gravitate&#8217;s PHP Expert in Residence, Jeremy Wilson. &#160; Here&#8217;s a mostly unordered list of my favorite plugins that help me out when developing WordPress themes/websites. I&#8217;ve been building custom themes and websites in WordPress for several years now, and I&#8217;ve grown not to trust plugins in... <a class="moretag" href="http://www.gravitatedesign.com/blog/13-lucky-plugins-for-wordpress-developers/">Read More &#187;</a>]]></description>
				<content:encoded><![CDATA[<h5>We hope that you enjoy reading this much anticipated post from Gravitate&#8217;s PHP Expert in Residence, <a href="http://www.gravitatedesign.com/team/jeremy/" target="_blank">Jeremy Wilson</a>.</h5>
<p>&nbsp;</p>
<p>Here&#8217;s a mostly unordered list of my favorite plugins that help me out when developing WordPress themes/websites. I&#8217;ve been building custom themes and websites in WordPress for several years now, and I&#8217;ve grown not to trust plugins in general. I mean, who hasn&#8217;t had their heart broken by WP-E-Commerce or had their week ruined by some sloppy SEO Optimizer plugins? Don&#8217;t even get me started on those evil 3rd party themes.</p>
<p>Whether you&#8217;re a wizened old pro guru-ninja-rockstar like myself, or just breaking into WordPress development, these plugins should ease and quicken your development. Not to mention these are hand-picked as to not be ad-riddled, scam-filled, gaping-security-holed piles of copypasta.</p>
<h3>Advanced Custom Fields</h3>
<p><a href="http://www.advancedcustomfields.com"><img class="alignleft size-medium wp-image-2801" alt="add-new" src="http://www.gravitatedesign.com/wp/wp-content/uploads/add-new-300x256.jpg" width="300" height="256" /></a>Hands down the best plugin ever created (objective truth). Elliot Condon has crafted not only an amazingly functional plugin, but it&#8217;s beautiful as well.</p>
<p>Out of the box, this plugin will let you set up custom fields on posts/pages/custom post types. It comes with about 13 types: text (standard text input), textarea, wysiwyg editor, image upload, file upload, checkboxes, relationships (to other posts) and more.</p>
<p>Behind the scenes, you can pull the data using functions that blend into WordPress seamlessly: get_field(), the_field(), etc. The data is saved in the postmeta table, allowing you to perform any sort of SQL wizardry on it you might need. When creating a custom field set, you can even decide which of the default wordpress fields show up, like, the content, author, slug, page attributes, etc. To top it off, you can decide where the fields show up using simple yet powerful rules, ex.) only on posts that are categorized &#8220;Web 2.0,&#8221; or only on certain child pages.</p>
<p>There&#8217;s even more amazing extensions for ACF that you can pay for: repeating fields, flexible fields (let the user choose which type of field they want), an options page extension that lets you add custom option pages with your own custom fields to the WP dashboard, and more. There&#8217;s too many features and use cases for me to list here, just go visit the website already.</p>
<p><a href="http://www.advancedcustomfields.com" target="_blank">http://www.advancedcustomfields.com</a></p>
<hr />
<h3>Gravity Forms</h3>
<p><a href="http://www.gravityforms.com"><img class="alignright size-full wp-image-2806" alt="standard_toolbox" src="http://www.gravitatedesign.com/wp/wp-content/uploads/standard_toolbox.jpg" width="250" height="210" /></a>There&#8217;s no other option for forms, in my opinion. Gravity Forms may cost a bit of money, but it gives you an amazingly powerful form building engine with more features, hooks, and functions than you can <a href="http://www.gravitatedesign.com/blog/harlem-shake/" target="_blank">shake a Harlem</a> at. If you&#8217;re still using those other form plugins that desperately wants to be Gravity Forms, you&#8217;re doing yourself and your clients a disservice! If you buy a developer license, you can use this plugin wherever you want!</p>
<p><a href="http://www.gravityforms.com" target="_blank">http://www.gravityforms.com</a></p>
<hr />
<h3>Bulk Page Creator</h3>
<p><a href="http://wordpress.org/extend/plugins/bulk-page-creator/"><img class="alignleft size-medium wp-image-2808" alt="Bulk Page Creator" src="http://www.gravitatedesign.com/wp/wp-content/uploads/screenshot-1-273x300.jpg" width="273" height="300" /></a>There&#8217;s not much more to say about this plugin besides the title. It&#8217;s a very useful <a title="❤ Alton Brown" href="http://en.wikipedia.org/wiki/Alton_Brown" target="_blank">uni-tasker</a>, though. You can create a huge hierarchy of pages with dummy content in mere moments. There are other plugins out there that emulate this functionality and extend it by letting you upload a CSV, populate post meta and create custom post types, but they&#8217;re all so cluttered and ugly. It&#8217;s pretty simple to hack this plugin to make it create a custom post type instead of a page.</p>
<p><a href="http://wordpress.org/extend/plugins/bulk-page-creator/" target="_blank">http://wordpress.org/extend/plugins/bulk-page-creator/</a></p>
<hr />
<h3>Regenerate Thumbnails</h3>
<p><a href="http://wordpress.org/extend/plugins/regenerate-thumbnails"><img class="alignright size-medium wp-image-2810" alt="Regen thumbnails" src="http://www.gravitatedesign.com/wp/wp-content/uploads/screenshot-1-300x207.png" width="300" height="207" /></a>Another plugin that&#8217;s suited for one task, and one task alone: regenerating images.  Not sure why it&#8217;s called regenerate THUMBNAILS when it works on any custom image size. But with a single click, this plugin will process every uploaded image and generate all the appropriate image sizes as defined by your theme. Not recommended on a site with more than 200-300 images max. Best use case: if you&#8217;ve recently added an add_image_size() to your theme functions, and have images already uploaded that you need in your new custom size. You can achieve the same effect by going to the media library then opening and saving an image &#8212; but that becomes tedious for more than one image.</p>
<p><a href="http://wordpress.org/extend/plugins/regenerate-thumbnails/" target="_blank">http://wordpress.org/extend/plugins/regenerate-thumbnails/</a></p>
<hr />
<h3>Debug Bar + Console + Extender</h3>
<p><a href="http://wordpress.org/extend/plugins/debug-bar/"><img class="alignleft size-medium wp-image-2811" alt="Debug Bar" src="http://www.gravitatedesign.com/wp/wp-content/uploads/screenshot-2-300x80.jpg" width="300" height="80" /></a>This is actually three plugins, but we&#8217;ll count it as one. The main plugin here is Debug Bar, which adds a &#8220;debug&#8221; menu to your admin bar showing you any warnings/notices/errors, memory usage, queries used, and some other stats. Extender adds more detailed information, as well as a profiler and relevant functions that you can build in to your code for optimization/debug purposes. The console is actually my most used portion of the three &#8211; it adds a console to the debug menu that lets you run PHP and SQL as if you were actually in a terminal. It&#8217;s very handy for quickly checking something in the database without loading up an sql client, or var_dump()ing a variable in page to see what you&#8217;ve got going on.</p>
<p><a href="http://wordpress.org/extend/plugins/debug-bar/" target="_blank">http://wordpress.org/extend/plugins/debug-bar/</a><br />
<a href="http://wordpress.org/extend/plugins/debug-bar-console/" target="_blank">http://wordpress.org/extend/plugins/debug-bar-console/</a><br />
<a href="http://wordpress.org/extend/plugins/debug-bar-extender/" target="_blank">http://wordpress.org/extend/plugins/debug-bar-extender/</a></p>
<hr />
<h3>What The File</h3>
<p><a href="http://wordpress.org/extend/plugins/what-the-file"><img class="alignright size-full wp-image-2812" alt="What the File" src="http://www.gravitatedesign.com/wp/wp-content/uploads/screenshot-11.png" width="229" height="98" /></a>Simple yet elegant plugin that adds a new section to the admin bar showing you which template file you&#8217;re currently viewing. Yeah, sure, if you have a properly placed body_class() you can see it in the source code too, but I find this plugin to streamline the process. I&#8217;ll usually install this when I get someone else&#8217;s code I need to work on, or if I&#8217;m dealing with more than 3-4 template files.</p>
<p><a href="http://wordpress.org/extend/plugins/what-the-file/" target="_blank">http://wordpress.org/extend/plugins/what-the-file/</a></p>
<hr />
<h3>User Role Editor</h3>
<p><a href="http://wordpress.org/extend/plugins/user-role-editor/"><img class="alignleft size-medium wp-image-2813" alt="User Role Editor" src="http://www.gravitatedesign.com/wp/wp-content/uploads/screenshot-12-272x300.png" width="272" height="300" /></a>If you&#8217;ve noticed a theme (pun aggressively intended) in this list, it&#8217;s that I like my plugins simple. If I can&#8217;t find a plugin that makes my life easier and less cluttered, I&#8217;ll usually just do whatever needs doing with PHP instead of relying on a shady 3rd party plugin. Sometimes a plugin just overwhelms you with options, especially in the realm of user capability management. User Role Editor wins my award for the simplest capability/role editor that still works. Sure, Role Scoper is more powerful &#8212; but it&#8217;s as ugly as a slug, to coin a phrase.</p>
<p><a href="http://wordpress.org/extend/plugins/user-role-editor/" target="_blank">http://wordpress.org/extend/plugins/user-role-editor/</a></p>
<hr />
<h3>Adminimize</h3>
<p><a href="http://wordpress.org/extend/plugins/adminimize/"><img class="alignright size-medium wp-image-2814" alt="Adminimize" src="http://www.gravitatedesign.com/wp/wp-content/uploads/Screen-Shot-2013-04-02-at-3.15.09-PM-300x164.png" width="300" height="164" /></a>This sweet plugin gives you pretty decent control over the WordPress Dashboard on a user-role basis. It lets you show/hide menu items, dashboard panels, and a variety of other aspects of the WP Dashboard, per user role. I&#8217;ve noticed that it doesn&#8217;t play nicely with some plugins that add menus to the Dashboard, so keep that in mind.</p>
<p><a href="http://wordpress.org/extend/plugins/adminimize/" target="_blank">http://wordpress.org/extend/plugins/adminimize/</a></p>
<hr />
<h3>CMS Tree Page View</h3>
<p><a href="http://wordpress.org/extend/plugins/cms-tree-page-view"><img class="alignleft size-medium wp-image-2815" alt="CMS Tree Page View" src="http://www.gravitatedesign.com/wp/wp-content/uploads/screenshot-13-300x215.png" width="300" height="215" /></a>The hokey name of this plugin nearly scared me off, but it&#8217;s actually a nice little package. It gives you a new menu in your posts/pages. You can also add this menu to the Dashboard welcome screen, one of the first useful widget that I&#8217;ve found for that screen. (Does anyone actually use QuickPress?)</p>
<p><a href="http://wordpress.org/extend/plugins/cms-tree-page-view/" target="_blank">http://wordpress.org/extend/plugins/cms-tree-page-view/</a></p>
<hr />
<h3>Theme My Login</h3>
<p><a href="http://wordpress.org/extend/plugins/theme-my-login/"><img class="alignright size-medium wp-image-2816" alt="Theme my Login" src="http://www.gravitatedesign.com/wp/wp-content/uploads/Screen-Shot-2013-04-02-at-3.19.27-PM-300x203.png" width="300" height="203" /></a>Ever wanted your users to login to your site without seeing the WordPress login screen? This plugin lets you move all the login and profile stuff to the front-end of your website. You just add [theme-my-login] to the page you want to be your login page, and all the login/profile information will show up in that page&#8217;s template! You can also achieve this without the short code, within the plugin&#8217;s options screen. There&#8217;s a bunch of hidden features you need to enable that make this plugin extremely flexible. My one gripe is that it doesn&#8217;t grab all custom fields you&#8217;ve added to the profile (programmatically or with ACF)</p>
<p><a href="http://wordpress.org/extend/plugins/theme-my-login/" target="_blank">http://wordpress.org/extend/plugins/theme-my-login/</a></p>
<hr />
<h3>TinyMCE Advanced</h3>
<p>T<a href="http://wordpress.org/extend/plugins/tinymce-advanced"><img class="alignleft size-medium wp-image-2817" alt="TinyMCE Advanced" src="http://www.gravitatedesign.com/wp/wp-content/uploads/screenshot-11-281x300.jpg" width="281" height="300" /></a>his plugin is really intended for end-users of WordPress, but it does have some useful development features as well. It will automatically grab the classes from your editor-styles.css file and add them to a drop down in TinyMCE, letting end-users easily select between different classes. You can set up a toolbar for TinyMCE that&#8217;s relevant to your project, instead of having the whole shebang (getting rid of align: justify is a great example.)</p>
<p><a href="http://wordpress.org/extend/plugins/tinymce-advanced/" target="_blank">http://wordpress.org/extend/plugins/tinymce-advanced/</a></p>
<hr />
<h3>WooCommerce</h3>
<p><a href="http://www.woothemes.com/woocommerce/"><img class="alignright size-medium wp-image-2818" alt="WooCommerce" src="http://www.gravitatedesign.com/wp/wp-content/uploads/Screen-Shot-2013-04-02-at-3.23.35-PM-300x99.png" width="300" height="99" /></a>Don&#8217;t fool yourself, there&#8217;s no other option for e-commerce within WordPress.</p>
<p><a href="http://www.woothemes.com/woocommerce/" target="_blank">http://www.woothemes.com/woocommerce/</a></p>
<hr />
<h3>Theme-Check</h3>
<p><a href="http://wordpress.org/extend/plugins/theme-check/"><img class="alignleft size-medium wp-image-2819" alt="Theme-Check" src="http://www.gravitatedesign.com/wp/wp-content/uploads/Screen-Shot-2013-04-02-at-3.26.19-PM-300x191.png" width="300" height="191" /></a>This bad boy will make sure your theme is up to WordPress.com standards. It&#8217;s a little overkill, but great for finding areas of improvement in your theme. (Use this with the <a href="http://codex.wordpress.org/Theme_Unit_Test" target="_blank">theme unit test!</a>)</p>
<p><a href="http://wordpress.org/extend/plugins/theme-check/" target="_blank">http://wordpress.org/extend/plugins/theme-check/</a></p>
<hr />
<p><em>Disclaimer: Nobody has paid me off to write a good review of their plugin. To be clear, I&#8217;m <strong>only</strong> on the payrolls of Big Pharma, Big Science, and the Reptilians who secretly run our world through shadow governments but their true identity can only be glimpsed when your digital cable lags.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.gravitatedesign.com/blog/13-lucky-plugins-for-wordpress-developers/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Three Factors to Increase your Online ROI</title>
		<link>http://www.gravitatedesign.com/blog/increase-online-marketing-roi/</link>
		<comments>http://www.gravitatedesign.com/blog/increase-online-marketing-roi/#comments</comments>
		<pubDate>Fri, 05 Apr 2013 18:53:50 +0000</pubDate>
		<dc:creator>Don Elliott</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Strategy]]></category>

		<guid isPermaLink="false">http://www.gravitatedesign.com/?p=2692</guid>
		<description><![CDATA[Would you hire your website? Your website is not a brochure; it&#8217;s a dedicated, always works overtime, multi-tasking sales person. It responds to interaction, makes pitches, reaches out to people looking for answers, and is often your brand&#8217;s first impression with a potential customer. If you&#8217;re like most business owners, the end goal for your... <a class="moretag" href="http://www.gravitatedesign.com/blog/increase-online-marketing-roi/">Read More &#187;</a>]]></description>
				<content:encoded><![CDATA[<h2>Would you hire your website?</h2>
<p>Your website is not a brochure; it&#8217;s a dedicated, always works overtime, multi-tasking sales person. It responds to interaction, makes pitches, reaches out to people looking for answers, and is often your brand&#8217;s first impression with a potential customer.</p>
<p>If you&#8217;re like most business owners, the end goal for your website is to convince users to buy your product or &#8216;hire&#8217; your services. An important question to ask is, if your website walked in for an interview, would you hire it? According to research conducted by Universum who&#8217;s results were reported in <a title="Forbes Magazine" href="http://www.forbes.com/sites/meghancasserly/2012/10/04/top-five-personality-traits-employers-hire-most/" target="_blank">Forbes Magazine</a>, the top 3 personality traits a company looks for when hiring an employee are:</p>
<ol>
<li><span style="line-height: 14px;">Professionalism (86%)</span></li>
<li>High Energy (78%)</li>
<li>Confidence (61%)</li>
</ol>
<p>Similar to a brochure, it&#8217;s easy and common for companies to focus solely on the aesthetics of a site. What&#8217;s the message? What&#8217;s the &#8216;look and feel&#8217;? What&#8217;s the content? These are the blatant, obvious concerns. But these elements only go so far in conveying professionalism, energy, and confidence.</p>
<p><strong>Performance is overlooked.</strong><br />
Imagine Johnny.com walked in to your office to interview for a lead sales position with your company. He shows up a few minutes late but says it was due to traffic, no big deal, you know how the I-5 bridge to Portland is anyway. As he sits down you notice that while he looked put together at first, his socks don&#8217;t match, his right cuff is unbuttoned, and his fingernails aren&#8217;t trimmed. You look past that because you don&#8217;t want to judge a book by it&#8217;s cover and begin the interview.</p>
<p>&#8220;Thank you for coming. We&#8217;re excited to be hiring a new lead sales person. Let&#8217;s start by telling me a bit about your work history, how long have you been in sales?&#8221;</p>
<p>Pause. 10 seconds of silence while Johnny.com stares at you, seemingly pondering your question. Finally he answers.</p>
<p><img class=" wp-image-2859 alignright" style="margin-left: 19.1875px;" alt="Barney_Meme" src="http://www.gravitatedesign.com/wp/wp-content/uploads/Barney_Meme.jpg" width="340" height="248" /></p>
<p>&#8220;Sales is how businesses make money. You should hire me.&#8221;</p>
<p>Well that&#8217;s not a good answer, he didn&#8217;t even address the question. You back up and try again, this time phrasing it differently, &#8220;So have you worked in sales before?&#8221;</p>
<p>After 30 minutes of questioning and rephrasing your questions you finally become confident that he at least knows what he&#8217;s talking about. However, at this point all of the &#8216;small issues&#8217; are piling up. He was late, he struggled to provide you with answers, his responses were slow and awkward, and he didn&#8217;t seem to have concern for detail. In essence, he seems to lack professionalism, has low energy, and definitely doesn&#8217;t inspire confidence.</p>
<p>With this scenario in mind, now let&#8217;s look at 3 key factors in producing an effective website that are often overlooked yet could have a dramatic impact on your bottom line.</p>
<p>*Meme courtesy of <a href="http://www.quickmeme.com/meme/3qyi6u/" target="_blank">www.quickmeme.com</a></p>
<h3>Speed</h3>
<p>According to research conducted by  the <a title="Tagman's article citing Aberdeen Group's research" href="http://blog.tagman.com/2012/03/just-one-second-delay-in-page-load-can-cause-7-loss-in-customer-conversions/" target="_blank">Aberdeen Group</a>, a 1 second increased delay in page load time causes an average conversion loss of 7%. For a small business that does $3 million in annual sales, this equates to a $210,000 loss! A larger e-commerce site that does $50 million in sales a year, loses an average of $3.5 million annually when their site takes 1 second longer to load.</p>
<p>Internet speeds, mobile usage, and user expectations will only continue to increase. About 10 years ago, an 8 second page load time was acceptable but today a 3 second delay is considered a &#8216;poor user experience&#8217;. As a result, the top 2 factors that effect bounce rate are:</p>
<ol>
<li><span style="line-height: 14px;">Content relevance</span></li>
<li>Page load speed</li>
</ol>
<p>In April 2010, Google began including page load time as one of its ranking factors. Therefore not only does a slow site create a bad user experience, it now can cause you to not be found in the first place!</p>
<p><strong>What to do:</strong></p>
<p>Johnny.com needs to plan for traffic. First, find out how your site performs. Try these tools for instant results and suggestions:</p>
<p>Google: https://developers.google.com/speed/pagespeed/insights</p>
<p>Pingdom: http://tools.pingdom.com/fpt/</p>
<p>Once you know what you are dealing with, carry out the recommendations or find a development firm to do so for you. Most speed modifications are relatively straight forward which makes it possible to see a significant return on investment.</p>
<h3>Consistency</h3>
<p>Consistency equals professionalism. It implies reliability, shows attention to detail, and an overall passion for the craft being shown. Inconsistency, on the other hand, reveals apathy, conflict, instability, and gives the impression you would rather be doing something else. From a branding perspective, consistency speaks to whether your company is a focused expert, or a dysfunctional amateur. Here&#8217;s 3 common areas to look out for:</p>
<p><strong>Language</strong></p>
<p>Successful mobile app design has proven that a consistent personality and voice inspires loyalty. Websites are beginning to catch on to this philosophy as well. Within a multi-author blog, it&#8217;s good that each article reflects the author, however, outside of the blog the website should have one cohesive voice.</p>
<p>To facilitate this, MailChimp published their own <a title="MailChimp's Voice and Tone Guideline Insures a Consistent Voice" href="http://voiceandtone.com" target="_blank">Voice &amp; Tone</a> guideline website. MailChimp uses consistent language throughout their company from marketing material to the newsletter application interface. Ask any user what they think and chances are you will find they have a strong affinity for the Chimp, which greatly rivals the brand loyalty for competitors such as Constant Contact and Vertical Response.</p>
<p>If your site is maintained by multiple people or a 3rd party web maintenance company, consider taking the time to craft your own voice and tone guideline.</p>
<p><strong>Design</strong></p>
<p><strong></strong>Design is the visual counterpart to language. It&#8217;s easy to become focused on a single element such as a call-to-action for a new product, and complete overlook the overall design of the site. Contract can be a great tool to draw attention but too much can end in a disjointed experience. Remember this: controlled variety is interesting, random is irritating.</p>
<p><strong>Layo</strong><strong>ut &amp; Navigation</strong></p>
<p>Users come to your website to find and consume content that is relevant to them. The harder it is for them to do that, the more likely they will get frustrated and leave. While attractive design improves a users brand-impression, an inconsistent layout or confusing navigation can quickly toss out those warm fuzzy feelings and replace them with flat out irritation. This can obviously effect conversion rates, but if the user does convert, you&#8217;ve managed to taint the brand expectation before you&#8217;ve even been introduced!</p>
<p><img class="aligncenter size-full wp-image-2887" alt="money-never-sleeps" src="http://www.gravitatedesign.com/wp/wp-content/uploads/money-never-sleeps.jpg" width="498" height="468" /></p>
<p><strong>What to do:</strong></p>
<p>Hire a webmaster! In the age of great open source content management systems (CMS), the &#8216;webmaster&#8217; seems to have been thrown out with the bath water. Rather than assuming your CMS replaces the need for a webmaster, recognize that it is actually a catalyst to expand the webmaster&#8217;s role and enhance their productivity. The webmaster can operate as a gate keeper or quality assurance enforcer. In Johnny.com&#8217;s case, the webmaster is a fashion and etiquette coach. This, in combination with well-organized CSS can do wonders.</p>
<h3>Forms</h3>
<p>Whether its a contact form, a newsletter sign up, or full e-commerce checkout process, a conversion happens when a user is changed from consuming content to giving something of value back to the website owner. Therefore, most high value conversions end with a web-form.</p>
<p>The moment you present a form to a user you are asking them to change their behavior and trust you with their personal information. This is no small request. Instead of looking at a form as a tool for collecting information, look at it as the final pitch in your online sales process. If your website is a sales person, the form is the moment their pitch ends and the sale is requested. It&#8217;s arguably the most important moment in your sales process. Any sales guru will tell you that it&#8217;s paramount to make the sale as easy and painless as possible, once the person commits. The same rules should apply to the web form.</p>
<p>We see good web form practices more commonly in mobile sites. The restrictions of small thumb-driven devices has forced designers to streamline the conversion process. Unfortunately that philosophy is all too often not applied to the desktop environment. To paraphrase <a title="Follow Derek Nelson on Twitter" href="http://www.twitter.com/_dereknelson" target="_blank">Derek Nelson</a> in his <a title="Derek Nelson on Mobile e-Commerce Sites via Smashing Magazine" href="http://uxdesign.smashingmagazine.com/2013/03/14/designing-a-better-mobile-checkout-process/" target="_blank">Smashing Magazine article regarding mobile e-commerce sites</a>, &#8220;What&#8217;s annoying on a desktop can be fatal in mobile.&#8221;</p>
<p><strong>What to do:</strong></p>
<p>These simple rules apply to most forms. There are exceptions, such as long forms which are designed specifically to carefully qualify applicants (see <a title="Happy Cog" href="http://happycog.com" target="_blank">Happy Cog</a> for an example!).</p>
<ol>
<li>Review every field of the web form and ask yourself, &#8220;Can I complete the sale without this information?&#8221; If the answer is yes, drop the field.</li>
<li>Make the form linear. This means it should be obvious to the user what field to complete next. A form laid out like a grid with no clear direction implies more work. Remember, annoying is fatal.</li>
<li>Clearly identify required fields. If a field is required, clearly identify it! It&#8217;s annoying to be forced to return to the form to correct mistakes. Additionally, if the user is in a hurry (which most are!) clearly marked requirements can streamline the necessary steps.</li>
<li>Use instant validation. A typical form will not tell you of a mistake until the user attempts to submit it. They are then denied, and forced to scroll back through the form to find the mistake. This is annoying. A form that instantly validates as you leave the field, <em>without interrupting your ability to type</em>, feels helpful rather than restrictive. User&#8217;s don&#8217;t want a police officer, they want <a title="Dr. Watson is Sherlock Holmes faithful and intelligent side kick." href="http://en.wikipedia.org/wiki/Doctor_Watson" target="_blank">Watson</a>.</li>
<li>Make sure it WORKS! Too often clients come to us wanting to improve their conversion through Search Engine Optimization, only to find out their contact form doesn&#8217;t work half the time. We recently tripled a client&#8217;s conversion rate by adding form validation. Users thought they were successfully completing the form when in fact they were not. Test your forms regularly to ensure they are functioning. Many forms rely on 3rd party APIs or technology, which means they could break without you being aware.</li>
</ol>
<h3>The Bottom Line</h3>
<p>A typical, professionally crafted website for a small to medium sized business costs between $25,000 &#8211; $75,000. That&#8217;s nearly the same cost for a non-commissioned sales person&#8217;s salary. Would you allow Johnny.com to be paid $75,000 per year if he only brought in $20,000 worth of business? While strategy, design, and <a title="Gravitate digital marketing offerings" href="http://www.gravitatedesign.com/digital-marketing" target="_blank">digital marketing</a> are key elements to an effective website, a bumbling, poorly operating website, can keep you from getting business. Your website may be pretty, but is it effective? Websites should pay for themselves.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gravitatedesign.com/blog/increase-online-marketing-roi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
