<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>812studio</title>
	
	<link>http://812studio.com</link>
	<description>St. Louis based Web Designer</description>
	<lastBuildDate>Thu, 23 Jun 2011 15:32:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/812studio" /><feedburner:info uri="812studio" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Initial Letter: A jQuery plugin for making drop caps and more</title>
		<link>http://feedproxy.google.com/~r/812studio/~3/OduA_CsOhuc/</link>
		<comments>http://812studio.com/initial-letter-a-jquery-plugin-for-making-drop-caps-and-more/#comments</comments>
		<pubDate>Mon, 14 Jun 2010 05:00:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Writing]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://812studio.com/?p=272</guid>
		<description><![CDATA[Initial Letter is a jQuery plugin designed to make the implementation of initial letter styles (drop caps, raised caps, etc.) easy and consistent between browsers. Check it out Demo Download Features Create four types of initial letters easily. Dropped &#8211; The baseline of the initial letter is below the baseline of the body text Raised [...]]]></description>
			<content:encoded><![CDATA[<p>Initial Letter is a jQuery plugin designed to make the implementation of initial letter styles (drop caps, raised caps, etc.) easy and consistent between browsers.<span id="more-272"></span></p>
<h6>Check it out</h6>
<p><a href="http://812studio.com/Development/initialLetter-1.0/initialLetter.html">Demo</a><br />
<a href="http://812studio.com/Development/initialLetter-1.0.zip">Download</a></p>
<h6>Features</h6>
<p>Create four types of initial letters easily.</p>
<ol>
<li><strong>Dropped</strong> &#8211; The baseline of the initial letter is below the baseline of the body text <img class="alignnone size-full wp-image-320" title="Initial Letter: Dropped" src="http://812studio.com/wp-content/uploads/2010/04/dropped.png" alt="" width="700" height="214" /></li>
<li><strong>Raised</strong> &#8211; The top of the initial letter is above the height of the body text <img class="alignnone size-full wp-image-321" title="Initial Letter: Raised" src="http://812studio.com/wp-content/uploads/2010/04/raised.png" alt="" width="700" height="214" /></li>
<li><strong>Reversed</strong> &#8211; The initial letter has a background <img class="alignnone size-full wp-image-322" title="Initial Letter: Reversed" src="http://812studio.com/wp-content/uploads/2010/04/reversed.png" alt="" width="700" height="214" /></li>
<li><strong>Overlapped</strong> &#8211; The initial cap actually overlaps the body copy. Keep the color and/or tint light enough so readability isn’t impaired. <img class="alignnone size-full wp-image-323" title="Initial Letter: Overlapped" src="http://812studio.com/wp-content/uploads/2010/04/overlapped.png" alt="" width="700" height="214" /></li>
</ol>
<h6>Usage</h6>
<p><a href="http://812studio.com/Development/initialLetter-1.0.zip">Download</a> and unzip the Initial Letter file. Drop it in your site&#8217;s root directory. You can place the files anywhere you would like. Just refer to them correctly.</p>
<ol>
<li> <strong>Include JS files</strong>
<pre lang="html4strict"><script src="http://code.jquery.com/jquery-1.4.2.min.js" type="text/javascript"><!--mce:0--></script>
<script src="/initialLetter/jquery.initialLetter-1.0.js" type="text/javascript"><!--mce:1--></script></pre>
</li>
<li> <strong>Include CSS file</strong>
<pre lang="html4strict"></pre>
</li>
<li> <strong>Activate plugin using jQuery selector</strong>
<pre lang="javascript"><script type="text/javascript"><!--mce:2--></script></pre>
<p>The code above is an example. You will need to use the jQuery selector appropriate for your project to identify the first letter of the text you want to alter.  If you need help understanding selectors, use this <a href="http://www.codylindley.com/jqueryselectors/">jQuery selectors</a> resource.</li>
<li> <strong>Options</strong><br />
You have these four initial letter style options to work with: dropped, raised, reversed and overlapped.</p>
<pre class="brush: jscript; title: ; notranslate">initialLetter: &quot;dropped&quot;</pre>
<pre class="brush: jscript; title: ; notranslate">initialLetter: &quot;raised&quot;</pre>
<pre class="brush: jscript; title: ; notranslate">initialLetter: &quot;reversed&quot;</pre>
<pre class="brush: jscript; title: ; notranslate">initialLetter: &quot;overlapped&quot;</pre>
<p>You can also create your own initial letter styles. The name you choose then becomes the class name for the span tag that wraps around the first letter of selected text.</p>
<pre class="brush: jscript; title: ; notranslate">initialLetter: &quot;createYourOwn&quot;</pre>
<p>The above setting would generate this html</p>
<pre class="brush: xml; title: ; notranslate">&lt;span class=&quot;createYourOwn&quot;&gt;L&lt;/span&gt;orem ipsum dolor sit...</pre>
</li>
</ol>
<h6>Disclaimer</h6>
<p>Although the plugin will make the process of making initial letters easy, you will probably still need to adjust the Initial Letter CSS file to fit the typographic settings of your site. Initial Letter uses typographic settings generated from <a href="http://lamb.cc/typograph/">http://lamb.cc/typograph/</a>.</p>
<h6>Cross-browser compatibility</h6>
<p>Firefox &#8211; No issues<br />
Safari, Chrome (Webkit), Opera &#8211; Sight difference in line-height of initial letters.<br />
IE 8, 7 and 6 &#8211; No issues</p>
<h6>Giving Credit</h6>
<p>Although I wrote this simple plugin, I hacked code provided by <a href="http://www.mail-archive.com/jquery-en@googlegroups.com/msg39064.html">Hamish Campbell</a> for finding the first alphanumeric character of any body of text selected using jQuery.</p>
<h6>Fork it!</h6>
<p>If you are a Githubber and you would like to fork or clone this plugin, you can do so <a href="http://github.com/812studio/Initial-Letter">here</a>.</p>
<img src="http://feeds.feedburner.com/~r/812studio/~4/OduA_CsOhuc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://812studio.com/initial-letter-a-jquery-plugin-for-making-drop-caps-and-more/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://812studio.com/initial-letter-a-jquery-plugin-for-making-drop-caps-and-more/</feedburner:origLink></item>
		<item>
		<title>CSS or jQuery for drop caps?</title>
		<link>http://feedproxy.google.com/~r/812studio/~3/0n5OKZB1nFk/</link>
		<comments>http://812studio.com/css-or-jquery-for-drop-caps/#comments</comments>
		<pubDate>Mon, 14 Jun 2010 02:14:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Writing]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://812studio.com/?p=270</guid>
		<description><![CDATA[Naturally, I thought using CSS would be the easiest solution for creating a drop cap. And it was, but cross-browser consistency was horrible. The :first-letter pseudo-element isn&#8217;t rendered constantly across browsers. Nick Cowie wrote a great post and created a thorough chart illustrating these cross-browser issues. I eventually lost patience wrestling with the cross-browser effects [...]]]></description>
			<content:encoded><![CDATA[<p>Naturally, I thought using CSS would be the easiest solution for creating a drop cap. And it was, but cross-browser consistency was horrible. The :first-letter pseudo-element isn&#8217;t rendered constantly across browsers.<span id="more-270"></span> Nick Cowie wrote a great <a href="http://nickcowie.com/2009/drop-caps-first-letter-and-firefox/">post</a> and created a thorough <a href="http://www.flickr.com/photos/nickobec/3209726958/sizes/l/">chart</a> illustrating these cross-browser issues. I eventually lost patience wrestling with the cross-browser effects of  the :first-letter pseudo-element and turned to jQuery.</p>
<h6>jQuery</h6>
<p>I chose to use jQuery to select and then wrap the first character of text in a span tag.  This also allowed me to use Firebug to to push and pull the span&#8217;s styles within the browser. I initially hacked code written by Hamish Campbell&#8217;s to <a href="http://www.mail-archive.com/jquery-en@googlegroups.com/msg39064.html">find the first letter</a>. This is the code I used to make the drop caps possible:</p>
<pre lang="javascript">jQuery(function($) {
    //Grab first character for Drop Caps
    $("div.entry p:eq(0)").each(function() {
        var text = $(this).html();
        var first = $('&lt;span&gt;'+text.charAt(0)+'&lt;/span&gt;').addClass('dropcap');
        $(this).html(text.substring(1)).prepend(first);
    });
});
</pre>
<p>This worked well, but it lead to more questions.</p>
<h6>What is a drop cap anyway?</h6>
<p>A drop cap is a type of &#8220;initial letter.&#8221; Wikipedia explains an <a href="http://en.wikipedia.org/wiki/Initial">initial letter</a> this way:</p>
<blockquote><p>In a written work, an initial is a letter at the beginning of a work, a chapter or a paragraph  that is larger than the rest of the text. The word comes from the Latin initialis, which means standing at the beginning. It is often several lines in height and in older books or manuscripts sometimes ornately decorated.</p></blockquote>
<p>Further Googling led me to this AIGA <a href="http://www.aiga.org/content.cfm/for-your-typographic-information-initial-letters">post</a> that indicated these five basic initial letter types:</p>
<ol>
<li>dropped</li>
<li>raised</li>
<li>boxed</li>
<li>reversed</li>
<li>overlapped</li>
</ol>
<h6>Making a plugin</h6>
<p>While trying to create these various initial letter styles I decided to make a jQuery plugin to make switching between initial letter styles easy. So, check out my <a href="initial-letter-a-jquery-plugin-for-making-drop-caps-and-more/">Initial Letter</a> plugin for making drop caps, raised caps, reversed caps and overlapped caps.</p>
<img src="http://feeds.feedburner.com/~r/812studio/~4/0n5OKZB1nFk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://812studio.com/css-or-jquery-for-drop-caps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://812studio.com/css-or-jquery-for-drop-caps/</feedburner:origLink></item>
		<item>
		<title>A barely usable half-million dollar watch and its website</title>
		<link>http://feedproxy.google.com/~r/812studio/~3/srGlCZwH7gc/</link>
		<comments>http://812studio.com/a-barely-usable-half-million-dollar-watch-and-its-website/#comments</comments>
		<pubDate>Thu, 10 Jun 2010 19:12:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Writing]]></category>
		<category><![CDATA[Bad Design]]></category>

		<guid isPermaLink="false">http://812studio.com/?p=310</guid>
		<description><![CDATA[Aside from Rafael Nadal&#8217;s impressive fifth French Open win this past week, he has also received a ton of attention for wearing a half-million dollar ($525,000 to be exact) watch throughout each of his tennis matches. I know, this sounds nuts, but it&#8217;s true. The watch: RM027 by Richard Mille Although the craftsmanship and the [...]]]></description>
			<content:encoded><![CDATA[<p>Aside from Rafael Nadal&#8217;s impressive fifth French Open win this past week, he has also received a ton of attention for wearing a half-million dollar ($525,000 to be exact) watch throughout each of his tennis matches. I know, this sounds nuts, but it&#8217;s true.<span id="more-310"></span></p>
<h6>The watch: RM027 by Richard Mille</h6>
<p><a href="http://812studio.com/wp-content/uploads/2010/06/watchRM.jpg"><img class="alignnone size-full wp-image-311" title="A $525K watch to wear for tennis" src="http://812studio.com/wp-content/uploads/2010/06/watchRM.jpg" alt="" width="700" height="561" /></a></p>
<p>Although the craftsmanship and the photography for this watch looks flawless, it doesn&#8217;t exactly look like a device with which one can easily tell time. A little Googling revealed that the watch weighs the same as a few pennies, is made of strong and lightweight metals and tells accurate time. I thought every watch was made this way.</p>
<h6>A worthless exploration</h6>
<p>A watch this expensive must have a killer website, right? Wrong! Eager to learn the reasoning behind such a high price tag for a watch without diamonds or gold, I fired up Firefox to check out the watch&#8217;s website — <a href="http://www.richard-mille.com/">Richard-Mille.com</a>. Upon first page load, I was confronted with the ever-annoying splash screen with nearly illegible flashing message indicating optimal screen resolution settings. Boo.</p>
<p><a href="http://812studio.com/wp-content/uploads/2010/06/splashPage.png"><img class="alignnone size-large wp-image-312" title="Splash Page" src="http://812studio.com/wp-content/uploads/2010/06/splashPage-700x496.png" alt="" width="700" height="496" /></a></p>
<p>The worst part is that I had a feeling a barely usable Flash site was just one click away. So here it is — no content, just an image and navigation:</p>
<p><a href="http://812studio.com/wp-content/uploads/2010/06/homepage.png"><img class="alignnone size-large wp-image-313" title="Home Page" src="http://812studio.com/wp-content/uploads/2010/06/homepage-700x516.png" alt="" width="700" height="516" /></a></p>
<p>I was actually excited to see a link to &#8220;The Brand,&#8221; so I clicked on it expecting to read focused and inspiring copy about the branding. Instead, I came across microscopic white text over a black background.</p>
<p><a href="http://812studio.com/wp-content/uploads/2010/06/unreadable.png"><img class="alignnone size-large wp-image-314" title="Unreadable text" src="http://812studio.com/wp-content/uploads/2010/06/unreadable-700x515.png" alt="" width="700" height="515" /></a></p>
<p>After straining my eyes reading a few lines, I gave up and navigated to the &#8220;Watches&#8221; page. I figured that if reading was going to be difficult I would just look at pictures of the highly publicized RM027 watch. Surprise, surprise! There are no freaking photos of this new watch. Now fully frustrated with the site, I wisely clicked on &#8220;Media Corner&#8221; as a last attempt to find information about the watch.</p>
<p><a href="http://812studio.com/wp-content/uploads/2010/06/pdfs.png"><img class="alignnone size-large wp-image-315" title="Download PDF" src="http://812studio.com/wp-content/uploads/2010/06/pdfs-700x515.png" alt="" width="700" height="515" /></a></p>
<p>I found info for the RM027 on this page, but I had to download a PDF to read about it. WHAT THE F$CK! I don&#8217;t want to download a flippin&#8217; PDF to read information that should be content on the site.</p>
<h6>Closing remarks</h6>
<p>I hate Richard-Mille.com. The site is a perfect example of how to piss off and frustrate  visitors. The user experience, readability and music is terrible. In all honesty, I can enjoy the RM027 watch on creative, innovative and artistic merit. And along these lines, this is an exceptional watch. However, as far as usability, telling time on this watch is much like using its site to acquire any useful information. My advise to Richard Mille: Sell one of these watches and then use the money you pocket to hire a Web designer to redesign and restructure your site with the goal of achieving simple usability and exceptional user experience.</p>
<img src="http://feeds.feedburner.com/~r/812studio/~4/srGlCZwH7gc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://812studio.com/a-barely-usable-half-million-dollar-watch-and-its-website/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://812studio.com/a-barely-usable-half-million-dollar-watch-and-its-website/</feedburner:origLink></item>
		<item>
		<title>Epitaph: 812studio v1.0</title>
		<link>http://feedproxy.google.com/~r/812studio/~3/DqyA_DH52FQ/</link>
		<comments>http://812studio.com/epitaph/#comments</comments>
		<pubDate>Sat, 01 May 2010 03:51:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Writing]]></category>
		<category><![CDATA[Web design]]></category>

		<guid isPermaLink="false">http://812studio.com/?p=274</guid>
		<description><![CDATA[Version 1.0 of my website was the last Flash site of my career. It led me to a job with Anheuser-Busch. Thanks for opening doors; rest in peace, buddy. Have you buried any websites without a tombstone? I think there should be a graveyard for all sites that pass away. And for each there should [...]]]></description>
			<content:encoded><![CDATA[<p>Version 1.0 of my website was the last Flash site of my career. It led me to a job with Anheuser-Busch. Thanks for opening doors; rest in peace, buddy.<span id="more-274"></span></p>

<a href='http://812studio.com/epitaph/attachment/011/' title='Homepage'><img width="150" height="150" src="http://812studio.com/wp-content/uploads/2010/05/011-150x150.jpg" class="attachment-thumbnail" alt="Homepage" title="Homepage" /></a>
<a href='http://812studio.com/epitaph/attachment/012/' title='About'><img width="150" height="150" src="http://812studio.com/wp-content/uploads/2010/05/012-150x150.jpg" class="attachment-thumbnail" alt="About" title="About" /></a>
<a href='http://812studio.com/epitaph/812studio/' title='Menu'><img width="150" height="150" src="http://812studio.com/wp-content/uploads/2010/05/812studio-150x150.png" class="attachment-thumbnail" alt="Menu" title="Menu" /></a>
<a href='http://812studio.com/epitaph/attachment/032/' title='Afriky Lolo'><img width="150" height="150" src="http://812studio.com/wp-content/uploads/2010/05/032-150x150.jpg" class="attachment-thumbnail" alt="Afriky Lolo" title="Afriky Lolo" /></a>
<a href='http://812studio.com/epitaph/812studio-7/' title='Earthworms'><img width="150" height="150" src="http://812studio.com/wp-content/uploads/2010/05/812studio-7-150x150.png" class="attachment-thumbnail" alt="Earthworms" title="Earthworms" /></a>
<a href='http://812studio.com/epitaph/attachment/031/' title='en'><img width="150" height="150" src="http://812studio.com/wp-content/uploads/2010/05/031-150x150.jpg" class="attachment-thumbnail" alt="en" title="en" /></a>
<a href='http://812studio.com/epitaph/attachment/033/' title='F5 Records'><img width="150" height="150" src="http://812studio.com/wp-content/uploads/2010/05/033-150x150.jpg" class="attachment-thumbnail" alt="F5 Records" title="F5 Records" /></a>
<a href='http://812studio.com/epitaph/812studio-6/' title='Heart Foundation'><img width="150" height="150" src="http://812studio.com/wp-content/uploads/2010/05/812studio-6-150x150.png" class="attachment-thumbnail" alt="Heart Foundation" title="Heart Foundation" /></a>
<a href='http://812studio.com/epitaph/812studio-5/' title='Joy Travel International'><img width="150" height="150" src="http://812studio.com/wp-content/uploads/2010/05/812studio-5-150x150.png" class="attachment-thumbnail" alt="Joy Travel International" title="Joy Travel International" /></a>
<a href='http://812studio.com/epitaph/812studio-4/' title='New Art in The Neighborhood'><img width="150" height="150" src="http://812studio.com/wp-content/uploads/2010/05/812studio-4-150x150.png" class="attachment-thumbnail" alt="New Art in The Neighborhood" title="New Art in The Neighborhood" /></a>
<a href='http://812studio.com/epitaph/812studio-3/' title='Radical Dawg Contest'><img width="150" height="150" src="http://812studio.com/wp-content/uploads/2010/05/812studio-3-150x150.png" class="attachment-thumbnail" alt="Radical Dawg Contest" title="Radical Dawg Contest" /></a>
<a href='http://812studio.com/epitaph/812studio-2/' title='Yoko and Me'><img width="150" height="150" src="http://812studio.com/wp-content/uploads/2010/05/812studio-2-150x150.png" class="attachment-thumbnail" alt="Yoko and Me" title="Yoko and Me" /></a>

<h6>Have you buried any websites without a tombstone?</h6>
<p>I think there should be a graveyard for all sites that pass away. And for each there should be a parting message. What would you put on the tombstones of your expired sites?</p>
<img src="http://feeds.feedburner.com/~r/812studio/~4/DqyA_DH52FQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://812studio.com/epitaph/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://812studio.com/epitaph/</feedburner:origLink></item>
		<item>
		<title>Giving credit where credit is due</title>
		<link>http://feedproxy.google.com/~r/812studio/~3/94y0sTroGB4/</link>
		<comments>http://812studio.com/giving-credit-where-credit-is-due/#comments</comments>
		<pubDate>Fri, 30 Apr 2010 19:09:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Writing]]></category>
		<category><![CDATA[Redesign]]></category>

		<guid isPermaLink="false">http://812studio.com/?p=1</guid>
		<description><![CDATA[I am my own worst client. It has been four years since I last touched my website. This redesign was way past due. This post is intended to illuminate the gobs of resources that influenced this site, and to give credit where credit is due.  Let&#8217;s get to it. Planning/Brand building Watching a video by [...]]]></description>
			<content:encoded><![CDATA[<p>I am my own worst client. It has been four years since I last touched my website. This redesign was way past due. <span id="more-1"></span></p>
<p>This post is intended to illuminate the gobs of resources that influenced this site, and to give credit where credit is due.  Let&#8217;s get to it.</p>
<h6>Planning/Brand building</h6>
<p>Watching a video by <a href="http://www.liquidagency.com/">Marty Neumeier</a> titled &#8220;<a href="http://www.amazon.com/Marty-Neumeiers-INNOVATION-WORKSHOP-Transformation/dp/0321636937">Innovation Workshop:  Brand Strategy + Design Thinking = Transformation</a>&#8221; helped tremendously with planning the conceptual foundation of 812studio and this site. Seriously: Get this video; it will be one of the most inspiring and focusing exercises for you and your business.</p>
<p>I like to work with clients I believe in. It is not my goal to design for the sake of  making stuff I think is &#8220;cool.&#8221; It&#8217;s my goal to get to know my clients, enable them to organize and define their identity and then help them build designs that communicate their  brand effectively.</p>
<h6>Design Theory</h6>
<p>Prior to building an addition to the Museum of Modern Art (<a href="http://www.moma.org/">MoMA</a>), architect <a href="http://www.charlierose.com/guest/view/2656">Yoshio Tanaguchi</a> was quoted as saying, &#8220;I will make the architecture disappear.&#8221; Of course, you can&#8217;t build something that is invisible, but you can build something that appears unobtrusive. Even more, you can build something that plays second fiddle to the main attraction. In this case, I wanted the focus to be on the content of my site, and not the site itself.</p>
<p>I also was influenced by the following two articles by <a href="http://briancray.com/">Brian Cray</a>:</p>
<ol>
<li><a title="Read: &quot;Blog design best practice: Scrollbars not  sidebars&quot;" href="http://briancray.com/2009/08/26/blog-design-information-overload-progressive-disclosure/">Blog design best practice: Scrollbars not sidebars</a></li>
<li><a title="Read: &quot;The more I know, the less I need: Thoughts on web  design&quot;" href="http://briancray.com/2010/02/03/measuring-simplicity-in-web-design/">The more I know, the less I need: Thoughts on web design</a></li>
</ol>
<p>Brian Cray makes some good arguments disputing the need for sidebars in blog sites. And I agree; to keep the focus on the content, don&#8217;t weave competing content into your site. Brian also does an amazing job of testing every element of his site to learn what really works best. The Web is full of untested statements about best practices. The truth is that we all should be doing our own testing and drawing solutions based on the data we receive.</p>
<h6>Layout</h6>
<p>Believe it or not, I don&#8217;t always start from rough sketches on paper. Sometimes I just jump straight into <a href="http://www.adobe.com/products/illustrator/whatsnew/?sdid=FNRPU&amp;">Illustrator</a>, dump all the necessary pieces into the art board, and start moving content in and out of various grid structures until I find the most logical and flexible layout. I went with the <a href="http://960.gs/">960 Grid System</a> based on a 12-column layout.</p>
<h6>HTML</h6>
<p>The way I write HTML is largely influenced by these books:</p>
<ol>
<li><a href="http://www.zeldman.com/dwws/">&#8220;Designing With Web Standards&#8221;</a> by Jeffrey Zeldman</li>
<li><a href="http://www.cssmastery.com/">&#8220;CSS Mastery</a>&#8221; by Andy Budd (There was just as much to learn about HTML in this book as there was CSS)</li>
</ol>
<h6>CSS</h6>
<p>The way I write CSS is completely based on these resources:</p>
<ol>
<li><a href="http://www.cssmastery.com/">&#8220;CSS Mastery</a>&#8221; by Andy Budd</li>
<li><a href="http://google.com">Google</a> (for endless resources to fix IE bugs)</li>
<li><a href="http://github.com/anthonyshort/csscaffold">&#8220;CSScaffold&#8221;</a> by Anthony Short &#8211; This site leverages CSScafold, and I find this to be the best thing to happen to CSS since, well, since CSS!</li>
<li><a href="http://www.dinnermint.org/css/creating-triangles-in-css/">Creating Triangles in CSS</a> by John Rohan &#8211; I used this info to make the comment bubble arrows.</li>
</ol>
<p>As for CSS validation, I think it is important to write code as cleanly and logically as possible. Yet, let&#8217;s be honest, despite the validation flags set off by CSS3, it still offers a much better way of doing many things. And chances are, one day soon, all this new stuff will become valid practice.</p>
<h6>jQuery</h6>
<p>There is so much out there about <a href="http://jquery.com">jQuery</a> right now. Here are the resources I&#8217;ve used for code and knowledge:</p>
<ol>
<li><a href="http://jqueryenlightenment.com/">&#8220;jQuery Enlightenment&#8221;</a> by Cody Lindley &#8211; This was a great read for learning more about jQuery. I often visit Cody&#8217;s <a href="http://www.codylindley.com/jqueryselectors/">jQuery Selectors</a> resource also.</li>
<li><a href="http://net.tutsplus.com">Nettuts</a> and <a href="http://blog.themeforest.net">Theme Forest blog</a> &#8211; <a href="http://jeffrey-way.com/">Jeffrey Way</a> is a freak of nature. I have no clue how this guy learns so fast. I am beyond grateful that he takes the massive amounts of time required to share knowledge.</li>
<li><a href="http://github.com/nathansearles/Faded">Faded</a> by <a href="http://nathansearles.com">Nathan Searles</a> &#8211; I use this on the home page of this site. I love it.</li>
<li>Hamish Campbell&#8217;s tip for using jQuery to <a href="http://www.mail-archive.com/jquery-en@googlegroups.com/msg39064.html">find the first letter</a>. This is the code I used to make the drop caps possible (since CSS3 support for drop caps is very inconsistent between browsers):
<pre class="brush: jscript; title: ; wrap-lines: false; notranslate">
jQuery(function($) {
    //Grab first character for Drop Caps
    $(&quot;div.entry p:eq(0)&quot;).each(function() {
        var text = $(this).html();
        var first = $('&amp;lt;span&amp;gt;'+text.charAt(0)+'&amp;lt;/span&amp;gt;').addClass('dropcap');
        $(this).html(text.substring(1)).prepend(first);
    });
});
</pre>
</li>
<li><a href="http://bassistance.de/jquery-plugins/jquery-plugin-validation/">jQuery Validation Plugin</a> &#8211; I just didn&#8217;t feel like writing my own validation this time. So I&#8217;m using this for now. Has anyone used the<a href="http://demos.usejquery.com/ketchup-plugin/"> Ketchup Plugin</a>? I thought about trying this, too.</li>
<li><a href="http://fuelyourcoding.com/scripts/infield/">Infield Labels</a> &#8211; I&#8217;m currently using this plugin to place the label over the field and then fade it out when the field is clicked on.</li>
<li><a href="http://www.digitalinferno.net/blog/jquery-plugin-livefilter-1-2/">jQuery Plugin: LiveFilter 1.2</a> &#8211;  Mike Merritt made this great plugin that filters a list of content as you type. I initially came across this feature at <a href="http://informationarchitects.jp/articles/">iA</a>.</li>
</ol>
<h6>wordpress</h6>
<ol>
<li><a href="http://digwp.com/">Diggin into WordPress</a> &#8211; I owe endless thanks to Chris Coyers (<a href="http://css-tricks.com">css-tricks.com</a>) and Jeff Star (<a href="http://perishablepress.com">perishablepress.com</a>) for their wealth of WordPress knowledge.</li>
<li><a href="http://justintadlock.com/archives/2008/04/13/cleaner-wordpress-gallery-plugin">Cleaner WordPress Gallery Plugin</a> &#8211; Thanks to Justin Tadlock for this great gallery plugin. Whether you use this plugin or not, learn how to exclude images from your gallery with the gallery <a href="http://en.support.wordpress.com/images/gallery/">shortcode</a>.</li>
<li><a title="Read: &quot;Estimated reading time in web design&quot;" href="http://briancray.com/2010/04/09/estimated-reading-time-web-design/">Estimated  reading time in web design</a> &#8211; Brian Cray created a great script for estimating the reading time of articles. It might not be necessary, but I like this idea.</li>
<li><a title="Add Scripts to the  Pages You Want" rel="bookmark" href="http://www.whypad.com/posts/wordpress-add-scripts-to-the-pages-you-want/749/">WordPress: Add Scripts to the Pages You Want</a> &#8211; Byron Bennett, thanks for this tip.</li>
<li><a title="View WordPress: Advanced Comment Customization" href="http://www.aarongloege.com/blog/web-development/wordpress/advanced-comment-customization/">WordPress:  Advanced Comment Customization</a> -Thank you, Aaron Gloege, for this in-depth explanation detailing how to custom-code your comments.</li>
<li><a href="http://www.wpbeginner.com">WPBeginner</a> &#8211; Has a useful <a href="http://www.wpbeginner.com/wp-tutorials/how-to-add-random-header-images-to-your-wordpress-blog/">script</a> for generating multiple-header images randomly. I liked this idea but decided that I wanted to generate random messages at the footer of my site to fulfill the equation: 812studio + U = &#8220;&#8221;.
<pre class="brush: php; title: ; notranslate">
&lt;span class=&quot;good&quot;&gt;812studio + U =
	&lt;?php $benefit = array(
		'1' =&gt; 'A Darn Good Website',
		'2' =&gt; 'A Strong Identity',
		'3' =&gt; 'A Great Partnership',
		'4' =&gt; 'A Winning Team',
		'5' =&gt; 'Trouble for Your Competitors',
		'6' =&gt; 'Success',
		'7' =&gt; 'A Photo with Obama',
		'8' =&gt; 'Your Companies Logo on the Moon',
		'9' =&gt; 'A Better Looking YOU',
		'10' =&gt; 'A Better Tomorrow',
		);

	echo $benefit[(rand(1,10))];
	?&gt;
&lt;/span&gt;
</pre>
</li>
<li><span style="text-decoration: line-through;"><a href="http://wordpress.org/extend/plugins/wp-syntax/">WP-Syntax</a> &#8211; There are scores of code syntax highlighting plugins; however, this is the one I tried first and found easy to customize.</span></li>
<li><a href="http://www.viper007bond.com/wordpress-plugins/syntaxhighlighter/">SyntaxHighlighter Evolved</a> &#8211; I have found this to be a much better solution than WP-Syntax.</li>
<li><a href="http://mitcho.com/code/yarpp/">Yet Another Related Posts Plugin</a> &#8211; This is an excellent plugin for relating posts. Plus it is easy to customize.</li>
</ol>
<h6>Typography</h6>
<ol>
<li><a href="http://lamb.cc/typograph/">Scale  &amp; Rhythm</a> &#8211; I used this handy site when attempting to create a good scale and rhythm for typography on this site. I kind of butchered things a bit. Nonetheless, this resource is helpful. Up to this point I had been using the <a href="http://jameswhittaker.com/journal/em-based-layouts-vertical-rhythm-calculator/">Em Calculator</a> for this stuff.</li>
<li><a href="http://typekit.com/">Typekit</a> &#8211; So far, I am impressed with Typekit. Honestly, I wanted to get my site out in <a href="http://www.josbuivenga.demon.nl/index.html">Mueso</a> before everyone else did. I missed out on the <a href="http://typography.com/fonts/font_styles.php?productLineID=100033">Archer</a> trend. I have to admit that I love Archer, and I think the amazing <a href="http://www.darrenhoyt.com/">Darren Hoyt</a> was one of the first to employ it online (it&#8217;s no longer used on his site).</li>
<li><a rel="bookmark" href="http://24ways.org/2006/compose-to-a-vertical-rhythm">Compose to a Vertical Rhythm</a> &#8211; Here is a typographical gem of an article from 2006! Thank you, Richard Rutter.</li>
<li><a href="http://www.viget.com/advance/the-line-length-misconception/">The  Line Length Misconception</a> &#8211; This is the best article I have read related to the appropriate number of characters per line. I think my cpl is just about 90.</li>
<li><a href="http://informationarchitects.jp/100e2r/">The 100% <em>Easy</em>-2-Read Standard</a> &#8211; So far, I find this to be the best argument for easy-to-read font sizes.</li>
<li><a href="http://www.smashingmagazine.com/2009/08/20/typographic-design-survey-best-practices-from-the-best-blogs/">Typographic  Design Patterns and Best Practices</a> &#8211; I also found this article at Smashing Magazine to be informative.</li>
</ol>
<h6>Writing</h6>
<ol>
<li><a href="http://minalisms.com">Minalisms</a> &#8211; My wifey is a professional editor. When she isn&#8217;t working for the StL Post-Dispatch or Wells Fargo, she helps me sound smarter. Thanks, babe.</li>
<li><a href="http://zurb.com">Zurb</a> and <a href="http://viget.com">Viget</a> &#8211; I love how well these companies write about <em>everything</em>. These are companies that I would one day hope to be good enough to work for.</li>
<li><a title="Learn to fucking spell" href="http://iampaddy.com/spell">Learn to Fucking Spell</a> &#8211; I am guilty of not giving my writing the time and care that is essential. This article helped me regain focus.</li>
<li><a href="http://www.inc.com/magazine/20100301/lets-take-this-offline.html">Let&#8217;s Take This Offline</a> &#8211; Excellent points on blogging.</li>
</ol>
<h6>Overall influences</h6>
<ol>
<li> <a href="http://wearebuild.com/">Build</a></li>
<li><a href="http://dustincurtis.com/">Dustin Curtis</a></li>
<li><a href="http://digitalmash.com/">Digital Mash</a></li>
<li><a href="http://yaronschoen.com/">Yaron Schoen</a></li>
<li><a href="http://www.8164.org/">Jin Yang</a></li>
<li><a href="http://www.wilsonminer.com/">Wilson Miner</a></li>
<li><a href="http://www.useit.com/">Jakob Nielsen&#8217;s Website (usable information technology) </a></li>
<li><a href="http://www.good.is/">GOOD</a></li>
<li><a href="http://www.ndesign-studio.com/">Nick La</a></li>
<li><a href="http://bestwebgallery.com">Best Web Gallery</a></li>
<li><a href="http://24ways.org">24 Ways</a></li>
<li><a href="http://www.evanhecox.com/">Evan Hecox</a></li>
<li><a href="http://www.emilkozak.com/studio/nike-09/">Emil Kozak</a></li>
<li><a href="http://www.nickshea.com/index.php?/personal/peg-type/">Nick Shea</a></li>
<li><a href="http://www.bradhowe.net/pg10.html">Brad Howe</a></li>
<li><a href="http://kohjirokinno.com/">Kohjiro Konno</a></li>
<li><a href="http://anschultz.com/">Brandon Anshcultz</a></li>
</ol>
<p>And countless others.</p>
<h6>Project Management</h6>
<p><a href="http://teambox.com">Teambox</a> &#8211; Last but not least, Teambox has been an excellent resource for managing this project. I collaborated with the Teambox team to write a real-world tutorial about this great web app. I use Teambox to manage air-tight projects. I make all my clients use this as well, and they love it. I can&#8217;t say enough about how awesome Teambox is.</p>
<h6>Done and done</h6>
<p>I want to thank all of these people and resources for caring enough to share. Much respect.</p>
<img src="http://feeds.feedburner.com/~r/812studio/~4/94y0sTroGB4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://812studio.com/giving-credit-where-credit-is-due/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://812studio.com/giving-credit-where-credit-is-due/</feedburner:origLink></item>
		<item>
		<title>Firefox vs WebKit CSS3 radial gradients</title>
		<link>http://feedproxy.google.com/~r/812studio/~3/lit9fyg3jew/</link>
		<comments>http://812studio.com/firefox-vs-webkit-css3-radial-gradients/#comments</comments>
		<pubDate>Thu, 29 Apr 2010 20:34:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Writing]]></category>
		<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://812studio.com/?p=194</guid>
		<description><![CDATA[I am writing this to hopefully save you a ton of time. Let me start by stating that radial gradients are two different beasts in Firefox and Webkit. I intend to touch upon my experience working with radial gradients; however, I am not going to explain every detail about them. Let&#8217;s start with the catalyst [...]]]></description>
			<content:encoded><![CDATA[<p>I am writing this to hopefully save you a ton of time. Let me start by stating that radial gradients are two different beasts in <a href="http://www.mozilla.com/en-US/firefox/personal.html">Firefox</a> and <a href="http://webkit.org/">Webkit</a>. <span id="more-194"></span>I intend to touch upon my experience working with radial gradients; however, I am not going to explain every detail about them. Let&#8217;s start with the catalyst for this whole exercise in the first place.</p>
<p>I wanted to create a creased paper effect using CSS3 radial gradients. Here is a photograph of what this effect looks like on paper:</p>
<p><img class="alignnone size-full wp-image-266" title="Creased Paper" src="http://812studio.com/wp-content/uploads/2010/04/paperCrease.jpg" alt="" width="600" height="900" /></p>
<p>Below you&#8217;ll find the screenshots and CSS3 codes used to create the effect in Firefox and Webkit:</p>
<h6>Firefox</h6>
<p><a href="http://812studio.com/wp-content/uploads/2010/04/ff.png"><img class="alignnone size-large wp-image-268" title="Firefox radial gradient" src="http://812studio.com/wp-content/uploads/2010/04/ff-700x327.png" alt="" width="700" height="327" /></a></p>
<pre class="brush: css; title: ; wrap-lines: false; notranslate">background: -moz-radial-gradient(50% 1200px 1deg, circle closest-corner, rgba(51, 51, 51, .9) 50%, rgba(242, 242, 242, .5) 95%);
</pre>
<pre class="brush: css; title: ; wrap-lines: false; notranslate">background: -moz-radial-gradient(50% 145% 1deg, circle closest-corner, rgba(51, 51, 51, .9) 50%, rgba(242, 242, 242, .9) 95%);
</pre>
<p>In Firefox, I had to use two styles because I ran into a problem with getting the radial gradient to appear in the right place at the bottom of its block level element (BLE). I used the first style with a fixed position (px) on BLEs that had a short height. This allowed me to force the gradient way below the bottom of the BLE to create a more subtle effect. However, on BLEs with a tall height, the gradient showed up in the middle of the BLE. To correct this, I had to use relative positioning (%) to make it appear in the right place.</p>
<p>Overall, I love how Firefox allows you to create an ellipse (oval) that stretches the radial gradient to the left and the right. The only crappy part is that there isn&#8217;t one style that can scale correctly to fit any BLE&#8217;s height.</p>
<h6>Webkit</h6>
<p><a href="http://812studio.com/wp-content/uploads/2010/04/webk.png"><img class="alignnone size-large wp-image-269" title="Webkit radial gradient" src="http://812studio.com/wp-content/uploads/2010/04/webk-700x328.png" alt="" width="700" height="328" /></a></p>
<pre class="brush: css; title: ; wrap-lines: false; notranslate">background: -webkit-gradient(radial, 480 bottom, 5, 480 bottom, 250, from(rgba(51, 51, 51, .2)), to(rgba(242, 242, 242, .1)));
</pre>
<p>Webkit, on the other hand, cannot create an ellipse. No matter what you try, you will always get a perfect circle. URGH! But you can set a <a href="http://www.gradeamathhelp.com/x-axis-and-y-axis.html">y-axis</a> position that works for any BLE&#8217;s height.</p>
<p>I don&#8217;t think that either Firefox or Webkit planned for radial gradients to be used this way. As a result, neither are perfect for this, but where&#8217;s the fun in not pushing boundaries?</p>
<img src="http://feeds.feedburner.com/~r/812studio/~4/lit9fyg3jew" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://812studio.com/firefox-vs-webkit-css3-radial-gradients/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://812studio.com/firefox-vs-webkit-css3-radial-gradients/</feedburner:origLink></item>
		<item>
		<title>Giving your clients deadlines</title>
		<link>http://feedproxy.google.com/~r/812studio/~3/EVY6X3UGBWo/</link>
		<comments>http://812studio.com/giving-your-clients-deadlines/#comments</comments>
		<pubDate>Mon, 26 Apr 2010 22:05:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Graphic Design]]></category>
		<category><![CDATA[Client Interaction]]></category>
		<category><![CDATA[Poster]]></category>

		<guid isPermaLink="false">http://812studio.com/?p=251</guid>
		<description><![CDATA[I am busy. This month is full of must-reach deadlines. Just the other day, I received a phone call from a regular client asking if I could make a poster for him. I expressed that I was swamped and could only dedicate three hours one day this week to make this poster. In on other [...]]]></description>
			<content:encoded><![CDATA[<p>I am busy. This month is full of must-reach deadlines. Just the other day, I received a phone call from a regular client asking if I could make a poster for him. <span id="more-251"></span>I expressed that I was swamped and could only dedicate three hours one day this week to make this poster. In on other words, I told him that it was now or never. <a href="http://afrikylolo.com/about-2/">Diádié</a> came over for three hours the next day, and the comps below are what we worked out. The last image in the set is the one he chose.
<a href='http://812studio.com/giving-your-clients-deadlines/screen-shot-2010-04-28-at-5-20-59-pm/' title='Comp'><img width="150" height="150" src="http://812studio.com/wp-content/uploads/2010/04/Screen-shot-2010-04-28-at-5.20.59-PM-150x150.png" class="attachment-thumbnail" alt="Comp" title="Comp" /></a>
<a href='http://812studio.com/giving-your-clients-deadlines/screen-shot-2010-04-28-at-5-21-46-pm/' title='Comp'><img width="150" height="150" src="http://812studio.com/wp-content/uploads/2010/04/Screen-shot-2010-04-28-at-5.21.46-PM-150x150.png" class="attachment-thumbnail" alt="Comp" title="Comp" /></a>
<a href='http://812studio.com/giving-your-clients-deadlines/screen-shot-2010-04-28-at-5-30-26-pm/' title='Final Comp'><img width="150" height="150" src="http://812studio.com/wp-content/uploads/2010/04/Screen-shot-2010-04-28-at-5.30.26-PM-150x150.png" class="attachment-thumbnail" alt="Final Comp" title="Final Comp" /></a>
</p>
<h6>Time boundaries</h6>
<p>When time is scarce, let your clients know what you can give them, and stick to it. You&#8217;d be amazed at how much you can get done when <em>you</em> give your clients firm deadlines!</p>
<img src="http://feeds.feedburner.com/~r/812studio/~4/EVY6X3UGBWo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://812studio.com/giving-your-clients-deadlines/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://812studio.com/giving-your-clients-deadlines/</feedburner:origLink></item>
		<item>
		<title>A perfect example of bad design</title>
		<link>http://feedproxy.google.com/~r/812studio/~3/0GirUUkGOV4/</link>
		<comments>http://812studio.com/a-perfect-example-of-bad-design/#comments</comments>
		<pubDate>Mon, 19 Apr 2010 21:19:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Writing]]></category>
		<category><![CDATA[Bad Design]]></category>

		<guid isPermaLink="false">http://812studio.com/?p=188</guid>
		<description><![CDATA[Yes, bad design is all around us. Sometimes it&#8217;s just around the corner. Case in point: Someone, or some group, in my neighborhood decided to change our street&#8217;s sign. However, this someone or group notified neither me, my wife nor a majority of the residents on the street before putting up the sign. Can anyone [...]]]></description>
			<content:encoded><![CDATA[<p>Yes, bad design is all around us. Sometimes it&#8217;s just around the corner. Case in point: Someone, or some group, in my neighborhood decided to   change our street&#8217;s sign. However, this someone or group notified neither me, my   wife nor a majority of the residents on the street before putting up the sign. Can anyone say &#8220;Shady?&#8221;<span id="more-188"></span></p>
<p>Read our new street sign:</p>
<p><a href="http://812studio.com/wp-content/uploads/2010/04/Briar_Weed.jpg"><img class="alignnone size-large wp-image-192" title="Briar Weed Lane" src="http://812studio.com/wp-content/uploads/2010/04/Briar_Weed-700x466.jpg" alt="" width="700" height="466" /></a></p>
<p>First of all, the sign is misspelled. It&#8217;s not Briar Wood Lane; it is Briarwood Lane. Briarwood is one word, not two. Next, the typeface chosen makes &#8220;Wood&#8221; look like &#8220;Weed.&#8221; To top this off, the plant graphic within the sign resembles marijuana! I guess from now on I&#8217;ll have to direct new visitors to our house by telling them to look for the sign decorated with pot leaves that reads &#8220;Briar Weed Lane.&#8221;</p>
<p>Talk about embarrassing. My neighborhood is showing its obvious issues.</p>
<p>But hey, the city is just as bad. Can you detect the error in the sign that the city installed, also at the top of my street? I&#8217;ll give you a hint: It&#8217;s not the one that correctly spells &#8220;Briarwood Lane.&#8221;</p>
<p><a href="http://812studio.com/wp-content/uploads/2010/04/yeild.jpg"><img class="alignnone size-large wp-image-191" title="YEILD" src="http://812studio.com/wp-content/uploads/2010/04/yeild-700x466.jpg" alt="" width="700" height="466" /></a></p>
<p>The correct spelling is &#8220;YIELD.&#8221; &#8230;Unbelievable!</p>
<img src="http://feeds.feedburner.com/~r/812studio/~4/0GirUUkGOV4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://812studio.com/a-perfect-example-of-bad-design/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://812studio.com/a-perfect-example-of-bad-design/</feedburner:origLink></item>
		<item>
		<title>Using Teambox for project management</title>
		<link>http://feedproxy.google.com/~r/812studio/~3/60fhXHuqLp8/</link>
		<comments>http://812studio.com/using-teambox-for-project-management/#comments</comments>
		<pubDate>Sat, 10 Apr 2010 20:48:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Writing]]></category>
		<category><![CDATA[Project Management]]></category>

		<guid isPermaLink="false">http://812studio.com/?p=159</guid>
		<description><![CDATA[It&#8217;s one thing to deliver a great product, it&#8217;s another to offer a great service. Wouldn&#8217;t it be nice if there was an application that helped you do both? And how sweet would it be if this app was free? Well, let me introduce you to Teambox. *The online collaboration software by Teambox has been [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s one thing to deliver a great product, it&#8217;s another to offer a great service. Wouldn&#8217;t it be nice if there was an application that helped you do both? And how sweet would it be if this app was free? Well, let me introduce you to Teambox.<span id="more-159"></span></p>
<p>*<i>The <a href="http://teambox.com">online collaboration software by Teambox</a> has been updated considerably since the writing of this article. You can now find a more current <a href="http://guide.teambox.com">guide</a> on the Teambox site</i>.</p>
<p>I&#8217;ve been using Teambox for the past three months, and it has enabled me to perfectly manage all of my projects. Whether you freelance or not, we all know that completing design work takes tons of effort. Well, guess what? Getting this work done often includes the following crucial responsibilities as well:</p>
<ul>
<li>Interfacing with multiple contacts</li>
<li>Sending and receiving e-mails</li>
<li>Sending logo files and design comps</li>
<li> Waiting on and managing multiple content documents</li>
<li>Drafting and redrafting contracts</li>
<li>Indicating work hours</li>
<li>Tracking client requests</li>
<li>Remembering and assigning tasks</li>
</ul>
<p>I&#8217;m not going to say that it is always a nightmare to maintain the communication necessary to complete a project. However, with all of these moving parts, a breakdown of the above responsibilities could create tension between you and your client (especially if you are freelancing). So why not introduce a solution that helps you and your client communicate effectively through the duration of a project?</p>
<h6>Sign up</h6>
<p>To get started, go to <a href="http://teambox.com">Teambox.com</a> and create an account.</p>
<p><a href="http://812studio.com/wp-content/uploads/2010/04/createAccount.jpg"><img class="alignnone size-large wp-image-172" title="createAccount" src="http://812studio.com/wp-content/uploads/2010/04/createAccount-700x561.jpg" alt="" width="700" height="561" /></a></p>
<h6>Create project</h6>
<p>Give your project a name, and then create a URL to your project. See below for an example. Check &#8220;Enable time tracking&#8221; if you are interested in recording the time it takes to complete the project (you also can set this up later).</p>
<p><a href="http://812studio.com/wp-content/uploads/2010/04/createProject.jpg"><img class="alignnone size-large wp-image-173" title="Create Project" src="http://812studio.com/wp-content/uploads/2010/04/createProject-700x355.jpg" alt="" width="700" height="355" /></a></p>
<h6>Invite others to join</h6>
<p>Ask all parties involved in the project to create an account at Teambox. As accounts are created you can easily invite each person via e-mail address or Teambox username. Click on the &#8220;People&#8221; button to send invites.</p>
<p><a href="http://812studio.com/wp-content/uploads/2010/04/invitePeople.jpg"><img class="alignnone size-large wp-image-174" title="Invite People" src="http://812studio.com/wp-content/uploads/2010/04/invitePeople-700x268.jpg" alt="" width="700" height="268" /></a></p>
<h6>Pages</h6>
<p>Click on &#8220;Pages.&#8221; This section can be used to create a page containing anything you want. I tend to use it for storing general information and organizing documents. For example, I usually create a Contact page so there&#8217;s no confusion about how to reach somebody.</p>
<p>I also prefer to have a Contract page from which everyone can access the contract in all of its versions/revisions. If there is ever a dispute about services or if service need to be expanded, I have found it nice to have this available for the client to see.</p>
<p>Pages are great for managing multiple documents, too. Let&#8217;s say you have to manage a dozen bios. Create a Bio page, upload the documents, create dividers, and drag them up and down to arrange them logically. You can apply this same concept when managing Web content sent as documents, organizing photos and managing design comps or logos. Pages makes content easy to find, and it eliminates having to resend the same logo file to your client every time the client misplaces it. Instead, your client can get it from Teambox.</p>

<a href='http://812studio.com/using-teambox-for-project-management/contacts/' title='Page - contacts'><img width="150" height="150" src="http://812studio.com/wp-content/uploads/2010/04/contacts-150x150.png" class="attachment-thumbnail" alt="Page - contacts" title="Page - contacts" /></a>
<a href='http://812studio.com/using-teambox-for-project-management/contract/' title='Page - contract'><img width="150" height="150" src="http://812studio.com/wp-content/uploads/2010/04/contract-150x150.png" class="attachment-thumbnail" alt="Page - contract" title="Page - contract" /></a>
<a href='http://812studio.com/using-teambox-for-project-management/bios/' title='Page - bio'><img width="150" height="150" src="http://812studio.com/wp-content/uploads/2010/04/bios-150x150.png" class="attachment-thumbnail" alt="Page - bio" title="Page - bio" /></a>
<a href='http://812studio.com/using-teambox-for-project-management/documents/' title='Page - documents'><img width="150" height="150" src="http://812studio.com/wp-content/uploads/2010/04/documents-150x150.png" class="attachment-thumbnail" alt="Page - documents" title="Page - documents" /></a>

<h6>Create Task Lists to group tasks</h6>
<p>Every project requires the execution of crucial tasks; the &#8220;Task Lists&#8221; will help you identify them. Click on Task Lists at the top and then on the gray button to the right that reads &#8220;+ New Task List.&#8221; A Task List groups and organizes specific tasks for your project. Start by creating different headings within the Task List — for example Design, Budget, etc. This feature helps keep your tasks organized.</p>
<p><a href="http://812studio.com/wp-content/uploads/2010/04/taskList2.png"><img class="alignnone size-large wp-image-301" title="Using Task Lists" src="http://812studio.com/wp-content/uploads/2010/04/taskList2-700x378.png" alt="" width="700" height="378" /></a></p>
<h6>Add Tasks to your Task Lists</h6>
<p>Now add tasks under your Task List heading(s) by clicking the &#8220;+ Add Task&#8221; button.</p>
<p><a href="http://812studio.com/wp-content/uploads/2010/04/addTask2.png"><img class="alignnone size-large wp-image-304" title="Adding Tasks" src="http://812studio.com/wp-content/uploads/2010/04/addTask2-700x378.png" alt="" width="700" height="378" /></a></p>
<p>Give your &#8220;New Task&#8221; a name and indicate what needs to be done. You can assign tasks to  Teamboxers and  add due dates.</p>
<p><a href="http://812studio.com/wp-content/uploads/2010/04/aTask.png"><img class="alignnone size-large wp-image-307" title="Entering a Task" src="http://812studio.com/wp-content/uploads/2010/04/aTask-700x561.png" alt="" width="700" height="561" /></a></p>
<p>All tasks are editable, and any Teamboxer can respond to them. Tasks that aren&#8217;t completed by their due date turn red, and finished tasks are marked by a strikethrough.</p>
<p><a href="http://812studio.com/wp-content/uploads/2010/04/tasks1.png"><img class="alignnone size-large wp-image-305" title="Viewing Tasks" src="http://812studio.com/wp-content/uploads/2010/04/tasks1-700x378.png" alt="" width="700" height="378" /></a></p>
<h6>Task Updates</h6>
<p>As you work towards completing your tasks you can leave status updates. Click on the task that you are working on to check or update its status. Here you can define what needs to be done by commenting. This task can be assigned or reassigned to somebody. You can also add an attachment and indicate working hours.  And if the task is done, click resolved to close this task. All resolved tasks are archived and easy to reopen if needed.</p>
<p><a href="http://812studio.com/wp-content/uploads/2010/04/taskStatus.png"><img class="alignnone size-large wp-image-308" title="Task Status" src="http://812studio.com/wp-content/uploads/2010/04/taskStatus-700x378.png" alt="" width="700" height="378" /></a></p>
<h6>Reordering Tasks and Task Lists</h6>
<p>You also can reorder your tasks and task lists. By hovering just to the left of your tasks you will see the cursor change to a hand icon. Once that happens, drag and drop to reorder your tasks. If you want to reorder your task list headings, you will need to click at the top of the task lists where it says, &#8220;Reorder Task Lists&#8221; in blue. This will reload the page and allow you to drag and drop the task list headings to fit your needs. Then click &#8220;Done reorder&#8221; and the updates will be made.</p>
<p><a href="http://812studio.com/wp-content/uploads/2010/04/reorder.png"><img class="alignnone size-large wp-image-306" title="Reorder Task Lists" src="http://812studio.com/wp-content/uploads/2010/04/reorder-700x378.png" alt="" width="700" height="378" /></a></p>
<p>Alphabetizing your task lists and tasks greatly helps create logical and  speedy navigation. A well organized project is easier to follow and  complete.</p>
<h6>Time-Tracking</h6>
<p>When teammates log their work time in the tasks section, everyone can easily monitor hours spent on a project by clicking on the &#8220;Time Tracking&#8221; button. You have filter options on the right to easily check a teammate&#8217;s hours, or you can filter the results to check hours logged for a particular task.</p>
<p><a href="http://812studio.com/wp-content/uploads/2010/04/Time.png"><img class="alignnone size-large wp-image-185" title="Time Tracking" src="http://812studio.com/wp-content/uploads/2010/04/Time-700x397.png" alt="" width="700" height="397" /></a></p>
<h6>Conversations</h6>
<p>Conversations is another great feature of Teambox that lets teammates post questions or ideas that are outside the scope of the task lists. For example, you can start a conversation to ask the team for suggestions on how to improve business. You also could use the Conversations tool to initiate a time to schedule a meeting. Conversations is a good place to post a link that you want to share. This is also a smart place for giving positive feedback to your team. Tell your team that the client loves the comps, and to keep up the good work.</p>
<p>The other cool benefit of Conversations is that it will send your team members e-mail updates so they can easily follow the conversation string.</p>
<p><a href="http://812studio.com/wp-content/uploads/2010/04/Conversations.png"><img class="alignnone size-large wp-image-183" title="Conversations" src="http://812studio.com/wp-content/uploads/2010/04/Conversations-700x486.png" alt="" width="700" height="486" /></a></p>
<h6>Files</h6>
<p>The Files section conveniently gives you access to all the files that  have been uploaded across sections. This makes it easy for you and your  client to find and retrieve files.</p>
<p><a href="http://812studio.com/wp-content/uploads/2010/04/files.png"><img class="alignnone size-large wp-image-182" title="Files" src="http://812studio.com/wp-content/uploads/2010/04/files-700x416.png" alt="" width="700" height="416" /></a></p>
<h6>Overview</h6>
<p>The Overview page displays all the updates you and your teammates make to a project. You can always check the Overview to see what is happening. You can subscribe to the Project RSS feed for project updates, and you can download a calendar indicating all of your projects&#8217; start and end dates, too.</p>
<p><a href="http://812studio.com/wp-content/uploads/2010/04/Overview.png"><img class="alignnone size-large wp-image-184" title="Overview" src="http://812studio.com/wp-content/uploads/2010/04/Overview-700x473.png" alt="" width="700" height="473" /></a></p>
<p>The &#8220;Update your status&#8230;&#8221; input box can be used to leave quick messages or to convert a status update into a task. Hovering over the date of any status entry will reveal these options: Convert to task, edit comment and delete.</p>
<p><a href="http://812studio.com/wp-content/uploads/2010/04/convert.png"><img class="alignnone size-large wp-image-309" title="Convert a status update to a Task" src="http://812studio.com/wp-content/uploads/2010/04/convert-700x378.png" alt="" width="700" height="378" /></a></p>
<h6>Tricks of the Trade</h6>
<p>Typing the &#8220;@&#8221; symbol in any input box will prompt a drop-down menu containing a list of the project&#8217;s members. By selecting one, several or all members from this drop-down your message will then be e-mailed to the selected member(s). This helps keep your team informed even when fellow Teamboxers aren&#8217;t logged into Teambox. Try using this feature with task updates, Conversations or from the Overview page.</p>
<p><a href="http://812studio.com/wp-content/uploads/2010/04/at.png"><img class="alignnone size-large wp-image-296" title="Using @ to send e-mail" src="http://812studio.com/wp-content/uploads/2010/04/at-700x378.png" alt="" width="700" height="378" /></a></p>
<p>Another time-saving feature lives inside the &#8220;All Projects&#8221; tab. If you hover over All Projects, a drop-down will appear that lists all open projects. When you then hover over one of the project names, you will see three icons that are shortcuts to Conversations, Task Lists and Pages. This is surely the fastest way to zip back and forth between projects.</p>
<p><a href="http://812studio.com/wp-content/uploads/2010/04/allProjects1.png"><img class="alignnone size-large wp-image-298" title="Using the All Projects tab for quick navigation" src="http://812studio.com/wp-content/uploads/2010/04/allProjects1-700x378.png" alt="" width="700" height="378" /></a></p>
<h6>Conclusion</h6>
<p>Project management can be a massive responsibility. Whether you are collaborating with a team, working one-on-one with a client or working on a personal project, Teambox will help manage your team and your projects successfully to completion.</p>
<p>Aside from the benefits listed above, it also promotes communication, transparency and accountability: Everyone knows his or her  role. Everyone can see how long a task is taking to complete. Everyone has the same access to a project&#8217;s information. No one is left in the dark.</p>
<p>Bringing an end to communication and workflow issues has made my clients grow to love Teambox. So check out this<a href="http://teambox.com">online collaboration software by Teambox</a>, and contact the company directly if you have unique requirements for your project. Teambox can be set up on your own servers. You also can keep up with your project via your iPhone.</p>
<p>Best of luck!</p>
<img src="http://feeds.feedburner.com/~r/812studio/~4/60fhXHuqLp8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://812studio.com/using-teambox-for-project-management/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://812studio.com/using-teambox-for-project-management/</feedburner:origLink></item>
		<item>
		<title>Honesty is the best policy</title>
		<link>http://feedproxy.google.com/~r/812studio/~3/zE3kGnZwoQE/</link>
		<comments>http://812studio.com/honesty-is-the-best-policy/#comments</comments>
		<pubDate>Fri, 09 Apr 2010 16:09:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Writing]]></category>
		<category><![CDATA[Client Interaction]]></category>

		<guid isPermaLink="false">http://812studio.com/?p=133</guid>
		<description><![CDATA[Honesty is always the best policy in the design — or any other — business. If you and your client are at odds with any material before, after or during the design process, it needs to be addressed. Disagreeing is not bad Sometimes disagreement contributes to better results. I prefer to commit myself to quality [...]]]></description>
			<content:encoded><![CDATA[<p>Honesty is always the best policy in the design — or any other — business. If you and your client are at odds with any material before, after or during the design process, it needs to be addressed.<span id="more-133"></span></p>
<h6>Disagreeing is not bad</h6>
<p>Sometimes disagreement contributes to better results. I prefer to commit myself to quality work rather than conflict avoidance. In business, avoiding conflict just to remain well-liked can inadvertently sabotage the efficacy of a project. There is too much time, money and creative energy at stake to sweep issues under the rug.</p>
<h6>Fight for what&#8217;s right</h6>
<p><strong>Lesson 1:</strong> During the summer of 2009, I was approached by the founders of a user-research company who wanted to update images on their website so their site would look cooler. Now, I could have done as they asked and made some quick, easy money. But I also knew that simply updating the images wasn&#8217;t going to make their site &#8220;look cooler.&#8221; So I informed these potential clients that they needed help with more than the images because EVERYTHING about their site was poorly executed.</p>
<p>Disinterested in my unsolicited advice, the clients pressed on and asked how much it would cost to get just the images updated. That&#8217;s when I respectfully told them to seek help elsewhere because my specialty lies in fixing a website&#8217;s problems, not covering them up.</p>
<p>And wouldn&#8217;t you know it, the founders took this to thought and decided that their business was at a crucial point in its development and warranted rebranding. So guess who they came to for advice? Me.</p>
<p>Turns out, this bit of honesty (no matter how risky or uncomfortable) ended up being the catalyst needed to take the clients&#8217; business to the next level. And in the end, both sides won: Their business image evolved, and I landed a bigger project.</p>
<p><strong>Lesson 2:</strong> In another case of fighting for what&#8217;s right, I dealt with a client who consistently rejected the T-shirt designs I was producing for his company. Each time I presented a design I thought was great, he turned it down. After each rejection we would get together to discuss new ideas. I soon found myself with a project that was taking twice as long as I had planned. Then, after one of our meetings, the client suggested I use a previously rejected image in a different way. That&#8217;s when things came together.</p>
<p>In this instance, allowing the client to disagree with me and giving the project time to resolve itself was critical. Yes, this took longer than I wanted, but it&#8217;s what the project needed. In the end, all the T-shirts sold, we all got paid, and everybody was happy.</p>
<h6>It&#8217;s worth the struggle</h6>
<p>Being honest will more often than not lead to a successful project. Don&#8217;t be afraid to disagree with your client and let your client disagree with you. Sometimes, a project will present unique challenges that can only be solved by way of a little push and pull.</p>
<img src="http://feeds.feedburner.com/~r/812studio/~4/zE3kGnZwoQE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://812studio.com/honesty-is-the-best-policy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://812studio.com/honesty-is-the-best-policy/</feedburner:origLink></item>
	</channel>
</rss><!-- Served from: 812studio.com @ 2013-02-04 18:07:10 by W3 Total Cache -->
