<?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>letscounthedays &#187; Usability</title>
	<atom:link href="http://www.shayhowe.com/tag/usability/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.shayhowe.com</link>
	<description>The Online Portfolio of Creative Professional Shay Howe</description>
	<lastBuildDate>Thu, 15 Jul 2010 01:02:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>Hyperlink CSS Attribute Selectors</title>
		<link>http://www.shayhowe.com/tutorial/hyperlink-css-attribute-selectors/</link>
		<comments>http://www.shayhowe.com/tutorial/hyperlink-css-attribute-selectors/#comments</comments>
		<pubDate>Wed, 31 Mar 2010 23:26:12 +0000</pubDate>
		<dc:creator>Shay Howe</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Usability]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.shayhowe.com/?p=1009</guid>
		<description><![CDATA[CSS attribute selectors provide an additional method of setting CSS styles outside of ids and classes. Learn how an attribute selector, when used with a hyperlink, can increase your clicks.


Related posts:<ol><li><a href='http://www.shayhowe.com/seo/6-visual-media-optimization-mistakes/' rel='bookmark' title='Permanent Link: 6 Visual Optimization Mistakes'>6 Visual Optimization Mistakes</a></li>
<li><a href='http://www.shayhowe.com/seo/top-10-keyword-research-tips/' rel='bookmark' title='Permanent Link: Top 10 Keyword Research Tips'>Top 10 Keyword Research Tips</a></li>
<li><a href='http://www.shayhowe.com/iphone/iphone-picture-messaging/' rel='bookmark' title='Permanent Link: iPhone Picture Messaging'>iPhone Picture Messaging</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<link rel="stylesheet" href="/wp-content/themes/letscounthedays/articles/hyperlink-css-attribute-selectors/links.css" type="text/css" media="screen" />

<h1><a href="/tutorial/hyperlink-css-attribute-selectors/" title="Document Links Styled with CSS Attribute Selectors">Document Links Styled with CSS Attribute Selectors</a></h1>

<img src="http://www.shayhowe.com/wp-content/themes/letscounthedays/articles/hyperlink-css-attribute-selectors/document-css-links.jpg" alt="Document Links Styled with CSS Attribute Selectors" />

<p>With <abbr title="Cascading Style Sheets 3">CSS3</abbr> gaining popularity so are <abbr title="Cascading Style Sheets">CSS</abbr> attribute selectors. CSS attribute selectors have been around for some time however CSS3 adds more selectors to the mix bringing new light to subject. Increased browser support, with nearly every major browser currently supporting attribute selectors <i>(Internet Explorer 6 still struggles)</i>, has also added to the popularity.</p>

<p>So what benefit do CSS attribute selectors have to adding style to document links? CSS attribute selectors allow you to quickly and easily add styles to document links while keeping your code clean and clutter free. Ultimately, the more attractive looking your links are the more clicks they will receive.</p><span id="more-1009"></span>

<h4>PDF Hyperlink Example</h4>

<h3>HTML Code</h3>
<pre><code>&#60;a href="#.pdf" title="PDF File Link"&#62;PDF File&#60;/a&#62;</code></pre>

<h3>CSS Code</h3>
<pre><code>a[href$=".pdf"] {
	background: url(acrobat.gif) no-repeat left center;
	padding-left: 20px;
}
</code></pre>

<h3>Output</h3>
<p><a href="#.pdf" title="PDF File External Link" rel="nofollow">PDF File</a></p>

<h4>Breaking Down the Attribute Selector</h4>

<p>You start your CSS just as if your were to style any other hyperlink. Directly following the <code>a</code> element comes the attribute selector, in this case <code>[href$=".pdf"]</code>. The attribute selector will always be wrapped in <code>[]</code> brackets and will always sit right next to the element to which it applies to without any spaces in-between the two.</p>

<p>Within the <code>[]</code> brackets the <code>href</code> attribute is declared as we are specifically targeting hyperlinks. Next we insert the <code>$=</code> selector, which specifies that we only want to target hyperlinks ending with the file format value to follow. For this example we are using a PDF document making the value <code>.pdf</code>, which is wrapped in <code>""</code> quotations.</p>

<p>To target any other type of document just change the value to what ever file extension you wish. As an example, to target Microsoft Word documents just change the <code>.pdf</code> value to <code>.doc</code>.</p>

<h4>Taking It a Step Further</h4>

<p>Chris Coyier from CSS-Tricks has put together and outstanding resource on CSS attribute selectors in his article &#8220;<a href="http://css-tricks.com/attribute-selectors/" title="The Skinny on CSS Attribute Selectors" rel="nofollow">The Skinny on CSS Attribute Selectors</a>&#8221;. To learn the full potential of CSS attribute selectors this article is a must read as it does a great job of breaking them down for you.</p>

<p>If you are worried about the lack of support for Internet Explorer 6 you can, with a some additional work, use CSS attribute selectors via jQuery. Zac Gordon has written a great tutorial, &#8220;<a href="http://dabrook.org/blog/articles/selecting-and-styling-external-links-or-pdf-ppts-and-other-files-by-extensi/" title="Selecting and Styling External Links, PDFs, PPTs, and other links by file extension using jQuery" rel="nofollow">Selecting and Styling External Links, PDFs, PPTs, and other links by file extension using jQuery</a>&#8221;, on how to do so.</p>

<p>Adding an icon to your document links is a great way to quickly draw more attention to the link. InstantShift has put together an article packed full of icons. If you would like some to use on your website check out the article at &#8220;<a href="http://www.instantshift.com/2009/08/19/75-free-useful-icon-sets-for-web-designers-and-developers/" title="75 Free Useful Icon Sets for Web Designers and Developers" rel="nofollow">75 Free Useful Icon Sets for Web Designers and Developers</a>&#8221;.</p>

<p>Related posts:<ol><li><a href='http://www.shayhowe.com/seo/6-visual-media-optimization-mistakes/' rel='bookmark' title='Permanent Link: 6 Visual Optimization Mistakes'>6 Visual Optimization Mistakes</a></li>
<li><a href='http://www.shayhowe.com/seo/top-10-keyword-research-tips/' rel='bookmark' title='Permanent Link: Top 10 Keyword Research Tips'>Top 10 Keyword Research Tips</a></li>
<li><a href='http://www.shayhowe.com/iphone/iphone-picture-messaging/' rel='bookmark' title='Permanent Link: iPhone Picture Messaging'>iPhone Picture Messaging</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.shayhowe.com/tutorial/hyperlink-css-attribute-selectors/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Defining A Multivariate Test</title>
		<link>http://www.shayhowe.com/web-design/defining-multivariate-testing/</link>
		<comments>http://www.shayhowe.com/web-design/defining-multivariate-testing/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 00:42:30 +0000</pubDate>
		<dc:creator>Shay Howe</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Testing]]></category>
		<category><![CDATA[Usability]]></category>

		<guid isPermaLink="false">http://www.shayhowe.com/?p=997</guid>
		<description><![CDATA[Multivariate testing is becoming more popular amongst the web design and development community, and rightfully so. Take a look and see how the smallest changes can produce the biggest results.


Related posts:<ol><li><a href='http://www.shayhowe.com/web-design/10-ecommerce-tips/' rel='bookmark' title='Permanent Link: 10 Quick E-Commerce Tips'>10 Quick E-Commerce Tips</a></li>
<li><a href='http://www.shayhowe.com/web-design/designing-call-to-action/' rel='bookmark' title='Permanent Link: Designing a Strong Call to Action'>Designing a Strong Call to Action</a></li>
<li><a href='http://www.shayhowe.com/web-design/designing-landing-pages/' rel='bookmark' title='Permanent Link: Landing Page Design'>Landing Page Design</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<h1><a href="/web-design/defining-multivariate-testing/">Getting Started with Multivariate Testing</a></h1>

<img src="http://www.shayhowe.com/wp-content/themes/letscounthedays/articles/defining-multivariate-testing/multivariate-testing.jpg" alt="Getting Started with Multivariate Testing" />

<p>Multivariate testing (MVT), testing multiple elements of a live web page at a time, is becoming more and more popular amongst the web design and development community. Understandably so, multivariate testing allows you to test a large amount of combinations and see exactly how those combinations stack up against one another. You will quickly find out that the smallest changes can produce the biggest results.</p><span id="more-997"></span>

<h4>What elements should you test?</h4>

<p>When deciding exactly what elements to test within a multivariate test you are going to focus on the call to action. Determine what you want users to do upon landing on a page and then outline all of the key elements in and around the desired call to action. Any element a user will have to interact with to complete this action is an element you are going to want to run the multivariate test with. A few of these elements may include:</p>

<h3>Brand Awareness</h3>
<p><em>Depending on how popular, or unpopular, your brand is may impact conversions.</em> If you have a well-known brand it may help encourage conversions where an unknown brand would not. On the other hand, having too much brand presence on a page may get in the way of users trying to complete a conversion. Figure out what you would like to accomplish with your brand awareness and then test it.</p>

<h3>Headings</h3>
<p>Headings are <em>the first section of text a user will read on a page</em> and if they like it they will continue on. Perhaps they will continue reading, maybe they will scan the rest of the elements surrounding the call to action, or if you&#8217;re lucky they just might jump straight to completing the desired call to action. Either way, testing different headings will allow you to determine which has the best positive outcome. Not too sure headings can make that big of difference? You do not have to take my word for it; 37signals have had significant results all from <a href="http://37signals.com/svn/posts/1525-writing-decisions-headline-tests-on-the-highrise-signup-page" title="Multivariate Testing Headings" rel="nofollow">testing headings</a>.</p>

<h3>Text Content</h3>
<p>Not every user is going to read the text content surrounding a call to action, however those who do are <em>only going to be interested in helpful and useful content</em>. Creating a few different blocks of text to test against one another can give you an insight as to how your users think and what will work best with them moving forward. While you may not see a very sizable difference in your conversion rate from testing text content you will gain a tremendous amount of awareness.</p>

<h3>Images</h3>
<p>The eye is naturally drawn to images on a page, especially striking images. How you present your call to action can be dramatically <em>affected by the images used around it</em>. As an example, if you are selling an e-book that is to be downloaded, try using an image of an actual book against an image of a PDF icon. You may be surprised to find that your users like to see a tangible product over a file icon. The right image or images can work wonders on your conversion rate.</p>

<h3>Buttons</h3>
<p>Buttons may very well be the most important part in completing a call to action. Simply put, <em>buttons are one of the easiest ways for users to take action</em>, an action that is often important in determining the overall success of a website. Does your button actually look like a button? Is it instinctive and easily recognizable? Put together multiple button combinations and test them against one another. It may take a few different tests, but soon enough you will have a shinning star.</p>

<h4>How should you test these elements?</h4>

<p>Within a multivariate test you will need to visually design multiple combinations of the elements surrounding a desired call to action. I recently wrote an article, <a href="http://www.shayhowe.com/web-design/designing-call-to-action/" title="4 Simple Design Elements Behind a Good Call to Action">4 Simple Design Elements Behind a Good Call to Action</a>, which goes into great detail on how to visually craft a strong call to action using size, shape, color, and position. Using size, shape, and color, you are able to create an extensive array of elements to test, all of which will help lead you to the preferred conversion rate.</p>

<h3>Size</h3>
<p>The larger you make your call to action, the <em>easier it is to recognize</em>. Furthermore, the larger an element is the more importance it will signify. You want to find a good balance between how large your headings and images are as compared to your button. Headings should not be so small that they do not stand out over the other copy, meanwhile a button should not be so large that it is the only item on the page.</p>

<h3>Shape</h3>
<p>A good call to action will use shape to its benefit. Make the corners on your button rounded so that it looks more like a button and instinctively clickable. Use an arrow or another object to <em>draw attention</em> to the button. Do not be afraid to break a grid in order to make a call to action stand out. On a page full of straight lines the curved one is sure to stick out so use shape to your advantage.</p>

<h3>Color</h3>
<p>Every color is going to catch a user&#8217;s attention a little differently. Additionally, each color is going to provoke a different emotion for each user. One of the biggest things you can test, and continually test, is the color of your headings, buttons, text, and so forth. Honestly, the options are endless! Test and <em>work with colors that will standout, provide a high contrast, and encourage users</em>.</p>

<h3>Position</h3>
<p>Logos are commonly found at the top left of a page for a reason, it is where they are most easily recognized and successful. Position plays a very important role in <em>gaining conversions</em>. How does your call to action perform placed within the left side of the page as compared to the right side? In addition to that, how does your button perform on the top of your call to action as compared to the bottom, left, or right? The position of your call to action needs to be in an instinctive location and clearly obvious to your users.</p>

<h4>Multivariate Testing Example: Smashing Magazine</h4>

<p>I recently wrote a <a href="http://www.shayhowe.com/resource/the-smashing-book-review/" title="The Smashing Book in Review">review on The Smashing Book</a> and in doing so I was visiting the <a href="http://www.smashingmagazine.com/" title="Smashing Magazine" rel="nofollow">Smashing Magazine</a> website quite a bit. I started to notice that they are running a multivariate test on how they advertise the book to their visitors. Outlined below are a few of the different examples and combinations I was able to identify. I do not know how well each of these is performing, nor do I know anything about the parameters of the test. I would love to hear more about the test if Smashing Magazine was to share. Maybe they will release a post about it sometime in the future <i>(wink wink)</i>?</p>

<img src="http://www.shayhowe.com/wp-content/themes/letscounthedays/articles/defining-multivariate-testing/sm-text.jpg" alt="Multivariate Testing Text" />
<p class="full"><strong>Variable: Text</strong> &ndash; <em>Simple enough, these two combinations are strictly comparing the call to action text.</em></p>

<img src="http://www.shayhowe.com/wp-content/themes/letscounthedays/articles/defining-multivariate-testing/sm-text-button.jpg" alt="Multivariate Testing Text and Buttons" />
<p class="full"><strong>Variables: Text and Button</strong> &ndash; <em>These combinations are slightly different from the first set. Here the call to action text is different as they have added a button into the mix, and the Smashing brand is down played a little from the previous examples.</em></p>

<img src="http://www.shayhowe.com/wp-content/themes/letscounthedays/articles/defining-multivariate-testing/sm-color.jpg" alt="Multivariate Testing Color" />
<p class="full"><strong>Variable: Color</strong> &ndash; <em>Here is a new set of combinations, of which the strong variable is the colors of the buttons. The color of the buttons changes along with the text within the buttons as necessary. Also notable, the color of the text &#8220;Smashing&#8221; within the bottom two examples changes to emphasize the brand within the bottom right example.</em></p>

<img src="http://www.shayhowe.com/wp-content/themes/letscounthedays/articles/defining-multivariate-testing/sm-position-size.jpg" alt="Multivariate Testing Position and Size" />
<p class="full"><strong>Variables: Position and Size</strong> &ndash; <em>Within these two examples Smashing Magazine mixes testing position along with size. The image of the book switches from the right hand side to the left of the call to action. Additionally, the size of the button is increased within the example on the right.</em></p>

<img src="http://www.shayhowe.com/wp-content/themes/letscounthedays/articles/defining-multivariate-testing/sm-text-size-color.jpg" alt="Multivariate Testing Text, Size, and Color" />
<p class="full"><strong>Variables: Text, Size, and Color</strong> &ndash; <em>Paying attention to the small details, this example tests the effectiveness of different context. In doing so, they slightly change the size of the text.  Notice the text on the right example is just a tad larger than the left. In addition, the color of the pricing is different from one example to the next.</em></p>

<img src="http://www.shayhowe.com/wp-content/themes/letscounthedays/articles/defining-multivariate-testing/sm-more.jpg" alt="Multivariate Testing Random Elements" />
<p class="full"><strong>Variables: Random</strong> &ndash; <em>These are just a few of the additional examples I found thrown into the mix, each of which is testing a random combination of elements.</em></p>

<p>The multivariate test by Smashing Magazine is a great example of a multivariate test as it is testing a wide array of elements. The test does a fantastic job at testing the brand, headings, text, images, and buttons. In doing so, they often change the size, shape, color, and position of different elements. There was a decent amount of planning put into this test and it is obvious that Smashing Magazine knows what they are doing.</p>

<p>Related posts:<ol><li><a href='http://www.shayhowe.com/web-design/10-ecommerce-tips/' rel='bookmark' title='Permanent Link: 10 Quick E-Commerce Tips'>10 Quick E-Commerce Tips</a></li>
<li><a href='http://www.shayhowe.com/web-design/designing-call-to-action/' rel='bookmark' title='Permanent Link: Designing a Strong Call to Action'>Designing a Strong Call to Action</a></li>
<li><a href='http://www.shayhowe.com/web-design/designing-landing-pages/' rel='bookmark' title='Permanent Link: Landing Page Design'>Landing Page Design</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.shayhowe.com/web-design/defining-multivariate-testing/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The Smashing Book in Review</title>
		<link>http://www.shayhowe.com/resource/the-smashing-book-review/</link>
		<comments>http://www.shayhowe.com/resource/the-smashing-book-review/#comments</comments>
		<pubDate>Fri, 29 Jan 2010 01:13:06 +0000</pubDate>
		<dc:creator>Shay Howe</dc:creator>
				<category><![CDATA[Resource]]></category>
		<category><![CDATA[Review]]></category>
		<category><![CDATA[Usability]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.shayhowe.com/?p=963</guid>
		<description><![CDATA[The Smashing Book has been well praised from within the web design and development community. Smashing Magazine typically releases high quality content but does the book live up to the hype?


Related posts:<ol><li><a href='http://www.shayhowe.com/usability/universal-website-usability-rules/' rel='bookmark' title='Permanent Link: Universal Website Usability Rules'>Universal Website Usability Rules</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<h1><a href="/resource/the-smashing-book-review/">Does the The Smashing Book Live Up to the Hype?</a></h1>

<img class="cover" src="http://www.shayhowe.com/wp-content/themes/letscounthedays/articles/the-smashing-book-review/cover.jpg" alt="The Smashing Book Review" />

<p>Smashing Magazine is one of the largest web design and development blogs online. They publish high quality content on a regular basis and are often seen as one of the most reliable sources within the industry. When they started kicking around the idea of creating a book the community widely encouraged it. After much talk the idea of creating a book, <a href="http://www.smashingmagazine.com/2009/12/03/smashing-book-its-out-now/" title="The Smashing Book" rel="nofollow">The Smashing Book</a>, became a reality and Smashing Magazine went to work. To say that it was a difficult process for Smashing Magazine would be an understatement. As with every project they had their fair amount of roadblocks and then some. Regardless of what was put in from of them Smashing Magazine managed to release a book filled with excellent content written by none other than their own community.</p>
 
<p>Each chapter is written by a different author or authors, of which has appeared on Smashing Magazine before. Perhaps they have written an article for the blog before or maybe they have appeared within the articles themselves. The authors of the book are well established within the community and are experts in their line of work. Each chapter is well crafted to the personal style of the author(s) and is packed with valued content. Let&#8217;s start from the beginning, shall we.</p><span id="more-963"></span>

<h4>In Review</h4>

<h3>Opening/Preface</h3>
<p>The preface to The Smashing Book was very short and there was no introduction chapter disclaiming who the book is or is not for. The book does not waste anytime and quickly gets right to the content. I loved the fact that I did not have to wade through a chapter with an unnecessary introduction. Perfect!</p>

<h3>Chapter 1 &ndash; User Interface Design in Modern Web Applications
<em>by Dmitry Fadeyev</em></h3>

<img src="http://www.shayhowe.com/wp-content/themes/letscounthedays/articles/the-smashing-book-review/chapter-1.jpg" alt="Chapter 1 - User Interface Design in Modern Web Applications" />

<p>The first chapter, User Interface Design in Modern Web Applications, written by <a href="http://www.usabilitypost.com/" title="Dmitry Fadeyev" rel="nofollow">Dmitry Fadeyev</a> was a great opening to the book. Dmitry starts out by giving us an overview of the building blocks of visual interface design and how they relate to developing a quality application. In doing so, he covers things such as layout and positioning, size and shape, as well as color, contrast, and texture. Moving from building blocks into the practical techniques Dmitry discusses how different elements of a user interface can play a large part in the success of a web application. A few of the design techniques he mentions include whitespace, rounded corners, color, shadows, and more. He also touches on other elements outside of design including using verbs as field labels, auto focusing inputs, using help messages, and so forth. I won&#8217;t give all of Dmitry&#8217;s techniques away as this is definitely a chapter worth your while.</p>

<blockquote>
&#8220;Even if someone uses an interface for the first time, certain elements can still be familiar.&#8221;
<span>Excerpt from Chapter 1</span>
</blockquote>

<h3>Chapter 2 &ndash; The Art and Science of CSS-Layouts
<em>by Jacob Gube and Kayla Knight</em></h3>

<img src="http://www.shayhowe.com/wp-content/themes/letscounthedays/articles/the-smashing-book-review/chapter-2.jpg" alt="Chapter 2 - The Art and Science of CSS-Layouts" />

<p><a href="http://sixrevisions.com/" title="Jacob Gube" rel="nofollow">Jacob Gube</a> and <a href="http://webitect.net/" title="Kayla Knight" rel="nofollow">Kayla Knight</a> tackle The Art and Science of CSS-Layouts in the second chapter of the book. They explain the differences between fixed-width, fluid, elastic, and hybrid CSS-layouts. The chapter gives a detailed explanation of each layout type along with the pros and cons behind each. Their explanations include the basic principles behind each layout type as well as where each layout type is most commonly suitable. Apart from the solid explanations the chapter also provides a few CSS examples to get you started. Some people may argue against different types of CSS-layouts but after giving this chapter a read I believe you may be more open minded to giving other layout types a try.</p>

<blockquote>
&#8220;The question of optimal layout doesn&#8217;t have a single answer. Depending on the context, the time constraints and designer&#8217;s skills, each layout type has its purpose.&#8221;
<span>Excerpt from Chapter 2</span>
</blockquote>

<h3>Chapter 3 &ndash; Web Typography: Rules, Guidelines, and Common Mistakes
<em>by Alessandro Cattaneo, Yves Peters and Jon Tan</em></h3>

<img src="http://www.shayhowe.com/wp-content/themes/letscounthedays/articles/the-smashing-book-review/chapter-3.jpg" alt="Chapter 3 - Web Typography: Rules, Guidelines, and Common Mistakes" />

<p>Web typography has been a hot topic as of lately, so it is no surprise that the third chapter, Web Typography: Rules, Guidelines, and Common Mistakes, was a massive one. I understand the idea of covering a different aspect of web design and development in each chapter, but I feel like this chapter could have been split into two as it is nearly twice as big as all of the other chapters. That being said the content of this chapter was superb.</p>

<p>When it comes to web typography there is a lot to talk about and Alessandro Cattaneo, <a href="http://fontfeed.com/" title="Yves Peters" rel="nofollow">Yves Peters</a> and <a href="http://jontangerine.com/" title="Jon Tan" rel="nofollow">Jon Tan</a> leave no stone unturned. They discuss different elements of typography such as legibility, readability, measure, tracking, and leading, as well as giving us an overview of all of the different typography terms and what they actually mean. Beyond this they also talk about the different techniques used within typography to really add value to the content. They do so by talking about font sizes, white space, building a grid, vertical rhythm, hierarchy, typesetting, paying attention to details, and so forth. It is obvious the authors of this chapter know what they are talking about and whether you are a seasoned typographer or a beginner there is something to learn from within this chapter.</p>

<blockquote>
&#8220;In its essence, typography is a powerful medium that allows for precise, effective communication. On the Web, typography can be used to enhance content, turning lifeless chunks of data into vivid, elegant conversations.&#8221;
<span>Excerpt from Chapter 3</span>
</blockquote>
 
<h3>Chapter 4 &ndash; Usability Principles for Modern Websites
<em>by Andrew Maier and David Leggett</em></h3>

<img src="http://www.shayhowe.com/wp-content/themes/letscounthedays/articles/the-smashing-book-review/chapter-4.jpg" alt="Chapter 4 - Usability Principles for Modern Websites" />

<p>Chapter four, Usability Principles for Modern Websites, comes from some of the good folks over at UX Booth, <a href="http://www.uxbooth.com/" title="Andrew Maier" rel="nofollow">Andrew Maier</a> and <a href="http://www.tutorial9.net/" title="David Leggett" rel="nofollow">David Leggett</a>. Really breaking down the core elements for usability within modern websites is a challenge. Doing it within one chapter is an even bigger challenge, kudos to Andrew and David for pulling it off successfully. The chapter covers everything from how users think to how important user testing is. Along the way you learn about some of the core usability rules and principles including putting content first, honoring standard usability conventions, and how to really plan out and design your interface. This chapter is jammed packed with information, worthy of a second read to pick up on things missed the first time around.</p>

<blockquote>
&#8220;Creating a great user experience takes a little bit of skill, a little bit of luck and a lot of detailed work.&#8221;
<span>Excerpt from Chapter 4</span>
</blockquote>
 
<h3>Chapter 5 &ndash; The Ultimate Guide to Fantastic Color Usage in Web Design, Usability, and Experience
<em>by Darius A Monsef IV</em></h3>

<img src="http://www.shayhowe.com/wp-content/themes/letscounthedays/articles/the-smashing-book-review/chapter-5.jpg" alt="Chapter 5 - The Ultimate Guide to Fantastic Color Usage in Web Design, Usability, and Experience" />

<p>Color just may be the most under rated element when it comes to web design. All too often designers are given a logo and from that they pick a few complimentary colors and run with it. <a href="http://www.colourlovers.com/" title="Darius A Monsef IV" rel="nofollow">Darius A Monsef IV</a> explains how to pick great colors in chapter five, The Ultimate Guide to Fantastic Color Usage in Web Design, Usability, and Experience. Darius give us the basics on color theory and explains the different color models commonly used today. From there he quickly moves on to providing fantastic examples of different color schemes and palettes used within modern websites today. The examples are amazing and it is obvious that quite a bit of time went into finding the examples. Furthermore, Darius finished the chapter by explaining how different colors can relate to usability, engagement, and experience. It is difficult to say, but this chapter just might be my favorite.</p>

<blockquote>
&#8220;Even when your website has a lot of colors, you can draw users to a certain element by giving that element a color unique to the page.&#8221;
<span>Excerpt from Chapter 5</span>
</blockquote>

<h3>Chapter 6 &ndash; Performance Optimization for Websites
<em>by Rene Schmidt</em></h3>
<img src="http://www.shayhowe.com/wp-content/themes/letscounthedays/articles/the-smashing-book-review/chapter-6.jpg" alt="Chapter 6 - Performance Optimization for Websites" />

<p>Rene Schmidt does a great job explaining helpful ways in which we can optimize the performance of our websites in chapter six, Performance Optimization for Websites. The chapter starts by laying out  a few simple suggestions that almost any web designer and developer could implement. A few of these suggestions include paying attention to your file and image sizes, using CSS sprites, potentially using a content delivery network, using only external CSS and JavaScript (no inline styling or scripting), validating your pages, and so forth. After this Rene gets into the more technical side of performance optimization providing ways to tweak and speed up your server by directly modifying the server. This part of the chapter is not applicable to everyone, however it is very informational. The best part about this chapter is that after each tip or suggestion given Rene highlights exactly why it is helpful and why you should take it into consideration.</p>

<blockquote>
&#8220;Slow and unresponsive web sites are annoying. And if your website is annoying, your visitors are unlikely to buy goods or contact you.&#8221;
<span>Excerpt from Chapter 6</span>
</blockquote>

<h3>Chapter 7 &ndash; Design to Sell: Increasing Conversion Rates
<em>by Dmitry Fadeyev</em></h3>

<img src="http://www.shayhowe.com/wp-content/themes/letscounthedays/articles/the-smashing-book-review/chapter-7.jpg" alt="Chapter 7 - Design to Sell: Increasing Conversion Rates" />

<p><a href="http://www.usabilitypost.com/" title="Dmitry Fadeyev" rel="nofollow">Dmitry Fadeyev</a>, whom also wrote the first chapter, tackles how to increase your conversion rates online in chapter seven, Design to Sell: Increasing Conversion Rates. Dmitry talks about the 4 principles needed to increase conversions, attention, interest, desire, action, or AIDA for short. In doing so he outlines quite a few recommendations including really showing the product (possibly using video to do so) to users, provide users with comprehensible lists, give back to users who convert, add testimonials and product recommendations, always provide the next requested action, drive demand with limited time offers, promote money back guarantees, provide shipping cost, and most importantly make your interface instinctual and easy to use. Dmitry does a great job explaining his recommendations and the benefits behind them, making this chapter especially educational.</p>

<blockquote>
&#8220;You need to break down the barriers that customers will put up when evaluating how valuable your product is to them.&#8221;
<span>Excerpt from Chapter 7</span>
</blockquote>
 
<h3>Chapter 8 &ndash; How to Turn a Site into a Remarkable Brand
<em>by Chris Spooner</em></h3>

<img src="http://www.shayhowe.com/wp-content/themes/letscounthedays/articles/the-smashing-book-review/chapter-8.jpg" alt="Chapter 8 - How to Turn a Site into a Remarkable Brand " />
 
<p>Inside chapter eight, How to Turn a Site into a Remarkable Brand, <a href="http://www.blog.spoongraphics.co.uk/" title="Chris Spooner" rel="nofollow">Chris Spooner</a> gives readers 5 guidelines or tips on how to make your website memorable and your brand stand out. The first guideline covered is to produce a unique design by using stunning visuals and breaking the mold while still following universal design principles. The next guideline is based on producing quality content that is not only interesting, but useful as well. The third guideline focuses on exploring new concepts, being unique, and making your brand entertaining. The fourth guideline is something we can all agree with, become part of the community. Last, Chris talks about building a buzz around your brand by advertising, creating link bait, and really getting inside people&#8217;s heads. Chris has created a solid brand for himself and within this chapter he does a great job of sharing how he built his brand, allowing us to learn from him.</p>

<blockquote>
&#8220;Building a remarkable brand takes constant and daily effort and attention. Be confident in your content, help others, spread the word and you&#8217;ll be on your way to a remarkable high-profile brand of your own.&#8221;
<span>Excerpt from Chapter 8</span>
</blockquote>
 
<h3>Chapter 9 &ndash; Learning from Experts: Interviews and Insights
<em>by Steven Snell</em></h3>

<img src="http://www.shayhowe.com/wp-content/themes/letscounthedays/articles/the-smashing-book-review/chapter-9.jpg" alt="Chapter 9 - Learning from Experts: Interviews and Insights " />
 
<p>Chapter nine, Learning from Experts: Interviews and Insights, by <a href="http://vandelaydesign.com/blog/" title="Steven Snell" rel="nofollow">Steven Snell</a> is kind of an odd chapter, however very helpful. The chapter basically breaks down into a question and answer with some of the top designers and developers in the industry including Jason Santa Maria, Paul Boag, Andy Budd, Elliot Jay Stocks, Chris Coyier, Dave Shea, Nick La, and more. The questions are broken into 4 categories: Designing and Development, The Design Process, Self-Improvement and Skill Development, and Business and Freelancing. The questions and answers are both well thought out and descriptive. While this chapter is not the most exciting chapter in the book it is very interesting and a great way to bring together what has been talked about in all of the previous chapters.</p>

<blockquote>
&#8220;Web design is still relatively new when compared to the rest of the disciplines in the &#8216;big d&#8217; design field.&#8221;
<span>Excerpt from Chapter 9</span>
</blockquote>
 
<h3>Chapter 10 &ndash; Behind the Curtains: The Smashing Magazine Story</h3>

<img src="http://www.shayhowe.com/wp-content/themes/letscounthedays/articles/the-smashing-book-review/chapter-10.jpg" alt="Chapter 10 - Behind the Curtains: The Smashing Magazine Story" />
 
<p>The final chapter, Behind the Curtains: The Smashing Magazine Story, is an excellent way to close the book. For those strictly reading the book to learn about web design and development this chapter probably is not for you, but those who are genuinely interested in Smashing Magazine and would like to learn about them this is the time. This chapter covers it all including how Smashing Magazine started, exactly how they got to be as successful as they are and how they stay successful, as well as what happens behind the scenes. Last, Smashing Magazine thanks everyone within the web design community, stating if it was not for us they would not be where they are today. I would personally like to say the same. I would not be where I am today if it was not for the help of Smashing Magazine, thank you Smashing Magazine.</p>

<blockquote>
&#8220;Our job is not only to contribute to the design community but to help maintain this fertile environment in which ideas are born, insights are exchanged and discussions take place, making the lives of designers and developers easier and richer.&#8221;
<span>Excerpt from Chapter 10</span>
</blockquote>
 
<h4>9 Stars Out of 10</h4>
 
<p>The content of the book is next to none. All of the chapters are greatly detailed and well written. I cannot say enough about the authors and content of the book. My problem with the book is the amount of time it took to release as well as the physical quality of the book. I pre-ordered the book on August 5, 2009 and did not receive it until January 2, 2010, almost five months later. Smashing Magazine has been admirably honest and admits they had numerous setbacks while publishing the book. I also recognize that I did pre-order the book, at which time the release date was not set.</p>

<p>As for the physical quality of the book, the binding on the book fell apart. During the course of reading the book the binding began to split and pages started to fall out. Luckily, Smashing Magazine has recognized the bad binding and have stopped shipping this version of the book. They have fixed the binding and are now strictly shipping the second, fixed binding, edition of the book. Smashing Magazine was nice enough to send me a copy of the new edition of the book upon hearing my troubles.</p>
 
<p>In all, the book is outstanding and I highly recommend picking it up! It does not matter if you&#8217;re a veteran designer or new to the scene, <a href="http://www.smashingmagazine.com/2009/12/03/smashing-book-its-out-now/" title="Buy The Smashing Book" rel="nofollow">you can definitely benefit from purchasing this book</a>. Thank you Smashing Magazine for yet another satisfying experience.</p>

<p class="sm">You may view the all of the links and resources included within the book over at Smashing Magazines <a href="http://smashing-links.com/" title="The Smashing Book Links" rel="nofollow">list of links</a>.</p>

<p>Related posts:<ol><li><a href='http://www.shayhowe.com/usability/universal-website-usability-rules/' rel='bookmark' title='Permanent Link: Universal Website Usability Rules'>Universal Website Usability Rules</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.shayhowe.com/resource/the-smashing-book-review/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Strategizing Web Content</title>
		<link>http://www.shayhowe.com/web-design/web-content-strategy/</link>
		<comments>http://www.shayhowe.com/web-design/web-content-strategy/#comments</comments>
		<pubDate>Tue, 12 Jan 2010 23:33:45 +0000</pubDate>
		<dc:creator>Shay Howe</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Resource]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Usability]]></category>

		<guid isPermaLink="false">http://www.shayhowe.com/?p=922</guid>
		<description><![CDATA[Users do not commonly browse the internet looking for a good design or decent user experience. Users browse in search of good content. The more effort you put into your content the better the pay off.


Related posts:<ol><li><a href='http://www.shayhowe.com/resource/writing-user-friendly-content/' rel='bookmark' title='Permanent Link: Writing User Friendly Content'>Writing User Friendly Content</a></li>
<li><a href='http://www.shayhowe.com/seo/web-content-optimization-guidelines/' rel='bookmark' title='Permanent Link: Content Optimization Guidelines'>Content Optimization Guidelines</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<h1><a href="/web-design/web-content-strategy/">Writing for the Web: The Right Strategy</a></h1>

<p>When it comes to designing a website, content is often overlooked, but why? Very rarely do users browse the web looking for a good design or decent experience. Users come for the content. Not giving them what they want with poorly written content will frustrate users. Not only does it waste their time, but your time as well.</p>

<h3>Writing for the Web: The Right Strategy presented by Shay Howe</h3>
<p><em>Refresh Chicago, January 12th, 2010</em></p>

<div style="width:425px;margin:0 auto;padding-bottom:18px;" id="__ss_2891758"><object style="margin:0px" width="425" height="355"><param name="movie" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=refresh-presentation-100111212541-phpapp02&#038;stripped_title=writing-for-the-web-the-right-strategy-2891758" /><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/><embed src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=refresh-presentation-100111212541-phpapp02&#038;stripped_title=writing-for-the-web-the-right-strategy-2891758" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object></div><span id="more-922"></span>

<h4>The Problem</h4>

<h3>Online content is bad. Real bad.</h3>
<p>Generally speaking, the Internet is lacking when it comes to quality content. People are not properly taking advantage of the opportunity in front of them and commonly fall short with insufficient content.</p>

<h3>Content is low priority.</h3>
<p>All too often we get caught up in the design and development of a website to pay attention to the content. We understand that the website will have a blog, about page, and contact page, but that is as far as we get. From the introduction of a project content takes a low priority.</p>

<h3>Content is last minute.</h3>
<p>Some people do not even think about content until the day that the website is completely designed, developed, and ready to be rolled out. The wireframe, site map, and graphics are all water under the bridge by now. The only thing missing at this point is the content. All too often the content has not even been assigned or allocated to anyone at this point.</p>

<h3>Users notice bad content.</h3>
<p>If your copy is updated, cheerful, and friendly users will not notice. If your content is sterile and resembling a textbook, users will notice and you will hear about it. The second your product description starts to drag users will jump ship.</p>

<a href="http://www.mint.com/" title="Mint" rel="nofollow">
<img src="http://www.shayhowe.com/wp-content/themes/letscounthedays/articles/web-content-strategy/mint.png" alt="Mint" />
<p class="full"><strong>Mint</strong> &ndash; <em>Mint has welcoming copy that often goes unnoticed because it is good, friendly content.</em></p></a>

<h3>Make your content work.</h3>
<p>The only way to overcome this horrid content is to make your content work harder. Before you begin any wire frames or development sit down as a whole and put together a content strategy. Initiate a strategy that will outline the metrics needed to keep your content moving forward.</p>

<h4>Developing a Strategy</h4>

<p>Kristina Halvorson has written an amazing book, <a href="http://www.contentstrategy.com/" title="Content Strategy for the Web Book" rel="nofollow">&ldquo;Content Strategy for the Web&rdquo;</a>, which goes into great detail on how to create a content strategy for the web. The following section summarizes some of her most important points. Please support her and purchase her book for more information.</p>

<h3>Create, publish, and govern.</h3>
<p>When putting together a content strategy it is important to understand that your strategy needs to cover not only creating and publishing the content, but governing the content as well. Once a website is live and time passes by content will become obsolete and need to be updated. This includes images and videos as well as the text itself.</p>
 
<h3>Think &ldquo;lifecycle&rdquo; not &ldquo;launch&rdquo;.</h3>
<p>Typically a website is launched everyone involved moves on to bigger and better things. We need to break the &ldquo;launch&rdquo; mindset and focus on the &ldquo;lifecycle&rdquo; of a website rather than the initial lift off. Plan to have an individual or team in charge of occasionally updating and checking the content.</p>

<h3>Stop the separation.</h3>
<p>Who is really in charge of creating the content? Designers and developers? The client? Marketing and research? Information architects? Truth be told, we all are in charge. Bring everyone together to work on the content strategy as a whole and the content will take life.</p>

<img src="http://www.shayhowe.com/wp-content/themes/letscounthedays/articles/web-content-strategy/who-on.png" alt="We are all in charge of online content." style="border:none;" />

<h3>Stop using lorem ipsum.</h3>
<p>Lorem ipsum will not, at all, resemble your actual content. Stop using it as a placeholder within your design or wireframe as it will be mismatched to the real content that will be delivered. While you are all together initiating a content strategy think through the content and any implications you may encounter. Know how to handle multiple levels of headings, ordered list, blockquotes, and other situations a head of time.</p>

<h3>Answer more than just what.</h3>
<p>If all your content does is tell what the website is about you&rsquo;re missing the point. Quality content will answer the what, why, when, where, how, and who. Go over the website inside and out and cover your tracks. Make sure any possible questions a user may have are answered upfront.</p>

<h3>Set goals.</h3>
<p>Measuring your success can be difficult if you do not set goals. Figure out what you are looking to achieve with your website and exactly how your content can play a role in helping. Outline your goals and use them as motivation moving forward.</p>

<h3>Determine accomplishments.</h3>
<p>Figure out exactly what you want to accomplish with your content. Maybe it is to help sell a specific product, to build brand recognition, or to drive form conversions. Whatever you are looking to accomplish, define it now and then, work towards accomplishing it within your content. Knowing what you need to accomplish is easier than taking a stab in the dark.</p>

<h3>Recognize risk.</h3>
<p>Try to recognize any potential risk involved with developing content. Are you worried about being too edgy or too dull? Figure out exactly what your pressure points are and then plan on how to overcome the risk.</p>

<a href="http://www.flickr.com/" title="Flickr" rel="nofollow">
<img src="http://www.shayhowe.com/wp-content/themes/letscounthedays/articles/web-content-strategy/flickr.png" alt="Flickr" />
<p class="full"><strong>Flickr</strong> &ndash; <em>Flickr avoids being dull by welcoming users in a different language every time they visit their profile.</em></p></a>

<h3>Outline content structure.</h3>
<p>All websites need to have a structure to their content and this structure needs to be carried out through every single page on the site. Outline a content structure that covers your headings, body text, linking between pages, as well as your narrative, tense, and flow. Really go over your content structure and determine how you will stay consistent throughout the entire website.</p>

<h3>Identify roadblocks.</h3>
<p>As with every other part of the project you are bound and determined to run into a few roadblocks when creating content. Is user research going to hold you up from getting a proper start on the content? Is marketing going to come down on you when they feel that the brand is not properly being carried out? Or, is legal going to tell you to completely scrap entire sections of the content? Identify what roadblocks you may encounter and figure out how you will move around them.</p>

<h3>Determine overall messaging.</h3>
<p>When putting together the content strategy this is the best time to determine the overall messaging of the website. This is a hard question to tackle so getting a head start on it now makes all the difference. Put together some recommendations for the overall messaging and tone of the website and how it should be conveyed. Chances are you will not completely iron out the messaging and that is fine, but getting a head start is crucial.</p>

<a href="http://madebygiant.com/" title="GIANT Creative" rel="nofollow">
<img src="http://www.shayhowe.com/wp-content/themes/letscounthedays/articles/web-content-strategy/giant-creative.png" alt="GIANT Creative" />
<p class="full"><strong>GIANT Creative</strong> &ndash; <em>GIANT Creative has a great overall messaging that is carried out through the entire website.</em></p></a>

<h3>Assign launch priorities.</h3>
<p>Since the website will be a work in progress and you plan to continually make updates to the content, figure out where you want the content to be at launch. A lot of projects are time sensitive and getting off the ground is very important. Decide what needs to be completed before launch and what can be incorporated after launch. Do not, I repeat, do not launch a website for the sake of getting it live with the mindset that you will review the content later. This happens all too common and the content is never defined after launch.</p>

<h3>Decide content hierarchy.</h3>
<p>Now is also the time to decide your content hierarchy, meaning in what order do you want to present your messaging to users. Put your most important messaging first then move users back within the site for more information if they wish. Throwing all the content you can at users all at once will not work. Decide in what order you wish to present the content to the users.</p>

<h3>Prepare sub page recommendations.</h3>
<p>A content strategy should include recommendations for the home page all the way down to sub pages. Outline if some sub pages will receive specific templates to better convey messaging. Also determine how the sub pages will carry out the top level messaging, stay consistent from one page to another, and how they will all link and interlace.</p>

<p>In general, your strategy needs to provide all information needed to make any decisions when producing and creating the content. While developing the strategy you need to reach out to all of those whom may have some input. Gathering their input now, rather than later, will hopefully help prevent any roadblocks from occurring later on. Furthermore, use this time to set guidelines on to how the content will be maintained and updated moving forward.</p>

<h4>Writing Quality Content</h4>

<p>There are many different factors that all play into writing quality content. Many of which I addressed in my article <a href="/resource/writing-user-friendly-content/" title="Writing User Friendly Content">&ldquo;Writing User Friendly Content&rdquo;</a>, including:</p>

<ul>
<li>Give users a summary.</li>
<li>Get to the point quickly.</li>
<li>Use small sentences.</li>
<li>Limit one thought per paragraph.</li>
<li>Use bullet points.</li>
<li>Use sub headings.</li>
<li>Do not over use exclamations!!!</li>
<li>Drive emphasis with repetition.</li>
<li>Drop unnecessary adjectives.</li>
<li>Use details, be specific.</li>
<li>Use hyperlinks.</li>
<li>Use a personal tone.</li>
<li>Be unique.</li>
<li>Escape content overload.</li>
</ul>

<p>These are just to name a few. Please refer to the article for further details and complete explanations. In addition to these points I would also like to add:</p>

<h3>Forget the sales pitch.</h3>
<p>Online users are used to the typical sales pitch and can spot it from a mile away. It is commonly tasteless and users hate it. Instead, present them the facts in a friendly manner and let users decide for themselves.</p>

<h3>Keep content understandable.</h3>
<p>Having clear and understandable content is easier said than done. What may be understandable to you may not be to someone else. If a user struggles to find what they are looking for or to understand any of the content they will pounce on the back button like no tomorrow.</p>

<h3>Communicate conversationally.</h3>
<p>Communicate conversationally with a more casual tone and voice to allow for a friendlier and easier reading experience. Users will be extremely happy with content they can understand and you can rest assured you avoided them any frustration.</p>

<a href="http://carrotcreative.com/" title="Carrot Creative" rel="nofollow">
<img src="http://www.shayhowe.com/wp-content/themes/letscounthedays/articles/web-content-strategy/carrot.png" alt="Carrot Creative" />
<p class="full"><strong>Carrot Creative</strong> &ndash; <em>Carrot Creative uses a friendly tone and characteristic content to provide for very enjoyable reading.</em></p></a>

<h3>Do not brag.</h3>
<p>No one likes a showoff and the same goes online. Do not brag or boast about how popular you are or how well you did last year. You must earn your users trust and any pompous language will not sit well.</p>

<h3>Avoid industry slang.</h3>
<p>I could ramble all day about front-end and back-end development along with different content management systems, but would my audience understand me? No. Speak in terms that everyone will understand.</p>

<h4>Bringing Content to Life</h4>

<h3>Apply your hierarchy.</h3>
<p>Take the hierarchy you decided on within your strategy and apply it using different headings, text sizes, and typefaces. As before, put your most important messaging first and show users where to begin. From there guide them through the rest of the website.</p>

<a href="http://37signals.com/" title="37signals" rel="nofollow">
<img src="http://www.shayhowe.com/wp-content/themes/letscounthedays/articles/web-content-strategy/37signals.png" alt="37signals" />
<p class="full"><strong>37signals</strong> &ndash; <em>37signals uses a creative design to apply their hierarchy and to guide users down the page.</em></p></a>

<h3>Make content able to be scanned.</h3>
<p>One of the most important things to take into consideration when creating and stylizing your content is to make sure that it can be scanned. Users do not read content online, they scan it. Make sure you break up your text using multiple headlines, bullet points, short paragraphs, and descriptive links.</p>

<a href="http://www.hugeinc.com/" title="Huge" rel="nofollow">
<img src="http://www.shayhowe.com/wp-content/themes/letscounthedays/articles/web-content-strategy/huge.png" alt="Huge" />
<p class="full"><strong>HUGE</strong> &ndash; <em>Huge adheres to all reading types by breaking up their content with paragraphs, list, and other grid based elements.</em></p></a>

<h3>Stylize your text.</h3>
<p>Make use of common text styling elements like bold, italics, shadows, and so forth as they help to bring life to your content. A little bit of an added touch can go a long way so be sure not to overdo it. Too much style and your content can start to look gaudy.</p>

<a href="http://www.ndesign-studio.com/" title="N.Design Studio" rel="nofollow">
<img src="http://www.shayhowe.com/wp-content/themes/letscounthedays/articles/web-content-strategy/ndesign.png" alt="N.Design Studio" />
<p class="full"><strong>N.Design Studio</strong> &ndash; <em>N.Design Studio uses a variety of text effects including multiple typefaces, colors, sizes, strokes, and more.</em></p></a>

<h3>Play with different fonts.</h3>
<p>Online we are commonly limited to a specific number of web friendly fonts. However with the improvements of @font-face and services like <a href="http://typekit.com/" title="Typekit">Typekit</a> the number of fonts is quickly growing. Use different fonts to help deliver your content in a more aesthetic manner. As with adding stylization to your text, be sure to pick a font that will compliment your design.</p>

<a href="http://www.viget.com/inspire/" title="Viget Inspire" rel="nofollow">
<img src="http://www.shayhowe.com/wp-content/themes/letscounthedays/articles/web-content-strategy/viget.png" alt="Viget Inspire" />
<p class="full"><strong>Viget Inspire</strong> &ndash; <em>The Viget Inspire blog uses multiple different typefaces for an added touch, easily taking the design to the next level.</em></p></a>

<h3>Use contrasting colors.</h3>
<p>Using black text on a black background probably is not a good idea. Pick colors that fit well with your layout and design. A bright contrasting color has the ability to really draw a user&rsquo;s attention. Use colors within your content to your advantage.</p>

<a href="http://www.bythepond.co.uk/" title="Friendly Duck" rel="nofollow">
<img src="http://www.shayhowe.com/wp-content/themes/letscounthedays/articles/web-content-strategy/bythepond.png" alt="Friendly Duck" />
<p class="full"><strong>Friendly Duck</strong> &ndash; <em>The contrasting orange color on Friendly Duck sticks out amongst the dark background and really draws users attention.</em></p></a>

<h3>Apply clean rags.</h3>
<p>Each line of unjustified text should be as close as possible to the same length as the other lines above and below it. Any large spaces at the end of a line will create a large gap that is hard to follow when reading. Further more, having text hanging out on the end of a section of text within the last line creates an unpleasing arrangement and is often over looked.</p>

<a href="http://www.happycog.com/" title="Happy Cog" rel="nofollow">
<img src="http://www.shayhowe.com/wp-content/themes/letscounthedays/articles/web-content-strategy/happycog.png" alt="Happy Cog" />
<p class="full"><strong>Happy Cog</strong> &ndash; <em>Happy Cog is aware of their rags and has taken the additional effort to make them as pleasing as possible.</em></p></a>

<h3>Exercise white space.</h3>
<p>A fair amount of white space in a design allows the content to breathe and makes it easier for users to read and follow. White space can also be used to build a grid within your layout and design. Which, in return, may help your content establish a rhythm for easier reading.</p>

<a href="http://elliotjaystocks.com/" title="Elliot Jay Stocks" rel="nofollow">
<img src="http://www.shayhowe.com/wp-content/themes/letscounthedays/articles/web-content-strategy/elliot.png" alt="Elliot Jay Stocks" />
<p class="full"><strong>Elliot Jay Stocks</strong> &ndash; <em>Elliot Jay Stocks uses white space to help sculpt his layout while allowing users to easily read and follow the content.</em></p></a>

<h3>Make graphics and text coincide.</h3>
<p>Excellent text and a strong graphic can communicate a powerful message, a message that has the ability to leave a lasting impact on users. Use graphics that work well with your text. Simply adding graphics to a page for no apparent purpose is distracting and aggravating for users.</p>

<a href="http://www.housingworks.org/" title="Housing Works" rel="nofollow">
<img src="http://www.shayhowe.com/wp-content/themes/letscounthedays/articles/web-content-strategy/housing.png" alt="Housing Works" />
<p class="full"><strong>Housing Works</strong> &ndash; <em>Housing Works makes use of emotional images to add a powerful impact to their messaging.</em></p></a>

<h3>Take advantage of CSS.</h3>
<p>Cascading style sheets give you the potential to not only add outstanding effects to your text, but to also set a content standard for text across an entire website. Setting standards in CSS ensures the consistency of your typography across an entire website.</p>

<h4>You Need Excellent Content</h4>

<p>Developing a strategy, writing quality content, and bringing that content to life take a tremendous amount of energy. The majority of companies do not have the resources, let alone the time and effort needed to develop great web content. Quality content requires a detailed procedure and hard work which will end up being worth it.</p>

<p>Having a content strategy along with quality content in place allows for a strong user&rsquo;s experience, better brand regularity, up to date working efficiency, improved risk management, more powerful search engine optimization, and more advantageous personality and targeting.</p>

<p>Stop acting like content is secondary nature, of which can be touched up at a later date. Start your projects with creating quality content and start today!</p>

<p class="sm">Very special thanks to Kristina Halvorson on her amazing contributions to educating the importance of web content. Please visit her at <a href="http://www.braintraffic.com/" title="Brain Traffic" rel="nofollow">Brain Traffic</a> or purchase her book <a href="http://www.contentstrategy.com/" title="Content Strategy for the Web Book" rel="nofollow">&ldquo;Content Strategy for the Web&rdquo;</a>.</p>

<p>Related posts:<ol><li><a href='http://www.shayhowe.com/resource/writing-user-friendly-content/' rel='bookmark' title='Permanent Link: Writing User Friendly Content'>Writing User Friendly Content</a></li>
<li><a href='http://www.shayhowe.com/seo/web-content-optimization-guidelines/' rel='bookmark' title='Permanent Link: Content Optimization Guidelines'>Content Optimization Guidelines</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.shayhowe.com/web-design/web-content-strategy/feed/</wfw:commentRss>
		<slash:comments>24</slash:comments>
		</item>
		<item>
		<title>Designing A Non-Profit Website</title>
		<link>http://www.shayhowe.com/web-design/tips-for-designing-a-non-profit-website/</link>
		<comments>http://www.shayhowe.com/web-design/tips-for-designing-a-non-profit-website/#comments</comments>
		<pubDate>Tue, 15 Sep 2009 02:07:15 +0000</pubDate>
		<dc:creator>Shay Howe</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Checklist]]></category>
		<category><![CDATA[Usability]]></category>

		<guid isPermaLink="false">http://www.shayhowe.com/?p=726</guid>
		<description><![CDATA[Designing a good non-profit website can be a phenomenal help to the organization. Here is a checklist of 54 tips to take into consideration when designing a website for a non-profit organization.


Related posts:<ol><li><a href='http://www.shayhowe.com/web-design/form-design/' rel='bookmark' title='Permanent Link: Website Form Design'>Website Form Design</a></li>
<li><a href='http://www.shayhowe.com/usability/universal-website-usability-rules/' rel='bookmark' title='Permanent Link: Universal Website Usability Rules'>Universal Website Usability Rules</a></li>
<li><a href='http://www.shayhowe.com/web-design/designing-home-pages/' rel='bookmark' title='Permanent Link: Home Page Design'>Home Page Design</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<h1><a href="/web-design/tips-for-designing-a-non-profit-website/">Ultimate Checklist for Designing A Non-profit Website</a></h1>

<img src="http://www.shayhowe.com/wp-content/themes/letscounthedays/articles/nonprofit-webdesign/nonprofit-webdesign.jpg" alt="Tips for Designing a Non-profit Website" />

<h4>Part 1: Content</h4>
<p>One of the goals behind a non-profit website should be to inform visitors and provide them with valued content, ultimately motivating them to take action or to be encouraged by your undertaking, accomplishments, and possibilities.</p>
<p><strong>Does the website:</strong></p><span id="more-726"></span>
<ol>
<li>Provide a mission statement that is easily accessible.</li>
<li>Provide an inspiring statement from executive director, president, or person in charge.</li>
<li>Provide a featured organization importance on the home page.</li>
<li>Provide a who, what, why, when, and where behind the organization.</li>
<li>Provide a history and origin behind the organization.</li>
<li>Provide informative material related to the organization.</li>
<li>Provide a list of board members and their positions.</li>
<li>Provide a list of principal staff members and their roles.</li>
<li>Provide a date of the most recent update to the website.</li>
<li>Provide a calendar and/or news to highlight time-sensitive material.</li>
<li>Provide a list of recent updates to the website.</li>
<li>Provide the most recent annual reports.</li>
</ol>

<h4>Part 2: Dependability</h4>
<p>Upon visiting the website visitors should feel that the organization is attentive, perceptive, proficient, virtuous, and responsible.</p>
<p><strong>Does the website:</strong></p>
<ol>
<li>Have correctly functioning internal and external links.</li>
<li>Have routinely fresh content.</li>
<li>Contain only correct and proper spellings.</li>
<li>Have appropriate and functioning pictures.</li>
<li>Supply a "Privacy Policy" for individual information.</li>
<li>Display the non-profit position of the organization.</li>
</ol>

<h4>Part 3: Interaction</h4>
<p>An essential behind a non-profit website is providing a strong call to action or form of interaction for visitors to help support and promote the organization's mission.</p>
<p><strong>Does the website:</strong></p>
<ol>
<li>Provide an address and phone number for the organization.</li>
<li>Allow visitors to filter their contact request to the correct person.</li>
<li>Ask for visitors email addresses.</li>
<li>Allow visitors to contribute by commenting or emailing.</li>
<li>Allow visitors to contribute by a form of social media. (Facebook, Twitter, etc.)</li>
<li>Provide a list and explanation of positions for volunteers.</li>
<li>Describe how and where funds will be used.</li>
<li>All for visitors to make donations online.</li>
<li>Explain if any donations may or may not be tad deductible.</li>
<li>Provide visitors' ways of how to help outside of donating.</li>
<li>Provide any success stories from those helped by the organization.</li>
<li>Clearly outline the services and goods provided by the organization.</li>
</ol>

<h4>Part 4: Visibility</h4>
<p>An organization's website needs to be visible to all visitors regardless of their physical or mental abilities.</p>
<p><strong>Does the website:</strong></p>
<ol>
<li>Pass accessibility standards.</li>
<li>Use valid HTML/XHTML code.</li>
<li>Look and function correctly across all major web browsers.</li>
<li>Perform correctly when being accessed by screen reading programs.</li>
<li>Have appropriately written content for the intended skill level of the audience.</li>
</ol>

<h4>Part 5: Interface</h4>
<p>A good interface can dramatically improve the production and presentation of an organization.</p>
<p><strong>Does the website:</strong></p>
<ol>
<li>Load without showing a splash page or advertisement.</li>
<li>Load swiftly for those with a broadband connection.</li>
<li>Perform correctly on an array of different screen resolutions.</li>
<li>Have a clean and friendly layout and design.</li>
<li>Prohibit pop-up windows on the home page.</li>
<li>Have a comprehensive and eligible navigation.</li>
<li>Provide all content within three or less clicks from the main navigation.</li>
<li>Provide a site map or search feature for large websites.</li>
<li>Have the logo or organization name on all pages.</li>
<li>Use proper titles and headings for all pages.</li>
<li>Use suitable named URLs.</li>
<li>Provide pertinent content without having to sign-up or register.</li>
<li>Allow a printer-friendly option for longer pages.</li>
<li>Use web friendly content. (Short paragraphs, bulleted list, etc.)</li>
<li>Use an appropriate contrast in order to read text (even when projected).</li>
<li>Visually separate hyperlinks from regularly styled content.</li>
<li>Use email addresses as links.</li>
<li>State the type and size of a file before being downloaded.</li>
<li>Use authentic graphics and images of which support the content.</li>
</ol>

<h4>Additional Resources</h4>
<p>You may also find the following resources beneficial. Please enjoy!</strong></p>
<ul>
<li><a href="http://www.smashingmagazine.com/2009/05/14/non-profit-website-design-examples-and-best-practices/" rel="nofollow" target="_blank">Non Profit Website Design: Examples and Best Practices</a></li>
<li><a href="http://designm.ag/inspiration/non-profit-websites/" rel="nofollow" target="_blank">40+ Inspirational Non-Profit Website Designs</a></li>
</ul>

<p>Related posts:<ol><li><a href='http://www.shayhowe.com/web-design/form-design/' rel='bookmark' title='Permanent Link: Website Form Design'>Website Form Design</a></li>
<li><a href='http://www.shayhowe.com/usability/universal-website-usability-rules/' rel='bookmark' title='Permanent Link: Universal Website Usability Rules'>Universal Website Usability Rules</a></li>
<li><a href='http://www.shayhowe.com/web-design/designing-home-pages/' rel='bookmark' title='Permanent Link: Home Page Design'>Home Page Design</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.shayhowe.com/web-design/tips-for-designing-a-non-profit-website/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Universal Website Usability Rules</title>
		<link>http://www.shayhowe.com/usability/universal-website-usability-rules/</link>
		<comments>http://www.shayhowe.com/usability/universal-website-usability-rules/#comments</comments>
		<pubDate>Sun, 19 Jul 2009 22:03:05 +0000</pubDate>
		<dc:creator>Shay Howe</dc:creator>
				<category><![CDATA[Usability]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Resource]]></category>

		<guid isPermaLink="false">http://www.shayhowe.com/?p=590</guid>
		<description><![CDATA[Website usability and user testing is a fast growing topic among the web design and development community, and rightfully so. Outlined here are 10 universal website usability rules you need to follow.


Related posts:<ol><li><a href='http://www.shayhowe.com/web-design/tips-for-designing-a-non-profit-website/' rel='bookmark' title='Permanent Link: Designing A Non-Profit Website'>Designing A Non-Profit Website</a></li>
<li><a href='http://www.shayhowe.com/web-design/form-design/' rel='bookmark' title='Permanent Link: Website Form Design'>Website Form Design</a></li>
<li><a href='http://www.shayhowe.com/web-design/designing-home-pages/' rel='bookmark' title='Permanent Link: Home Page Design'>Home Page Design</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<h1><a href="/web-design/universal-website-usability-rules/">10 Usability Rules You Need to Follow</a></h1>
<img src="http://www.shayhowe.com/wp-content/themes/letscounthedays/articles/usability-rules/website-usability.jpg" alt="Website Usability Rules" />

<h4>Present Information and Media in a Recognizable Manner</h4>
<p><strong>Provide Text Alternatives</strong> &ndash; Any images, videos, or non-text based media presented to the user must have a text alternative or accompanying text.</p>
<p><strong>Make Content Adaptable</strong> &ndash; Today information is spread across a wide spectrum including computers, mobile devices, and so forth. Make sure your content is adaptable to all of these spectrums without losing information or composition.</p><span id="more-590"></span>
<p><strong>Make Content Distinguishable</strong> &ndash; Your content should be recognizable to users and provided in a way that makes it easier for them to see and hear. The best way to accomplish this is by using color (more importantly contrast), size, and other stylizing elements. For any audio, video, or active media make sure to provide controls to start and stop the media.</p>

<h4>Present an Operational Interface and Navigation</h4>
<p><strong>Use Keyboard Shortcuts</strong> &ndash; Many users prefer not to use a mouse, in which case they browse the web using their keyboard. Allow your website to fully function from a keyboard and provide shortcuts where possible.</p>
<p><strong>Give Users Time</strong> &ndash; If you are using any videos or animations on your website that contain text or comprehensible parts give users enough time to read or take in these elements. Moving too fast will frustrate users and in retaliation they will leave your website.</p>
<p><strong>Do Not Use Annoying Media</strong> &ndash; Anything that blinks, flashes, or may produce anxiety will frustrate users. General rule, anything that blinks or flashes more than 3 times a second can be considered annoying.</p>
<p><strong>Provide Multiple Ways to Navigate</strong> &ndash; Give users complete control of your website by allowing them to navigate located information and direct where they are at all times. To do so provide users with internal links, titles and headings, breadcrumb navigation, search features, and other navigation components.</p>

<h4>Present Information and Media in an Understandable Manner</h4>
<p><strong>Use Readable Text</strong> &ndash; Make your text readable and understandable by using correct grammar and pronunciation. Present your content in a manner that would be understandable to a third grader.</p>
<p><strong>Be Predictable</strong> &ndash; The layout and design of your website should be consistent throughout and the way information is presented should be predictable by users. The easier it is to access information the better.</p>
<p><strong>Provide Assistance</strong> &ndash; Help users stay away from any potential errors and fix any mistakes that they may have made. Do so by providing tool tips, automatic spell checking, and providing descriptive error messages when feasible.</p>

<p>Related posts:<ol><li><a href='http://www.shayhowe.com/web-design/tips-for-designing-a-non-profit-website/' rel='bookmark' title='Permanent Link: Designing A Non-Profit Website'>Designing A Non-Profit Website</a></li>
<li><a href='http://www.shayhowe.com/web-design/form-design/' rel='bookmark' title='Permanent Link: Website Form Design'>Website Form Design</a></li>
<li><a href='http://www.shayhowe.com/web-design/designing-home-pages/' rel='bookmark' title='Permanent Link: Home Page Design'>Home Page Design</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.shayhowe.com/usability/universal-website-usability-rules/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
