<?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>BolducPress, a web design blog &#187; Design</title>
	<atom:link href="http://www.bolducpress.com/design/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bolducpress.com</link>
	<description>BolducPress is the blog of Joshua Bolduc, founder of the company - Part Digital Design</description>
	<lastBuildDate>Mon, 12 Apr 2010 16:13:31 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>10 mistakes beginners make when writing HTML</title>
		<link>http://www.bolducpress.com/design/10-mistakes-beginners-make-when-writing-html/</link>
		<comments>http://www.bolducpress.com/design/10-mistakes-beginners-make-when-writing-html/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 04:01:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://www.bolducpress.com/?p=1055</guid>
		<description><![CDATA[There are some mistakes that keep on coming back that always surprise me. Things like table based layout or tag attributes. I've even seen some professionals  use these. WHY?]]></description>
			<content:encoded><![CDATA[<h2 class="first">I&#8217;ll build it in HTML first, and then design it in Photoshop</h2>
<p>Many beginners are so excited about HTML that they completely neglect the design phase and go straight to their text editor. DON&#8217;T DO THIS! At least grab a paper and pencil and jot down some rough sketches! If you go straight to HTML you will lose sight of the bigger picture and the overall design will suffer as a result.</p>
<h2>I&#8217;ll just export it from Photoshop</h2>
<p>Photoshop is a great tool for designing interfaces but you should NEVER rely on it to generate your HTML. I don&#8217;t care what version of Photoshop you own, it simply can&#8217;t create the lean, standards based code that you can by hand. </p>
<p>The only time I would recommend using Photoshop&#8217;s HTML feature is if you want to create a semi-usable website for your client as a prototype. </p>
<h2>I don&#8217;t know how to code, I&#8217;ll just use the design view</h2>
<p>No no no no no!</p>
<p>There&#8217;s no way around it, if you want to produce quality HTML designs you&#8217;re going to have to use the code view. In fact, I would just recommend turning off design view entirely because they are notoriously unreliable. Do yourself a favor, code it by hand and use the browser to see your changes. </p>
<h2>Tables are great for layouts!</h2>
<p>There is no excuse for using tables for your layouts. Let me say that again, there is no excuse for using tables for your layouts!</p>
<p>Tables were the norm about 10 to 12 years ago and even then they were on their way out! I can&#8217;t tell you how much it irks me to see &#8220;modern&#8221; websites using that old method, there&#8217;s absolutely no reason for it. Instead, use DIVS and CSS to make your layouts, they download faster and are more accessible.</p>
<h2>It looks fine, I don&#8217;t need to close that tag. </h2>
<p>Sometimes I see people using just one <strong>&lt;li&gt;</strong> or <strong>&lt;p&gt;</strong> tag. Though it might look &#8220;OK&#8221; in your development browser it can cause unpredictable behavior in your website that would be hard to fix if you didn&#8217;t know what to look for. Just do yourself a favor and close that damn tag!</p>
<h2>Tag attributes are handy!</h2>
<p>Tag attributes such as &lt;font&gt; and &lt;center&gt; used to be the only way to handle fonts and alignment but there are much better ways now and there&#8217;s no reason to use those anymore. </p>
<h2>DOCTYPE?</h2>
<p>Gone are the days where all you had to do was put &lt;html&gt; in the text editor. New browsers are more complicated and can handle more types of information. As a result you need to tell it how you want to display your content. Is it HTML 4? XHTML? strict? transitional? The browser can&#8217;t guess for you!</p>
<h2>Character what?</h2>
<p>Do you know about character encoding? Have you heard of UTF-8 and ISO-8859-1? Do you know what they do? </p>
<h2>Tags can go anywhere inside the body tag</h2>
<p>Don&#8217;t confuse an inline element with a block element! EVER! No that &lt;div&gt; tag won&#8217;t fit nicely in your &lt;span&gt; tag. And don&#8217;t cheat by declaring all your span tags a block element in your CSS either. </p>
<h2>CSS is a great video game!</h2>
<p>There is something wrong (and scary) about this statement. Please please please, don&#8217;t confuse Counter Strike Source with Cascading Style Sheets! If you don&#8217;t know what CSS is go out and get a book or give up entirely!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bolducpress.com/design/10-mistakes-beginners-make-when-writing-html/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The about page in theory</title>
		<link>http://www.bolducpress.com/design/the-about-page-in-theory/</link>
		<comments>http://www.bolducpress.com/design/the-about-page-in-theory/#comments</comments>
		<pubDate>Mon, 14 Dec 2009 04:01:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://www.bolducpress.com/?p=1048</guid>
		<description><![CDATA[The about page is more than just inserting your mission statement and a brief self-indulgent picture and bio of the boss. It's the last chance you have to establish trust and get your users to perform your call to action. ]]></description>
			<content:encoded><![CDATA[<h2 class = "first">What is the about page?</h2>
<p>In essence, the about page needs to accomplish two things</p>
<ol>
<li>Provide a context</li>
<li>Reinforce your brand</li>
</ol>
<p>The ways you go about doing this can be varied but it doesn&#8217;t just mean slap in a mission statement and a photo. You can&#8217;t gain someone&#8217;s trust just by promising something. </p>
<h2>Provide a context</h2>
<h3>What do you do?</h3>
<p>If the home page doesn&#8217;t make it completely clear about what is it is that you do then this is your last chance to get it right. If it&#8217;s still not clear to them after having visited your about page then they will leave without thinking twice. </p>
<p>Be sure to explain what you as clear and as visible as possible. Preferably near the top with some supporting graphics. </p>
<h3>Who is involved?</h3>
<p>Users want to know who is behind the site that they are visiting. They want to know if they are dealing with a large organization or a single individual because then they can begin to form a mental picture of your company. What is another word for the mental picture of your company? Oh yeah! <strong>The BRAND! </strong></p>
<p>Put a face to the company, use portraits of some of the of the key players as well as some background information about them. </p>
<h3>Provide some background</h3>
<p>Provide some background about your company or organization. A little bit of history about the roots of your company will a long way to humanizing your website. </p>
<h2>Reinforce your brand</h2>
<h3>Establish trust</h3>
<p>Users will want to know that they can trust you, especially if they&#8217;re going to be making their first transaction. If your site lacks credibility they aren&#8217;t going to share their precious credit card number with you. </p>
<p>Give examples that demonstrate strong qualities. Favor using concrete examples such as statistics or awards, these will go a lot further than your word alone. </p>
<p>Also provide quotes or testimonials. Ideally, these should be by recognizable companies or brands and at the very least be sure to have a link that goes to their site. </p>
<h3>Explain why you&#8217;re different from others</h3>
<p>You will need to give them compelling reasons to do what you want them to do. It&#8217;s quite a commitment for someone to sign up with your site and then place an order. Especially if it&#8217;s for the first time. You need to explain why they should sign up by demonstrating that you&#8217;re different and that what they get from you is not only different from your competition but superior. </p>
<p>Also give them concrete examples of why you&#8217;re different. For example, at Staples, the retail store. They offer 10% back to rewards members who purchase ink, they will also give $3 in rewards for each ink cartridge recycled. Sure, Wal-mart might sell them a little cheaper but Staples will reward customers each time they buy ink plus their ink recycling program shows that they care about the environment. It&#8217;s not surprising that they are the leading ink retailer in the United States. </p>
<h2>Write it with users in mind</h2>
<p>The web is a conversation between you and the user. Avoid using technical terms or legal mumbo jumbo. Save that for the terms of use and privacy policy! </p>
<p>When you speak to your users it should be in a semi-formal tone of voice, as if you&#8217;re having an intelligent conversation with another person.  </p>
<h2>Further Reading</h2>
<p><a href = "http://www.alistapart.com/articles/aboutpagerobot/" target = "_blank">Your about page is a robot</a><br />
<a href = "http://www.smashingmagazine.com/2009/07/01/best-practices-for-effective-design-of-about-us-pages/" target = "_blank">Best Practices For Effective Design Of &#8220;About me&#8221;-Pages</a><br />
<a href = "http://www.onextrapixel.com/2009/07/31/the-essence-of-about-us-page-with-12-captivating-showcases/" target = "_blank">The Essence Of About Us Page With 12 Captivating Showcases</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bolducpress.com/design/the-about-page-in-theory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Website templates are bad for everyone</title>
		<link>http://www.bolducpress.com/design/website-templates-are-bad-for-everyone/</link>
		<comments>http://www.bolducpress.com/design/website-templates-are-bad-for-everyone/#comments</comments>
		<pubDate>Mon, 21 Sep 2009 04:01:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://www.bolducpress.com/?p=942</guid>
		<description><![CDATA[Website templates are a conveniant and easy way to build websites. They are also a good way to ruin your reputation and the reputation of your client. ]]></description>
			<content:encoded><![CDATA[<h2 class = "first">What are website templates?</h2>
<p>Website templates are pre-built website systems that designers can use to quickly assemble a website. There are a variety of options, from static html, to complex php frameworks such as Joomla or Drupal. </p>
<p>Templates are undeniably useful, they&#8217;re easy to implement and makes websites much cheaper to build. It does come with some disadvantages however, which, in my opinion is enough to avoid using them all together. </p>
<h2>They&#8217;re bad for clients</h2>
<h3>They don&#8217;t educate clients about the creative process</h3>
<p>It&#8217;s the designer&#8217;s responsibility to educate the client about the creative process, that they are more than just pixel pushers (which a lot of clients first consider them to be). Using web templates gives clients the wrong idea because you don&#8217;t talk to them about things like branding, usability, content etc. All of which are instrumental to creating a powerful and useful design. Instead, the work becomes marginalized to simply filling the holes in the design with text and images. </p>
<h3>Templates don&#8217;t convey a brand</h3>
<p>Templates are intentionally meant to be generic, that way they can sell more of them. The problem with this though is that they don&#8217;t often capture the look and feel of client&#8217;s established brand. Every company has an identity even if it hasn&#8217;t been formalized. Therefore it&#8217;s very important to understand the company and convey their personality through the website. A template design, no matter how beautiful simply can&#8217;t capture their brand.</p>
<h3>Templates aren&#8217;t built around the content</h3>
<p>Templates are image centric, whereas custom designs are content centric. Templates are built to sell themselves, not to communicate the content. Content shouldn&#8217;t try to squeeze into a design, instead, the design should be built around the content.  </p>
<h2>They&#8217;re bad for designers.</h2>
<h3>Templates stunt creative growth</h3>
<p>As a designer, I always learn something from each project.  This creative process is vital in staying on top of your game. There are a lot of other talented designers out there that you&#8217;re competing with. You need to constantly be practicing and thinking about design. Using templates completely deprives you of that learning opportunity and hurts you in the long term. </p>
<h3>Templates can&#8217;t go in a portfolio</h3>
<p>As a creative person I would never put a template design in my portfolio. Even if had purchased the rights to it, it wouldn&#8217;t be ethical to put it in my portfolio and claim it as my own work.</p>
<p>On top of that, my reputation would be tarnished if other people learned that I don&#8217;t create my own designs. For example, let&#8217;s say a client paid me $1,000 to create a website for them. But then they learn that I didn&#8217;t actually create the design. . . </p>
<h2>Use templates as inspiration</h2>
<p>Templates are a great source of inspiration however. Most templates are well made and look visually appealing. So they are a great way to start thinking about design especially if you&#8217;re a beginner.</p>
<p>Don&#8217;t just limit yourself to templates for inspiration though, also take a look at live websites and even nature for ideas. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.bolducpress.com/design/website-templates-are-bad-for-everyone/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>The value of Favicons</title>
		<link>http://www.bolducpress.com/design/the-value-of-favicons/</link>
		<comments>http://www.bolducpress.com/design/the-value-of-favicons/#comments</comments>
		<pubDate>Mon, 07 Sep 2009 04:01:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://www.bolducpress.com/?p=931</guid>
		<description><![CDATA[Favicons are those 16 x 16 icons that you see in bookmarks menu. They are more than just pretty icons, they improve usability, reinforce branding and promote trust. ]]></description>
			<content:encoded><![CDATA[<h2 class = "first">What the heck is a Favicon?</h2>
<p>A favicon (short for Favorites Icon) is that little 16 x 16 pixel image that you see in the address bar, tabs menu, bookmarks menu and a variety of other places. </p>
<p><img src="http://www.bolducpress.com/wp-content/uploads/2009/09/favicons.jpg" alt="Favicons" title="Favicons" width="600" height="120" class="alignnone size-full wp-image-938 img" /></p>
<h2>The Favicon was introduced with Internet Explorer 4</h2>
<p>When it came out in 1997, the favicon was only supported by Internet Explorer 4. It was installed by uploading the <strong>favicon.ico</strong> file to the root directory where it would be seen by the browser and automatically added to the favorites menu.</p>
<p>Improvements were soon introduced that allowed designers to indicate the location of the icon from any given page using the <strong>link</strong> tag in the HTML. </p>
<p>More modern browsers support other image formats (such as png and gif) but given the prevalence of Internet Explorer 6, <strong>.ico</strong> still remains the preferred format.  </p>
<h2>The advantages of the favicon</h2>
<h3>It improves usability</h3>
<p>The favicon makes it much easier for the user to find your website in the bookmarks menu or tabs bar. Instead of reading the text they can use the icon as a clue to help speed up their search. </p>
<div id="attachment_936" class="wp-caption alignnone" style="width: 610px"><img src="http://www.bolducpress.com/wp-content/uploads/2009/09/popular_favicons.jpg" alt="Compare the bookmarks on the left with the same bookmarks on the right. See how much easier it is with the favicons?" title="Popular Favicons" width="600" height="246" class="size-full wp-image-936" /><p class="wp-caption-text">Compare the bookmarks on the left with the same bookmarks on the right. See how much easier it is with the favicons?</p></div>
<h3>It strengthens the brand and improves user confidence</h3>
<p>At it&#8217;s core, your favicon should reflect your brand. It should have similar color, shape and contrast to the overall look and feel of your design or brand, in particular your logo. When someone looks at your favicon on the tab bar or bookmarks menu, they immediately start to form a mental picture of your website and what to expect. The longer they are exposed to your brand, the more they will remember it. </p>
<p>Favicons are expected on modern, professional websites.  It&#8217;s just one extra step you can take to earn your user&#8217;s trust and get them to place that order. The absence of a favicon can actually cause people to second-guess their decision. Especially the extra-cautious users.  </p>
<h2>Designing a Favicon</h2>
<h3>Use simple, bold shapes</h3>
<p>Like in logo design, your favicon should use simple shapes such as  rectangles. triangles circles etc. The silhouette should be easily recognizable and internal details should be as simple as possible.  </p>
<div id="attachment_933" class="wp-caption alignnone" style="width: 390px"><img src="http://www.bolducpress.com/wp-content/uploads/2009/09/starbucks.jpg" alt="The round shape works but all the details get lost in the resizing. Starbucks could simplify the design and make it sharper. " title="Starbucks" width="380" height="36" class="size-full wp-image-933" /><p class="wp-caption-text">The round shape works but all the details get lost in the resizing. Starbucks could simplify the design and make it sharper. </p></div>
<div id="attachment_934" class="wp-caption alignnone" style="width: 390px"><img src="http://www.bolducpress.com/wp-content/uploads/2009/09/target.jpg" alt="Targert&#039;s favicon matches the company logo, it uses two small shapes which are immediately recognizable. " title="Target" width="380" height="36" class="size-full wp-image-934" /><p class="wp-caption-text">Targert's favicon matches the company logo, it uses two small shapes which are immediately recognizable. </p></div>
<h3>Use text sparingly</h3>
<p>Text should be avoided at all costs. If you find it necessary, try to stick to only one or two letters or numbers. More than that and it won&#8217;t be legible. </p>
<div id="attachment_932" class="wp-caption alignnone" style="width: 390px"><img src="http://www.bolducpress.com/wp-content/uploads/2009/09/staples.jpg" alt="The staples push button is very recognizable, the text on the otherhand is not" title="Staples" width="380" height="36" class="size-full wp-image-932" /><p class="wp-caption-text">The staples push button is very recognizable, the text on the otherhand is not</p></div>
<div id="attachment_935" class="wp-caption alignnone" style="width: 390px"><img src="http://www.bolducpress.com/wp-content/uploads/2009/09/mcdonalds.jpg" alt="McDonalds uses their iconic M symbol very effectively as their favicon. " title="McDonalds" width="380" height="36" class="size-full wp-image-935" /><p class="wp-caption-text">McDonalds uses their iconic M symbol very effectively as their favicon. </p></div>
<h3>Use a limited color palette</h3>
<p>Gradients and diverse color choices will not hold up when  it&#8217;s re-sized down to 16 x 16. You should choose at least two colors and no more than four (four is even pushing it). The colors should also be obvious, don&#8217;t use any small lines or shapes within a larger shape. Those will dissapear. </p>
<div id="attachment_937" class="wp-caption alignnone" style="width: 390px"><img src="http://www.bolducpress.com/wp-content/uploads/2009/09/nike.jpg" alt="Nike only uses two colors to create their successful favicon. " title="nike" width="380" height="36" class="size-full wp-image-937" /><p class="wp-caption-text">Nike only uses two colors to create their successful favicon. </p></div>
<h3>Use high contrast</h3>
<p>Your favicon should have a high contrast between the background and shape. Try to avoid using a lot of white or light grays since most browsers use this as the tab and bookmark background. </p>
<p>High contrast in the shape itself will also help create emphasis and make your icon more clear. </p>
<h2>Further Reading</h2>
<p><a href = "http://www.photoshopsupport.com/tutorials/jennifer/favicon.html" target = "_blank">How to create a favicon</a><br />
<a href = "http://thefavicongallery.com/" target = "_blank">The Favicon Gallery</a><br />
<a href = "http://boagworld.com/design/favicons-small-but-significant" target = "_blank">Favicons: Small but significant</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bolducpress.com/design/the-value-of-favicons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>User personas and how they can improve your site</title>
		<link>http://www.bolducpress.com/design/user-personas-and-how-they-can-improve-your-site/</link>
		<comments>http://www.bolducpress.com/design/user-personas-and-how-they-can-improve-your-site/#comments</comments>
		<pubDate>Mon, 27 Jul 2009 04:01:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://www.bolducpress.com/?p=845</guid>
		<description><![CDATA[Often neglected, user personas are a great way to improve usability and keep your website focused. ]]></description>
			<content:encoded><![CDATA[<h2>What is a user persona?</h2>
<p>A user persona is a fictionalized person who represents a large portion of your audience. A persona can have a name, a photograph, personality traits, values and more.</p>
<h3>A user persona is not a site persona</h3>
<p>Don&#8217;t confuse a user persona with a site persona. The site persona deals specifically with an image your website is trying to convey. A user persona on the other hand deals specifically with your target audience.</p>
<h2>Why is a user persona useful?</h2>
<p>A user persona makes it easier for you to connect with, and understand your target audience. It puts a face to the statistics.</p>
<h2>Gather information about your primary audience</h2>
<p>The first thing you need to do is collect information. It can go out and do interviews, or simply just imagine them and jot down notes. Either way, here are some of the things you should consider as you collect information.</p>
<h3>Demographics</h3>
<p>Collect basic demographic information to start getting a picture of your persona. You demographic information should answer the following information.</p>
<ul>
<li>How old are they?</li>
<li>Are they male or female?</li>
<li>How much do they make?</li>
<li> Where do they live?</li>
</ul>
<h3>How experienced are they?</h3>
<p>Are you targeting people who are professionals or beginners? Their skill level will affect your content.  For example, if you&#8217;re creating a website for PHP programmers, you will probably be targeting an intermediate to advanced level, as opposed to targeting people learning HTML.</p>
<h3>How technologically inclined are they?</h3>
<p>How often does your audience use a computer, and more importantly, the internet? A 60 year old woman uses the internet differently than a  20 year old man.  You need to keep this in mind as your designing your website. If they aren&#8217;t very technolocially inclined, simplicity is going to be even more important.</p>
<h3>How will they be feeling when they visit your site?</h3>
<p>Users may be feeling emotional as they use it. For example, let&#8217;s say a high school athlete has to undergo surgery on his knee and he wants to learn about the procedure. He is going to feel nervous about the operation and wonder if he will ever play football again. Your site will have to be reassuring and comforting to him.</p>
<h3>How are they using your site, and where?</h3>
<p>Will the user use your site for research or to socialize with friends? Will they be doing this from home or at work or a combination of the two?</p>
<p>If they&#8217;re using your site from work, they&#8217;re going to be more impatient than they would at home.</p>
<p>On the other-hand, if they&#8217;re at home they will be using it more for pleasure and you will need to be more creative to keep their attention.</p>
<h2>Compile that information into a persona</h2>
<p>Now take all the information that you&#8217;ve compiled and give it an identity. Be sure to write in the first person, it will help to give persona an identity.</p>
<p>Next give your persona a name and a photo, without those it&#8217;s simply a personality profile.</p>
<p>Below is one of the personas that I use. It was greatly influenced by the wonderful book <span style="text-decoration: underline;">Letting Go of The Words</span> by Janice Redish (See bottom)</p>
<p><img class="aligncenter size-full wp-image-848" title="Bill Persona" src="http://www.bolducpress.com/wp-content/uploads/2009/07/bill-persona.gif" alt="Bill Persona" width="580" height="521" /></p>
<p>The persona above makes it easy to access all this information and really gives the sense that this is a real person. The photo is important because it&#8217;s easier to remember all this information when you can associate it with an image.</p>
<h2>Create scenarios to drive your decisions</h2>
<h3>What are your user&#8217;s primary tasks?</h3>
<p>People come to your site for a reason, they want to get something done or learn something. It &#8217;s your job to find those primary tasks and design accordingly.</p>
<p>In the example above Bill was created for a website that provided information for people who care for adults with mental disabilities. What kinds of tasks would Bill have?</p>
<ul>
<li>Look for information about this site can help them.</li>
<li>Look for other adults in the area who also care for adults with disabilities</li>
</ul>
<p>There are probably more but these are the two major tasks.</p>
<h3>Write in the first person</h3>
<p>Now that you&#8217;ve identified the tasks rewrite them as if they were saying it. So in this example you could write something like this.</p>
<ul>
<li>Are you a local business? If so, what options do you offer?</li>
<li>Who else takes care of kids with Down syndrome in the area?</li>
</ul>
<h3>Everything on your site should fulfill those tasks</h3>
<p>With the scenarios in place you should use these to drive you decisions on your website.</p>
<p>So in the Bill example you might have two links in a very visible spot saying,</p>
<ul>
<li>Caring for someone with a disability? Learn how we can help.</li>
<li>Connect with other people in your area.</li>
</ul>
<h2>Further Reading</h2>
<p><a title="How to use Personas and scenarios in web design" href="http://www.webdesignfromscratch.com/goal-oriented-design/about-personas.php" target="_blank">How to use Personas and scenarios in web design</a></p>
<p><a title="Letting Go of the Words" href="http://www.amazon.com/Letting-Go-Words-Interactive-Technologies/dp/0123694868" target="_blank">Letting Go of the Words</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bolducpress.com/design/user-personas-and-how-they-can-improve-your-site/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Designing an effective home page</title>
		<link>http://www.bolducpress.com/design/designing-an-effective-home-page/</link>
		<comments>http://www.bolducpress.com/design/designing-an-effective-home-page/#comments</comments>
		<pubDate>Mon, 29 Jun 2009 04:01:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://www.bolducpress.com/?p=817</guid>
		<description><![CDATA[The home page has establish trust, convey personality and provide useful content. . . . all within a matter of seconds. ]]></description>
			<content:encoded><![CDATA[<h2>Design your home page around the content, not the other way around.</h2>
<p>The home page should compliment the content. It&#8217;s very easy to let the aesthetics overpower content and usability. Especially when the home page is put in the hands of an inexperienced designer.</p>
<h2>Establish an Identity</h2>
<p>The first time a user looks at your website you should quickly answer these four questions.</p>
<ul>
<li>Who you are</li>
<li>What you do</li>
<li>What you have</li>
<li>Why this site is better than another</li>
</ul>
<h2>Convey a Personality</h2>
<h3>Using adjectives how would you describe your site?</h3>
<p>Jot down a list of adjectives to describe your site. These adjectives will help set the personality and drive the look and feel of the home page.</p>
<div id="attachment_828" class="wp-caption aligncenter" style="width: 560px"><img class="size-full wp-image-828" title="Manolo Bevia" src="http://www.bolducpress.com/wp-content/uploads/2009/06/manolo.jpg" alt="What adjectives would you use to describe this home page?" width="550" height="436" /><p class="wp-caption-text">The portfolio site of Manolo Beviá</p></div>
<p>What adjectives would you use to describe the home page above?</p>
<p>I would use some of the following:</p>
<ul>
<li>Clean</li>
<li>Professional</li>
<li>Minimalistic</li>
<li>Cool</li>
<li>Refreshing</li>
<li>Confident</li>
<li>Web 2.0</li>
</ul>
<h3>How would your writing style reflect your personality?</h3>
<p>Your tone and choice of words should also be congruent with the personality. For example, a website for a library is going to much more formal than that for kids.</p>
<h2>Establish a Hierarchy</h2>
<h3>Show them where to start.</h3>
<p>Your website can be confusing the first time someone visits it. (Especially if it&#8217;s a large website). Establish some visual clues to get them started. Make your navigation clear and highlight any points of interest that you want them to see. You could even create a big button that simply says &#8220;start here&#8221;.</p>
<h3>Use the visitor&#8217;s words.</h3>
<p>Chances are, your business uses jargon that every employee  knows like the back of their hand. On the web however, NO ONE understands your jargon! Use everyday words that everyone knows. Better yet, hold some usability tests and find out for sure if any words are confusing or unclear.</p>
<h3>The home page can be different from the rest of the site.</h3>
<p>The home page doesn&#8217;t have to share the same layout as the rest of the site. In fact, you will probably have to change the layout anyway because the home page serves a different purpose.</p>
<div id="attachment_823" class="wp-caption aligncenter" style="width: 560px"><img class="size-full wp-image-823" title="Home Page" src="http://www.bolducpress.com/wp-content/uploads/2009/06/homepage.jpg" alt="The background on the home page takes up more real estate than the other pages. " width="550" height="378" /><p class="wp-caption-text">The background on the home page takes up more real estate than the other pages. </p></div>
<h2>
<div id="attachment_824" class="wp-caption aligncenter" style="width: 560px"><img class="size-full wp-image-824" title="About Page" src="http://www.bolducpress.com/wp-content/uploads/2009/06/aboutpage.jpg" alt="The background shrinks to allow more space for content. But they are both clearly part of the same site. " width="550" height="378" /><p class="wp-caption-text">On the about page the background shrinks to allow more space for content. </p></div></h2>
<p>Note that in the example above, the two pages change but the overall look and feel remain the same. Be sure to maintain consistency on all pages.</p>
<h2>Give them what they&#8217;re looking for.</h2>
<h3>Have shortcuts to useful content.</h3>
<p>Keep your users objectives at the forefront of your design and have links to your most popular content. They aren&#8217;t going to spend time admiring the subtle aspects of your home page, they just want the content.</p>
<p><div id="attachment_822" class="wp-caption aligncenter" style="width: 560px"><img class="size-full wp-image-822" title="Firefox" src="http://www.bolducpress.com/wp-content/uploads/2009/06/firefox1.jpg" alt="The &quot;Download Firefox&quot; button is clearly visible on the Mozilla home page. " width="550" height="378" /><p class="wp-caption-text">The &quot;Download Firefox&quot; button is clearly visible on the Mozilla home page. </p></div>
<h3>Provide timely content.</h3>
<p>Provide any timely content and put it in a highly visible area. This shows the users that your the site is up to date. This is particularly true when designing for products, newspapers or blogs. But it can be applied pretty much anywhere.</p>
<h2>People don&#8217;t read, they scan.</h2>
<h3>Don&#8217;t use paragraphs to identify the site.</h3>
<p>People will never read your finely crafted paragraphs on your home page. Instead, use these three things.</p>
<ul>
<li>Logo</li>
<li>Name</li>
<li>Tag line</li>
</ul>
<p>Chris Jennings does a fine job of doing this.</p>
<div id="attachment_825" class="wp-caption aligncenter" style="width: 560px"><img class="size-full wp-image-825" title="Chris Jennings" src="http://www.bolducpress.com/wp-content/uploads/2009/06/chrisjennings.jpg" alt="On chrisjennings.com you know exactly who this is and what he does. Without reading a long paragraph." width="550" height="437" /><p class="wp-caption-text">On chrisjennings.com you know exactly who he is and what he does. Without reading a long paragraph.</p></div>
<h3>Links and short descriptions.</h3>
<p>When you think home page, think &#8220;links and short descriptions.&#8221; All your content should be easily visible with just a glance. If the link entices them then they will read the short description below it.</p>
<h3>The &#8220;welcome&#8221; blurb.</h3>
<p>As a rule, try to avoid using a &#8220;welcome&#8221; blurb. Most users are very familiar with them and immediately skip them because usually the welcome blurb has little or no useful information.</p>
<p>However, if you do find yourself needing a welcome blurb then keep it short and to the point. It should never be more than one sentence long!</p>
<div id="attachment_826" class="wp-caption aligncenter" style="width: 560px"><img class="size-full wp-image-826" title="Klei Entertainment" src="http://www.bolducpress.com/wp-content/uploads/2009/06/klei.jpg" alt="This welcome blurb isn't bad but shortening it by five lines would go a long way. " width="550" height="420" /><p class="wp-caption-text">This welcome blurb isn&#39;t terrible, the title is large and the links are clearly visible. However, shortening it by five lines would go a long way. </p></div>
<div id="attachment_827" class="wp-caption aligncenter" style="width: 560px"><img class="size-full wp-image-827" title="Klei Revised" src="http://www.bolducpress.com/wp-content/uploads/2009/06/klei2.jpg" alt="In this revised version the text is more more readable. " width="550" height="420" /><p class="wp-caption-text">People are much more likely to read this welcome text. </p></div>
<h2>Don&#8217;t overload the home page</h2>
<p>The home page must appeal to the widest audience within your niche. Therefore it&#8217;s tempting to cram it with tons of information.</p>
<p>Don&#8217;t do this.</p>
<p>Too much information will clutter your home page and make it harder to understand. The less they have to process the better.</p>
<h2>What are your thoughts?</h2>
<p>Have any ideas on how to improve the home page?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bolducpress.com/design/designing-an-effective-home-page/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to write effective web content</title>
		<link>http://www.bolducpress.com/design/how-to-write-effective-web-content/</link>
		<comments>http://www.bolducpress.com/design/how-to-write-effective-web-content/#comments</comments>
		<pubDate>Mon, 15 Jun 2009 04:01:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://www.bolducpress.com/?p=796</guid>
		<description><![CDATA[Here are some tips on how to make the most of your content and leave a lasting impression. ]]></description>
			<content:encoded><![CDATA[<h2>Let go of the words</h2>
<h3>Users don&#8217;t read, they scan</h3>
<p>People are often busy and don&#8217;t have the time to read large paragraphs of text. If they see a wall of text they will either go somewhere else or at best they will bookmark it to &#8220;read later&#8221; which of course they never do.</p>
<h3>Write simple, short sentences</h3>
<p><em>&#8220;Get rid of half the words on each page, then get rid of half of what&#8217;s left&#8221;</em> &#8211; Steve Krug</p>
<p>You don&#8217;t need a lot of fancy words and long paragraphs to convey your message. After you&#8217;ve finished writing your content go back and start cutting the hell out of it. If you&#8217;re finding it difficult ask a friend to help.</p>
<h3>Use simple words that everyone understands</h3>
<p>People aren&#8217;t sitting at the computer with a dictionary ready to look up your sophisticated use of the english language. Use words that everyone knows and conveys your information quickly and efficiently.</p>
<p>Also don&#8217;t use jargon in your website just because everyone else at your business does. Chances are, the general public won&#8217;t understand and won&#8217;t find your content valuable. This is especially true if you work in technical or medical fields.</p>
<h3>Content is not copy</h3>
<p>Copy is trying to sell an idea or product. Content delivers useful  information to the user. Here are some key differences between the two.</p>
<table border="0">
<tbody>
<tr>
<th>Copy</th>
<th>Content</th>
</tr>
<tr>
<td>Encourages a call to action (ie register, purchase a product etc.)</td>
<td>Conveys information</td>
</tr>
<tr>
<td>Keywords first, user second</td>
<td>User first, keywords second</td>
</tr>
<tr>
<td>Has little or no useful information</td>
<td>Has a lot of useful information</td>
</tr>
</tbody>
</table>
<h3>Keep lines between 50 and 80 characters long</h3>
<p>If it&#8217;s too short then people will have a hard time connecting the lines and understanding the information. If it&#8217;s too long then people will become tired and have a hard time switching to the next line. The optimal reading length is between 50 and 80 characters. Don&#8217;t freak out however if your lines are 45 or 87, these are just guidelines.</p>
<h2>Use headings to break up your content</h2>
<h3>Your headings should summarize your content</h3>
<p>Users are impatient on the web, they will scan the whole document first and then decide if they want to read it or not. Especially now where they don&#8217;t necessarily know if the content is viable. Afterall, they don&#8217;t know who wrote the content.</p>
<p>Effective headings should do the following</p>
<ul>
<li>Get them interested</li>
<li>Provide a context for each section</li>
<li>Break up the page and make it more readable</li>
</ul>
<h3>Headings should answer questions</h3>
<p>Write headings with their questions in mind. For example, on a page about pet food have headings like &#8220;What should my cat eat?&#8221; The less the user has to think the better. This is a great way to write &#8220;document-like&#8221; content.</p>
<h3>Use the imperative when giving instructions</h3>
<p>If you find yourself constantly repeating &#8220;how do I. . . &#8221; simply remove that phrase and rewrite it as an imperative. This is a good way to give tips or advice.</p>
<h3>Avoid using noun headings</h3>
<p>Nouns label things and though they may be appropriate at times, chances are you can achieve the same thing by answering their questions. You are having a conversation with your user you can&#8217;t do this with nouns.</p>
<h2>Use lists to simplify</h2>
<h3>Use lists to break up paragraphs and present key facts</h3>
<p>When you start writing paragraphs of text ask yourself if you could break down what you&#8217;re writing into lists. or use a combination of the two.</p>
<p><strong>Take a look at this paragraph.</strong></p>
<p><em>&#8220;When you come camping, make sure that you bring a jacket, water bottle, flashlight, bug repellent sleeping bag, good shoes, warm clothing, sunglasses, and a bag to carry it all. Our trained staff will provide the rest. &#8220;</em></p>
<p><strong>And now look at it when it&#8217;s been converted into a list. </strong></p>
<p>When you come camping please bring the following:</p>
<ul>
<li>Jacket</li>
<li>Water bottle</li>
<li>Flashlight</li>
<li>Bug repellent</li>
<li>Sleeping Bag</li>
<li>Good shoes</li>
<li>Warm clothing</li>
<li>Sunglasses</li>
<li>A bag to carry your equipment</li>
</ul>
<p>Our trained staff will provide the rest.</p>
<h3>Use numbered lists when you are giving instructions</h3>
<p>Present instructions in a tidy numbered or ordered list. People will quickly realize that it&#8217;s a list of steps and perform the sequence of actions.</p>
<p><strong>These directions are a good candidate for using an ordered list:</strong></p>
<p><em>&#8220;Take Route 1 South from Machias approximately 15 miles. After passing the town of Robbington (Blueclyffe Motel on your left), you see Mill Drive on your left, and Perry&#8217;s chocolates on your right. The sign for Smith&#8217;s Dairy Farm is less than a mile further on your left (water side). It is the first left hand turn (dirt road) after the &#8220;Ferry&#8221; town marker on your right.&#8221;</em></p>
<p><strong><em>As an ordered list.</em></strong></p>
<p>To get to Smith&#8217;s Dairy Farm please follow these directions</p>
<ol>
<li>Take Route 1 South from Machias (approximatly 15 miles)</li>
<li>Pass the town of Robbington</li>
<li>Keep driving until you see the  sign for Smith&#8217;s Dairy farm on your left (water side).</li>
<li>Take a left onto the dirt road (after the Ferry town marker).</li>
<li>Follow this road until you see Smith&#8217;s Dary Farm on your left<em><br />
</em></li>
</ol>
<h2>Use tables to answer questions</h2>
<h3>Think of tables as &#8220;if. . . then&#8221; statements</h3>
<p>Use tables when you have parallel sentences to show their relationship.</p>
<p><strong>For example look at this sentence.</strong></p>
<p><em>&#8220;If you want to file a tax return by mail please see this link: <a href="http://www.irs.gov/file/index.html" target="_blank">http://www.irs.gov/file/index.html</a>. However, if you want to file it by email please see this link: <a href="http://www.irs.gov/efile/" target="_blank">http://www.irs.gov/efile/</a>&#8220;</em></p>
<p><strong>Now take a look at it when it&#8217;s been put in a table.</strong></p>
<table border="0">
<tbody>
<tr>
<th>If you want to apply by. . .</th>
<th>Then go to the following link</th>
</tr>
<tr>
<td>Mail</td>
<td><a href="http://www.irs.gov/file/index.html" target="_blank">http://www.irs.gov/file/index.html</a></td>
</tr>
<tr>
<td>E-Mail</td>
<td><a href="http://www.irs.gov/efile/" target="_blank">http://www.irs.gov/efile/</a></td>
</tr>
</tbody>
</table>
<h3>Use tables to compare</h3>
<p>Tables are great any time that you have information that relates to each other.</p>
<table border="0">
<tbody>
<tr>
<th>Country</th>
<th>Population in 1900 (in millions)</th>
<th>Population in 2000 (in millions)</th>
</tr>
<tr>
<td>Canada</td>
<td>5</td>
<td>30</td>
</tr>
<tr>
<td>Great Britain</td>
<td>40</td>
<td>59</td>
</tr>
<tr>
<td>Japan</td>
<td>45</td>
<td>126</td>
</tr>
<tr>
<td>United States</td>
<td>76</td>
<td>281</td>
</tr>
</tbody>
</table>
<h2>Use links that are meaningful</h2>
<h3>Use links that describe the content</h3>
<p>Use link titles that reflect the content in which you are linking too. For example, if you are linking to someone&#8217;s portfolio you would write it something like this. check out <a title="Joshua Bolduc's Portfolio" href="http://www.partdigitaldesign.com" target="_blank">Joshua Bolduc&#8217;s Portfolio</a></p>
<p>This makes it easier for the user but also helps with SEO (search engine optimization). If the link is meaningful the search engine spider will crawl this and associate its title with the link.</p>
<h3>Don&#8217;t use &#8220;click here&#8221;</h3>
<p>Never never never use &#8220;<a>click here!</a>&#8221; People scan the page and they will skip over anything that says &#8220;click here&#8221; they simply don&#8217;t want to read the text that explains it.</p>
<p>&#8220;Click here&#8221; also does not provide any useful information for search engine spiders and will not help your ranking in Google.</p>
<h2>Further Reading</h2>
<p><a title="Letting go of the words" href="http://www.amazon.com/Letting-Go-Words-Interactive-Technologies/dp/0123694868/ref=sr_1_1?ie=UTF8&amp;s=books&amp;qid=1244470078&amp;sr=8-1" target="_blank">Letting go of the words</a> &#8211; Inspiration for this article came from this wonderful book. Many thanks to Janice Reddish for writing it.</p>
<p><a title="Don't Make Me Think" href="http://www.amazon.com/Dont-Make-Me-Think-Usability/dp/0321344758/" target="_blank">Don&#8217;t Make Me Think!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bolducpress.com/design/how-to-write-effective-web-content/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>The fundamentals of logo design</title>
		<link>http://www.bolducpress.com/design/the-fundamental-of-logo-design/</link>
		<comments>http://www.bolducpress.com/design/the-fundamental-of-logo-design/#comments</comments>
		<pubDate>Mon, 01 Jun 2009 04:01:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://www.bolducpress.com/?p=35</guid>
		<description><![CDATA[Logo design is an integral part of any brand. Learn the some tips here to help you make the most of your logo. ]]></description>
			<content:encoded><![CDATA[<h2>A logo is about identity</h2>
<p>A logo is the visual identity of the company or client. It represents what they do and any emotional messages that go with it.</p>
<h3>Who is the client?</h3>
<ul>
<li>What do they do?</li>
<li>What are their goals and values?</li>
<li>How do they perceive themselves?</li>
<li>How do they want other people to perceive them?</li>
</ul>
<p>Use the answers to these question to drive the design of the logo. Don&#8217;t try and fit their business into something that may look good but isn&#8217;t appropriate.</p>
<h3>Who is the audience?</h3>
<p>Is the primary audience teenagers or senior citizens? Are they interested in sports or arts and crafts? Also, who makes the final decision about the design? They probably have a vision of the end product so work to be congruent with that vision.</p>
<h2>Keep it simple!</h2>
<h3>Use simple shapes that have a strong silhouette</h3>
<p>Simple shapes such as squares, triangles and circles are the most effective and easiest to remember.  If you&#8217;re not sure whether your logo has a strong shape, fill in the shape with black and observe it&#8217;s silhouette. Is the logo still recognizable?</p>
<div id="attachment_800" class="wp-caption aligncenter" style="width: 574px"><img class="size-full wp-image-800" title="The history of the apple logo" src="http://www.bolducpress.com/wp-content/uploads/2009/05/apple.jpg" alt="The apple logo is one of the most recognized in the world. Due in large part to its simplicity. " width="564" height="371" /><p class="wp-caption-text">The apple logo is one of the most recognizable in the world. Due in large part to its simplicity. </p></div>
<h3>Use appropriate colors</h3>
<p>Keep the color palette congruent with your message. Too many colors convey conflicting messages.</p>
<p>For example, if you&#8217;re designing a logo for a dating website and you&#8217;re using blues, greens and yellows the user could confuse it with a conservation site. Reds, pinks and white would be more appropriate.</p>
<h2>Make it the foundation of your design</h2>
<p>The logo should set the tone for the rest of the design. For example, if your logo has round corners try using round corners in your interface.</p>
<p>A good way to get started is create a blank canvas and place the logo where you want. Then build the rest of the interface around it.</p>
<h2>Be aware of emotional affiliations</h2>
<h3>Symbols</h3>
<p>Symbols have strong emotional significance.  If you&#8217;re designing for an international audience be sure to run your design by some people from your demographic. This way you avoid inadvertently pressing any buttons.</p>
<p>For example, in 1998, Nike released a new line of shoes called Nike Air Bakin. They quickly recalled them when Muslim American groups complained that the logo resembled the word &#8220;Allah&#8221; written in Arabic.</p>
<div id="attachment_799" class="wp-caption aligncenter" style="width: 610px"><img class="size-full wp-image-799" title="Nike Air Bakin" src="http://www.bolducpress.com/wp-content/uploads/2009/05/nike.jpg" alt="Nike had to recall 80,000 units costing them millions of dollars" width="600" height="298" /><p class="wp-caption-text">Nike had to recall 80,000 units costing them millions of dollars</p></div>
<h3>Color</h3>
<p>Colors also have emotional associations: blue is more soothing than red, green is more organic than gray.</p>
<p>Also,  cultures view colors differently. In the United States red means danger, whereas in China, red means happiness. Research your audience before you make your decisions.</p>
<h2>Design for different kinds of media</h2>
<p>Is your logo going to be printed or is it going to sit on the computer screen? Make sure you know your client and where your logo will appear.</p>
<h3>Television</h3>
<p>Televisions (even large hdtvs) have a lower resolution than computer screens. Your very delicate details won&#8217;t appear as clear on a television than they would on a computer.</p>
<h3>Print</h3>
<p>Color looks darker on paper than on the computer screen. It&#8217;s also rendered in CMYK (Cyan, Magenta, Yellow, Key) and not RGB (Red, Green, Blue). Like the television, print can&#8217;t keep the kind of details that you would see on a computer screen so keep your shapes as simple as possible.</p>
<h3>Black and White</h3>
<p>It might not necessarily be in color either (newspapers, yellow pages, fliers etc) so have a high contrast to make it easily recognizable.</p>
<h2>Design for the future</h2>
<p>We are constantly bombarded by products and services often linked with a logo that leaves little or no impact. Your logo should withstand the test of time.</p>
<p>Design a logo that transcends any stylistic trends. If not it will soon and seem quaint and need a redesign. A redesign could potentially hurt the brand because people would lose that familiar affiliation.</p>
<div id="attachment_802" class="wp-caption aligncenter" style="width: 310px"><img class="size-full wp-image-802" title="Pirate Flag" src="http://www.bolducpress.com/wp-content/uploads/2009/05/pirate1.gif" alt="The pirate logo has changed very little over the last 400 years" width="300" height="164" /><p class="wp-caption-text">The pirate logo has changed very little over the last 400 years</p></div>
<p>However, it&#8217;s also natural to &#8220;upgrade&#8221; a logo over time. By upgrading a logo you&#8217;re keeping the essence while making it more modern.</p>
<div id="attachment_798" class="wp-caption aligncenter" style="width: 552px"><img class="size-full wp-image-798" title="Intel Logo, then and now" src="http://www.bolducpress.com/wp-content/uploads/2009/05/intel_logo.gif" alt="Notice that Intel kept the essence of their logo" width="542" height="334" /><p class="wp-caption-text">Notice that Intel kept the essence of their logo</p></div>
<p>Understand the difference between upgrade and change. When you change a logo you change the identity, when you upgrade  a logo you improve the identity.</p>
<h2>Further reading</h2>
<p><a title="Logo Design Workbook" href="http://www.amazon.com/Logo-Design-Workbook-Hands-Creating/dp/1592532349/" target="_blank">Logo Design Workbook</a></p>
<p><a title="The history of various famous logos" href="http://www.logoblog.org/famous_logo_design.php" target="_blank">History of various famous logos</a></p>
<p><a title="Taking a brand online" href="http://boagworld.com/design/taking-a-brand-online" target="_blank">Taking a brand online</a></p>
<p><a title="50+ Kick Ass Logos for Inspiration" href="http://www.fuelyourcreativity.com/50-kick-ass-logos-for-inspiration/" target="_blank">50+ Kiss Ass Logos for Inspiration</a></p>
<p><a title="Logo Faves | Logo Design Inspiration" href="http://logofaves.com/" target="_blank">Logo Faves | Logo Design Inspiration</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bolducpress.com/design/the-fundamental-of-logo-design/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Books that every web designer should own</title>
		<link>http://www.bolducpress.com/design/books-that-every-web-designer-should-own/</link>
		<comments>http://www.bolducpress.com/design/books-that-every-web-designer-should-own/#comments</comments>
		<pubDate>Mon, 04 May 2009 18:28:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://www.bolducpress.com/?p=25</guid>
		<description><![CDATA[Books are the next best thing to attending classes or seminars. Here are some of my favorites. ]]></description>
			<content:encoded><![CDATA[<h2>Don&#8217;t Make Me Think:</h2>
<div class="alignleft marginbottom"><a href="http://www.amazon.com/Think-Common-Sense-Approach-Usability/dp/0789723107" target="_blank"><img class="alignleft size-full wp-image-118 img" title="Don't Make Me Think" src="http://www.bolducpress.com/wp-content/uploads/2009/04/dont_make_me_think.jpg" alt="Don't Make Me Think" width="100" height="129" /></a>This book is a classic in the web design industry. It takes a more general approach and talks about web design over all. Every time I read it I learn something new.</div>
<h2 class="clear">The Principles of Beautiful Web Design:</h2>
<div class="alignleft marginbottom"><a href="http://www.amazon.com/Principles-Beautiful-Web-Design/dp/0975841963/" target="_blank"><img class="alignleft size-full wp-image-119 img" title="The Principles of Beautiful Web Design" src="http://www.bolducpress.com/wp-content/uploads/2009/04/beautiful_web_design.jpg" alt="The Principles of Beautiful Web Design" width="100" height="129" /></a></p>
<p>This is a great introduction to the fundamentals of web design. It covers layout and composition, color, typography and much more. If you&#8217;re a beginner web designer then this is essential reading.</p></div>
<h2 class="clear">Letting Go of the Words:</h2>
<div class="alignleft marginbottom"><a href="http://www.amazon.com/Letting-Go-Words-Interactive-Technologies/dp/0123694868/" target="_blank"><img class="alignleft size-full wp-image-120 img" title="Letting Go of The Words" src="http://www.bolducpress.com/wp-content/uploads/2009/04/letting_go_of_words.jpg" alt="Letting Go of The Words" width="100" height="121" /></a></p>
<p>This book describes the way people search for (but not necessarily find) information. For example, it explains the different roles of the home page, pathway pages and content. A great book to get you thinking about web design the right way.</p></div>
<h2 class="clear">Logo:</h2>
<div class="alignleft marginbottom"><a href="http://www.amazon.com/Logo-Design-Workbook-Hands-Creating/dp/1592532349/" target="_blank"><img class="alignleft size-full wp-image-122 img" title="Logo Design Workbook" src="http://www.bolducpress.com/wp-content/uploads/2009/04/logo.jpg" alt="Logo Design Workbook" width="100" height="100" /></a>This book changed the way I thought about Logo Design. If you&#8217;re interested at all in designing logos for your clients then this book is a must have.</div>
<h2 class="clear">Design Patterns:</h2>
<div class="alignleft marginbottom"><a href="http://www.amazon.com/Design-Patterns-Object-Oriented-Addison-Wesley-Professional/dp/0201633612/" target="_blank"><img class="alignleft size-full wp-image-123 img" title="Design Patterns" src="http://www.bolducpress.com/wp-content/uploads/2009/04/design_patterns.jpg" alt="Design Patterns" width="100" height="131" /></a>This was the first book that took all Object Oriented Design Patterns and cataloged and explained them. This book is for advanced web developers but if your into code then pick this one up!</div>
<h2 class="clear">The Pragmatic Programmer:</h2>
<div class="alignleft marginbottom"><a href="http://www.amazon.com/Pragmatic-Programmer-Journeyman-Master/dp/020161622X/" target="_blank"><img class="alignleft size-full wp-image-124 img" title="The Pragmatic Programmer" src="http://www.bolducpress.com/wp-content/uploads/2009/04/pragmatic_programmer.jpg" alt="The Pragmatic Programmer" width="100" height="126" /></a> Another classic in the web development world. This takes a very general approach and introduces you to the fundamental concepts of good code design. </div>
<h2 class="clear">PHP Objects Patterns and Practice:</h2>
<div class="alignleft marginbottom"><a href="http://www.amazon.com/PHP-Objects-Patterns-Practice-Second/dp/1590599098/" target="_blank"><img class="alignleft size-full wp-image-125 img" title="PHP Objects Patterns and Practice" src="http://www.bolducpress.com/wp-content/uploads/2009/04/php_patterns.jpg" alt="PHP Objects Patterns and Practice" width="100" height="133" /></a>Though it&#8217;s not as comprehensive as Design Patterns it&#8217;s easier to read and has a wonderful section that details some of the best work practices as a php professional.</div>
<h2 class="clear">Learning JQuery 1.3:</h2>
<div class="alignleft marginbottom"><a href="http://www.amazon.com/Learning-jQuery-1-3-Jonathan-Chaffer/dp/1847196705/" target="_blank"><img class="alignleft size-full wp-image-126 img" title="Learning Jquery 1.3" src="http://www.bolducpress.com/wp-content/uploads/2009/04/learning_jquery.jpg" alt="Learning Jquery 1.3" width="100" height="123" /></a>JQuery is a javascript framework that dramatically simplifies the way you code javascript. If you want to start building AJAX applications fast then you must, simply must get this book!</div>
<h2 class="clear">CSS: The Definitive Guide:</h2>
<div class="alignleft marginbottom"><a href="http://www.amazon.com/CSS-Definitive-Guide-Eric-Meyer/dp/0596527330/" target="_blank"><img class="alignleft size-full wp-image-127 img" title="CSS: The Definitive Guide" src="http://www.bolducpress.com/wp-content/uploads/2009/04/css_guide.jpg" alt="CSS: The Definitive Guide" width="100" height="131" /></a>If you&#8217;re interested in learning Cascading Style Sheets (and if you consider yourself a web developer then you should be) then this is the single best source for learning CSS.</div>
<h2 class="clear">MySQL:</h2>
<div class="alignleft marginbottom"><a href="http://www.amazon.com/MySQL-Developers-Library-Paul-DuBois/dp/0672329387/" target="_blank"><img class="alignleft size-full wp-image-128 img" title="MySQL" src="http://www.bolducpress.com/wp-content/uploads/2009/04/mysql.jpg" alt="MySQL" width="100" height="129" /></a>I&#8217;ve found that it&#8217;s hard to find a good book stricly about MySQL. Well here it is, book found. At over 1,000 pages it covers everything you would ever want to know about MySql.</div>
<h2 class="clear margintop">Reference Books:</h2>
<p>You have to get some reference material! Believe it or not but searching on the internet for the solution can often take more time than just looking through the index of the right book.</p>
<p>The good news is reference books are cheap! You can purchase all of the books below for less than $50.</p>
<h3 class="clear">HTML &amp; XHTML Pocket Reference</h3>
<div class="alignleft marginbottom"><a href="http://www.amazon.com/HTML-XHTML-Pocket-Reference-OReilly/dp/0596527276/" target="_blank"><img class="alignleft size-full wp-image-131 img" title="HTML and XHTML Pocket Reference" src="http://www.bolducpress.com/wp-content/uploads/2009/04/html_reference.jpg" alt="HTML and XHTML Pocket Reference" width="100" height="167" /></a>This book lists out every html tag alphabetically which makes finding information a snap. It also has a great character list in the back for easy access.</div>
<h3 class="clear">CSS Pocket Reference</h3>
<div class="alignleft marginbottom"><a href="http://www.amazon.com/CSS-Pocket-Reference-Presentation-OReilly/dp/0596515057/" target="_blank"><img class="alignleft size-full wp-image-130 img" title="CSS Pocket Reference" src="http://www.bolducpress.com/wp-content/uploads/2009/04/css_reference.jpg" alt="CSS Pocket Reference" width="100" height="167" /></a>Not only is this a great reference it also has 30 pages of killer information about the concepts of CSS and how it works.This was written by Eric Meyer, one of the most respected names in CSS development.</div>
<h3 class="clear">MySQL Pocket Reference</h3>
<div class="alignleft marginbottom"><a href="http://www.amazon.com/MySQL-Pocket-Reference-Functions-Utilities/dp/0596514263/" target="_blank"><img class="alignleft size-full wp-image-129 img" title="MySQL Pocket Reference" src="http://www.bolducpress.com/wp-content/uploads/2009/04/mysql_reference.jpg" alt="MySQL Pocket Reference" width="100" height="165" /></a>A great reference that explains datatypes, the SELECT syntax and other common functions.</div>
<h3 class="clear">Adobe AIR for Javascript Developers Pocket Guide</h3>
<div class="clear"><a href="http://www.amazon.com/Adobe-JavaScript-Developers-Pocket-Guides/dp/0596518374/" target="_blank"><img class="alignleft size-full wp-image-132 img" title="Adobe AIR for Javascript Developers Pocket Reference" src="http://www.bolducpress.com/wp-content/uploads/2009/04/air_reference.jpg" alt="Adobe AIR for Javascript Developers Pocket Reference" width="100" height="165" /></a>This is a MUST HAVE if you&#8217;re going to be packaging and running web applications on the desktop. It explains how to debug and package an application as well as provides an excellent reference about the API.</div>
]]></content:encoded>
			<wfw:commentRss>http://www.bolducpress.com/design/books-that-every-web-designer-should-own/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
