<?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>Tyler Dawson</title>
	
	<link>http://www.tyler-dawson.com/blog</link>
	<description>Web Design Thoughts from Tyler Dawson</description>
	<lastBuildDate>Tue, 06 Jul 2010 19:57:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/TylerDawson" /><feedburner:info uri="tylerdawson" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Imageless CSS3 Warp Shadows</title>
		<link>http://feedproxy.google.com/~r/TylerDawson/~3/9TqkjLo-Ufk/</link>
		<comments>http://www.tyler-dawson.com/blog/web-design/imageless-css3-warp-shadows/#comments</comments>
		<pubDate>Tue, 06 Jul 2010 19:54:19 +0000</pubDate>
		<dc:creator>Tyler Dawson</dc:creator>
				<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.tyler-dawson.com/blog/?p=20</guid>
		<description><![CDATA[<p class="shadow_box" style="margin-bottom:20px;">I do not believe the future of CSS is to replace all traces of images from websites. That being said, here's a CSS3 technique that takes us a step closer to replacing all traces of images from websites.   Using this technique designers can achieve a variety of drop shadows to add depth and nuance to a web design. This technique should work on all browsers that support box-shadows and rounded corners. Other browsers won't show the shadow.<span></span></p>]]></description>
			<content:encoded><![CDATA[<p>I do not believe the future of CSS is to replace all traces of images from websites. That being said, here&#8217;s a CSS3 technique that takes us a step closer to replacing all traces of images from websites.  The box-shadow property is already great way to replace common shadow images but is restricted to relatively simple shapes.  Using this technique designers can achieve a variety of drop shadows to add depth and nuance to a web design.</p>
<p>This technique should work on all browsers that support box-shadows and rounded corners. Other browsers won&#8217;t show the shadow. As with all CSS3 techniques, the effect is best used for enhancing an already solid design. If a fancy shadow is essential to your design, an image may still be your best option.</p>
<h3>What Does it Look Like?</h3>
<p class="shadow_box">Here&#8217;s the basic warp shadow applied directly to a paragraph tag.<span></span></p>
<p class="shadow_box" style="width:200px;">Here it is again on a paragraph tag now with a set width. As you can see, the shadow scales so it can be as narrow&#8230;.<span></span></p>
<p class="shadow_box" style="width:100%">&#8230;or as wide as you want.<span></span></p>
<div class="background">
<p class="shadow_box rounded">The technique can work on just on any solid color background, but may not work against gradients, patterns, or images depending on their complexity.<span></span></p>
</div>
<p>A few more examples can be found <a href="http://tyler-dawson.com/shadow-demo/">here</a>.</p>
<h3>How Does it Work?</h3>
<p>The mark up looks like: <br/><em>&lt;p class=&#8221;shadow_box&#8221;&gt;Text in paragraph (or other element)&lt;span&gt;&lt;/span&gt;&lt;/p&gt;</em></p>
<p>As far as styling goes, the <a href="http://tyler-dawson.com/shadow-demo/shadow.css">stylesheet</a> is pretty self explanatory if you want to jump right in. Here&#8217;s a brief explanation of the essentials:</p>
<p><strong>.shadow_box</strong> &#8211; we apply a regular css3 box shadow (in all it&#8217;s browser variations) and scoot it down 10px with a glow radius of 5px.  I float it left for this site and demos, but can be worked around if you don&#8217;t want it floated. Next we apply position:relative so we can position span absolutely based on it&#8217;s parent (the element with the .shadow_box class).</p>
<p><strong>.shadow_box span</strong> &#8211; We give the span the full width of it&#8217;s parent container and a height of 15px. We then set it to position:absolute and set it to bottom:-30px.  Relying on arithmetic for a second, it means the top of the span is 15px below the div, exactly where the other shadow ends. We then give the span border-radius of something along the lines of 50% / 7px (or pick a reasonable pixel for browsers that can&#8217;t define border-radius by %) to shape the span like an ellipse. The last step is to add a border shadow of the color of the background, and scoot it up so it overlaps the other shadow. The net effect is it cuts away the middle portion gradually in an arc shape.</p>
<h3>Some things to keep in mind:</h3>
<ul>
<li>Yes, it does require the inclusion of a meaningless span. Purists may balk.  Purists should add the span at run-time with javascript and proceed to take deep breaths. Or they can revert to images.</li>
<li>Notice there is no background-color of the span. This minimizes the likelihood of anything else being accidentally overlapped or hidden and eases the degradation for older browsers.</li>
<li>The heights and shadow distances can be changed, but they should be consistent. Remember that you want the beginning of one shadow to overlap the other shadow, but you don&#8217;t want the span&#8217;s shadow to cover anything else.</li>
<li>There are many possible variations. The purpose of this isn&#8217;t merely to make there be two possible shadow shapes with css3 rather than one.  I encourage you to expirement and make it your own.  It should be trivial to isolate one corner for a shadow or to move this shadow to the top instead.</li>
</ul>
<h3>So, What do you think?</h3>
<p>Is this all just a bunch of css3 hocus pocus that has no place in the real world of design? Can you think (or better yet, demonstrate) any better applications of this technique? Would you consider using this technique for a client&#8217;s site? Maybe it&#8217;s more useful as a rapid prototyping technique?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tyler-dawson.com/blog/web-design/imageless-css3-warp-shadows/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://www.tyler-dawson.com/blog/web-design/imageless-css3-warp-shadows/</feedburner:origLink></item>
		<item>
		<title>What to do With Unused Designs?</title>
		<link>http://feedproxy.google.com/~r/TylerDawson/~3/dkWpEAf3qfc/</link>
		<comments>http://www.tyler-dawson.com/blog/web-design/what-to-do-with-unused-designs/#comments</comments>
		<pubDate>Tue, 08 Jun 2010 15:01:42 +0000</pubDate>
		<dc:creator>Tyler Dawson</dc:creator>
				<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.tyler-dawson.com/blog/?p=6</guid>
		<description><![CDATA[<img src="http://www.tyler-dawson.com/blog/wp-content/uploads/2010/06/logo_to_money.gif" alt="Can logos be turned to cash?" title="Unused Designs" width="700" height="107" class="size-full wp-image-16" />
The other day I was browsing through some folders from past designs and realized how many unused designs I had.  Many of these were half-baked concepts, but some of them were nearly full websites.  I imagine <strong>most freelance web designers have unused designs</strong>. Maybe a client backed out on you. Perhaps there was nothing wrong with the design itself, but it just wasn't right for the situation.  So <strong>what should be done with these designs?</strong>]]></description>
			<content:encoded><![CDATA[<p>The other day I was browsing through some folders from past designs and realized how many unused designs I had.  Many of these were half-baked concepts, but some of them were nearly full websites.  I imagine <strong>most freelance web designers have unused designs</strong>. Maybe a client backed out on you. Perhaps there was nothing wrong with the design itself, but it just wasn&#8217;t right for the situation.  So <strong>what should be done with these designs?</strong> Here are a few ideas to consider:</p>
<h3>Try to Monetize</h3>
<div id="attachment_16" class="wp-caption alignnone" style="width: 710px"><a href="http://www.tyler-dawson.com/blog/wp-content/uploads/2010/06/logo_to_money.gif"><img src="http://www.tyler-dawson.com/blog/wp-content/uploads/2010/06/logo_to_money.gif" alt="Can logos be turned to cash?" title="Unused Designs" width="700" height="107" class="size-full wp-image-16" /></a><p class="wp-caption-text">The appeal of earning money for already completed work is undeniable.</p></div>
<p>This is (for obvious reasons) a popular choice for designers who are left with excess designs and some time to spare.  The prospect of earning money for work that&#8217;s already been completed is quite enticing. There are numerous options for those who wish to make some extra money from unused logo or web designs.</p>
<ul>
<li><strong>Sell Designs in a Marketplace </strong>- The most obvious solution is to touch-up your designs, remove existing branding, and sell them in a marketplace. The Envato marketplaces such as <a href="http://themeforest.net/">Theme Forest</a> and <a href="http://graphicriver.net/">Graphic River</a> are popular examples.  Though there is great potential here, generally only the top sites make substantial money and most marketplaces take a significant commission.</li>
<li><strong>Find a New Buyer &#8211; </strong>Similar to marketplaces, websites like <a href="http://brandstack.com/">Brandstack</a> can connect you to people who would be interested in buying your design. They have the distinction that designs are sold only once and for a higher price than most marketplace sites.  Designers also tend to earn higher commissions from websites that can find you a new buyer.</li>
<li><strong>Sell Merchandise With Design</strong> &#8211; Websites like <a href="http://www.zazzle.com">Zazzle</a> and <a href="http://www.spreadshirt.com">Spreadshirt</a> allow you to easily sell shirts, clothing, and other merchandise with your design.  They allow you to set up your own store page and they take care of the printing and shipping.  Obviously this option is less feasible for leftover web designs (though, you never know &#8211; shirts printed with awesome web designs may be the next big thing) than it is for illustrations.</li>
</ul>
<p>Those are just some ideas for getting started; Mashable has a much more <a href="http://mashable.com/2009/02/28/sell-designs-online/">comprehensive list</a>.  </p>
<p>Despite the obvious positive potential, there are drawbacks to trying to sell your design.  First, most of these will require some <strong>extra time </strong>on your part to prepare to sell.  It&#8217;s also worth mentioning the obvious that <strong>you won&#8217;t make any money unless you sell</strong>.  This may mean additional time trying to market your work, responding to questions, etc. Even then, you may have a fantastic design but never sell if it doesn&#8217;t reach it&#8217;s niche. Please consider that if a client paid you to create multiple drafts, <strong>it may be against your contract (or ethics) to sell unused drafts.</strong></p>
<h3>Release To The Community</h3>
<p>Another good option may be to release your designs to the community. If you give away quality work, the reward may be <strong>recognition from the community</strong>.  Recognition can turn into inbound links and increased PageRank or simply more respect, both of which have their values.<br />
<div id="attachment_17" class="wp-caption alignnone" style="width: 710px"><a href="http://www.tyler-dawson.com/blog/wp-content/uploads/2010/06/minimalportion.jpg"><img src="http://www.tyler-dawson.com/blog/wp-content/uploads/2010/06/minimalportion.jpg" alt="Screenshot of a portion of theme" title="Theme-in-progress portion" width="700" height="84" class="size-full wp-image-17" /></a><p class="wp-caption-text">Here's a portion of a design I considered for this site but ultimately decided against. I'm currently adapting it into a WordPress theme.</p></div> </p>
<p>Releasing a quality web template or, better yet, a WordPress theme for free is a good way to drum up publicity while potentially adding to your portfolio. Additionally, it is common practice to place a link back to your site on themes. Again, the reward is <strong>more love from visitors and search engines.</strong></p>
<p>The problem is that while many freelance web designers have extra designs in .psd format, most won&#8217;t have complete web pages or themes readily available. This may mean a significant time investment to make it worthwhile to the community.</p>
<h3>Save For Inspiration</h3>
<p>The quickest and surest solution is to file designs away for future inspiration. When designers get stuck, we tend to go to the web for inspirational galleries. Why not have an additional source of inspiration on your own hard drive? <strong>Create a folder specifically for your best unused designs</strong>. These can serve as a springboard for new ideas or even used as a framework for future designs.</p>
<h3>Other Ideas</h3>
<p>These are just three ideas to consider for your unused logo or web designs. Do you have experience with any of these methods? What do you do with your unused designs?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tyler-dawson.com/blog/web-design/what-to-do-with-unused-designs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.tyler-dawson.com/blog/web-design/what-to-do-with-unused-designs/</feedburner:origLink></item>
		<item>
		<title>Content is King, Design is Queen</title>
		<link>http://feedproxy.google.com/~r/TylerDawson/~3/8JbN1CXXlsg/</link>
		<comments>http://www.tyler-dawson.com/blog/web-design/content-is-king-design-is-queen/#comments</comments>
		<pubDate>Fri, 04 Jun 2010 21:08:41 +0000</pubDate>
		<dc:creator>Tyler Dawson</dc:creator>
				<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.tyler-dawson.com/blog/?p=12</guid>
		<description><![CDATA[<img src="http://www.tyler-dawson.com/blog/wp-content/uploads/2010/06/web2_0property.jpg" alt="Many stages of web2_0 property in CSS3" title="web2_0 Property in CSS3" width="700" height="150" class="size-full wp-image-14" />
The phrase "content is king" has just surpassed "IE6 is the devil" to become the preferred mantra of web designers. It's easier than ever to add hideous gradients, crazy text effects, and obscenely-rounded-rectangles to your website. Those fearing a return to web 2.0 styles should at least be grateful there isn't a "glossiness" or "beta" property (yet). 

Design remains an essential part for any website, which is why I suggest the following amendment to everyone's favorite phrase: content is King, design is Queen. Now lets take the metaphor to absolutely ridiculously lengths.]]></description>
			<content:encoded><![CDATA[<p>As CSS3 tutorials demonstrating cool-but-useless techniques have grown in popularity these past few months, concerned designers across the world are joining in a swelling chorus: &#8220;Content is King!&#8221;  In fact, the phrase has just surpassed &#8220;IE6 is the devil&#8221; to become the preferred mantra of web designers. It&#8217;s easier than ever to add hideous gradients, crazy text effects, and obscenely-rounded-rectangles to your website. Those fearing a return to web 2.0 styles should at least be grateful there isn&#8217;t a &#8220;glossiness&#8221; or &#8220;beta&#8221; property (yet).</p>
<div id="attachment_14" class="wp-caption alignnone" style="width: 710px"><a href="http://www.tyler-dawson.com/blog/wp-content/uploads/2010/06/web2_0property.jpg"><img src="http://www.tyler-dawson.com/blog/wp-content/uploads/2010/06/web2_0property.jpg" alt="Many stages of web2_0 property in CSS3" title="web2_0 Property in CSS3" width="700" height="150" class="size-full wp-image-14" /></a><p class="wp-caption-text">The new web2_0 property in CSS3 can transform entire drab websites into web 2.0 masterpieces in seconds! Actually, this could be the feature to make designers reconsider Internet Explorer.</p></div>
<p>Quality content should be the focus of any website. It is necessary for search engines but more especially end users. A solid design isn&#8217;t complete without content of equal quality. However, design remains an essential part for any website, which is why I suggest the following amendment to everyone&#8217;s favorite phrase: <strong>content is King, design is Queen.</strong> Now lets take the metaphor to absolutely ridiculously lengths.</p>
<h3>The Perfect Royal Marriage</h3>
<p>It&#8217;s always great to have good content or design grace your website. When they&#8217;re married, however, they become much more powerful than the sum of their parts.  </p>
<p><strong>Design</strong>, a loving queen and wife, does what she can for her husband.  In the perfect web kingdom she takes care of many things that most of the villagers (visitors) never even think about, from the infrastructure to general beautifying. The kingdom (site) looks great, certainly, but there&#8217;s a purpose behind her decorating.  The roads (navigation) are orderly and well-marked.  Nobody ever has to stop to think twice about which road to take to arrive at their destination. She even uses a <a href="http://www.960.gs">grid system</a> for the kingdom&#8217;s infrastructure! Design knows that visitors from afar will want to speak to her husband and facilitates this process. On occasion a visitor will specifically thank her for her work, but she is satisfied knowing that foreigners have an easy and safe time in her kingdom.</p>
<p><strong>Content</strong>, for his part, takes care of most of the grunt work.  He is well-groomed and dressed, but not extravagant.  When visitors come, he does his best to keep them engaged and informed. He is formal and professional. <strong>Sometimes, however, he is forced to shout at them to get their attention.</strong> <em>Other times, a whisper is just as effective.</em> He is grateful for everything his wife does. He has been known to etch her name and address in the Southeast (bottom right) corner of the kingdom, but that&#8217;s just weird.</p>
<p>When they&#8217;re both happy, so are the visitors. They can easily reach their King and the kingdom&#8217;s appearance is oddly comforting.</p>
<h3>Design Separated From Content</h3>
<p><br/><div id="attachment_15" class="wp-caption alignnone" style="width: 304px"><a href="http://www.tyler-dawson.com/blog/wp-content/uploads/2010/06/contentdesigndispute.jpg"><img src="http://www.tyler-dawson.com/blog/wp-content/uploads/2010/06/contentdesigndispute.jpg" alt="Design not happy with content&#039;s Crowdsourcing" title="Content and Design Argue" width="294" height="120" class="size-full wp-image-15" /></a><p class="wp-caption-text">Where does this metaphor put services like 99designs?</p></div></p>
<p>Unfortunately, however, the marriage weakens.  Maybe the king has been flirting with a new Design, instead of just realigning with his current Design. Maybe the queen puts up signs that have &#8220;404&#8243; scrawled on them all around the kingdom, turning foreigners away.  Whatever the cause, sometimes the relationship falters.  <strong>Design without Content finds herself without purpose, tries to make everything look beautiful, but ends up having to resort to placing &#8220;Kingdom in Construction&#8221; signs about the entrance.</strong> She is distressed to find that no foreigners care how beautiful her signs are without having Content around.</p>
<h3>Content Without Design</h3>
<p>Content sometimes tries to find a Design that is not so high-maintenance (expensive), and finds himself disappointed at every turn. <strong>Without a quality Design, foreigners struggle to even find Content.</strong>  One Design even put a moat around the kingdom that makes it impossible to enter unless you have the latest version of a rowboat, though they can be rented from the far away kingdom of Adobe (take three guesses at <em>that</em> metaphor&#8230;). Other Designs create crooked streets and make it impossible to find Content.  And no amount of &#8220;glossiness&#8221; or &#8220;beta&#8221; can fix that.</p>
<h3>Family Reunion</h3>
<p>Your turn to stretch it even further! Who else is in the family tree? What else fits into the metaphor?  Is IE6 the jaded uncle who tries to destroy the kingdom (or is it really the devil)? Is Twitter the carrier pigeon restricted to messages that weigh less than 140 characters?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tyler-dawson.com/blog/web-design/content-is-king-design-is-queen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.tyler-dawson.com/blog/web-design/content-is-king-design-is-queen/</feedburner:origLink></item>
		<item>
		<title>Random thoughts on my redesign, web design portfolios, and blogging</title>
		<link>http://feedproxy.google.com/~r/TylerDawson/~3/iqTowlQHv9s/</link>
		<comments>http://www.tyler-dawson.com/blog/web-design/random-thoughts-on-my-redesign-web-design-portfolios-and-blogging/#comments</comments>
		<pubDate>Wed, 02 Jun 2010 19:37:22 +0000</pubDate>
		<dc:creator>Tyler Dawson</dc:creator>
				<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.tyler-dawson.com/blog/?p=7</guid>
		<description><![CDATA[<img class="size-full wp-image-9" title="Tyler-Dawson.com Redesign" src="http://www.tyler-dawson.com/blog/wp-content/uploads/2010/05/tylerdawsonredesign.jpg" alt="Before and After Screenshot" width="700" height="202" />
I recently redesigned my portfolio website and added this blog. In this first post, I'll walk through a few whys and whats of my changes. I discuss my experience of using a single-page vs. a multi-page web design portfolio. I'll add more posts to my blog often - a nice and ambiguous term - with posts of marginal usefulness.  (If you read it in Internet Explorer 6 they'll be double-marginally useful!)]]></description>
			<content:encoded><![CDATA[<p>I recently redesigned my portfolio website and added this blog. In the first post, I&#8217;ll walk through a few whys and whats of my changes. I&#8217;ll add more posts to my blog often &#8211; a nice and ambiguous term &#8211; with posts of marginal usefulness.  (If you read it in Internet Explorer 6 they&#8217;ll be double-marginally useful!)</p>
<h3>More Content</h3>
<p>My previous portfolio site had the virtue of simplicity. It had only one page and said only what it needed to.  Unfortunately, the simplicity in structure didn&#8217;t carry into quick loading times or easy-to-read content.  In effect, it was a stupid simplicity.  My goal with this redesign was to improve upon the positive aspects of the previous design while adding more (and better) content and features. <strong>By making the design complement &#8211; and not compete with &#8211; the content, I was aiming for a much smarter simplicity.</strong><br />
<div id="attachment_9" class="wp-caption alignnone" style="width: 710px"><img class="size-full wp-image-9" title="Tyler-Dawson.com Redesign" src="http://www.tyler-dawson.com/blog/wp-content/uploads/2010/05/tylerdawsonredesign.jpg" alt="Before and After Screenshot" width="700" height="202" /><p class="wp-caption-text">A cleaner, easier-to-read design with more emphasis on content.</p></div></p>
<p>This iteration includes much more content. Spreading it across multiple pages helps make the information easier to find and keeps each page less cluttered.  I added an &#8220;about&#8221; page, more information about my services, and this fancy WordPress-powered blog. Switching to a multi-page portfolio will make it easier for me to add and manage content in the future without having to worry about compromising the delicate balance of a single page portfolio.  The ability to add more content without jeopardizing ease of access should also increase search engine optimization. Furthermore, I wanted to incorporate a blog with my redesign, and implementing a blog on a single page portfolio can detract from the main focus on previous work.</p>
<h3>A Fresh Coat of Paint</h3>
<p>In order to achieve the aforementioned goals of better content, I ultimately decided I needed to redesign completely. Although I kept a similar color palette (even reusing the icon images and the brown diamond background), I re-evaluated everything. </p>
<p>Ultimately, the primary goal of my portfolio site is to generate leads. This made me realize the importance of showcasing my previous work.  Rather than trying to be too &#8220;artsy&#8221; by displaying obscure thumbnails of my work, I opted for a single screenshot of each design. I want potential clients to be able to take in my work instantly without jumping any hurdles. I have found that <strong>when you make a visitor jump hurdles, he or she will trip, fall, and run away crying to your competitor&#8217;s website.</strong></p>
<p>Here are some specific design changes:</p>
<ul>
<li><strong>CSS Sprite Navigation</strong> &#8211; Decreases amount of server requests and also ensures that there is no delay for the hover images to load. On my end it makes them easier to edit.</li>
<li><strong>More Careful Attention to Color</strong> &#8211; I kept virtually the same color palette as before but used them more sparingly to increase the impact of each color.</li>
<li><strong>CSS3 Enhancements</strong> &#8211; If you&#8217;re using a compatible browser, you&#8217;ll notice I sprinkled in some css3 to my web design. In the title of the article I used the border-radius property to round off the edges, a subtle text-shadow to make the text pop a little more, and rgba to make the blue border partially transparent.  None of these make or break an entire design, but I find that sometimes even the <a href="http://www.tutorial9.net/photoshop/5-pixel-popping-techniques/">smallest details can have a large impact</a>.</li>
</ul>
<div id="attachment_10" class="wp-caption alignnone" style="width: 709px"><img class="size-full wp-image-10" title="css3differences" src="http://www.tyler-dawson.com/blog/wp-content/uploads/2010/05/css3differences.jpg" alt="CSS3 Enhancements" width="699" height="186" /><p class="wp-caption-text">Subtle transparency, rounded corners, and text-shadow for compatible browsers.</p></div>
<p>Fun fact: I picked the color scheme for my website based on the colors of my swim suit. Design inspiration is everywhere!</p>
<h3>More Me</h3>
<p>The new About Me page and pictures of me on the site should hopefully give the site more of a personal feel.  I haven&#8217;t run any official tests, but I&#8217;m hoping the results will mirror the findings of <a href="http://carsonified.com/blog/design/human-photos-double-your-conversion-rate/">Think Vitamin</a>. At the very least, showing a little more of me gives the site a bit of a personal feel. Hopefully it <del>tricks you into believing</del> proves that there is a human behind this site.</p>
<h3>The Blog</h3>
<p>&#8220;Why are <em>you</em> blogging?&#8221; I hear you asking.  &#8220;You think you can add something to the design community? Surely you can&#8217;t be serious!&#8221; Well, maybe not, but how else can I set myself up for <em>Airplane!</em> references whenever I want?  Secondary reasons I decided to start a blog include:</p>
<ul>
<li><strong>Conversation</strong> &#8211; The web design community is full of insights and wisdom. If my posts have any value, it will probably be mostly due to conversation in the comments. For that reason, I have elected to format posts so that the articles melt into the comment section.</li>
<li><strong>Increase Personal Understanding</strong> &#8211; I have found writing can be cathartic for me. If I can&#8217;t decide my stance on an issue, I may write an entry and just see where I end up. Hopefully this blog will be enlightening for me and other web designers.</li>
<li><strong>Search Engine Optimization</strong> &#8211; Regularly updated content, increase in keywords, and maybe a few more inbound links are all ingredients for more respect from search engines and all served by a well-written blog.</li>
</ul>
<h3>The Future</h3>
<p>In my mind, a portfolio should be a work in progress if only for updating work samples. I don&#8217;t doubt that I will tweak a design element or two, but it is &#8220;completed&#8221; for now.  I will add to my blog as I feel the need or desire to write an article on a particular subject.</p>
<h3>Discuss!</h3>
<p>What do you think of my new portfolio design? If you have a portfolio, what causes you to redesign yours? Old one feels stale? Lack of desirable functionality? Nothing better to do? What are your thoughts on single- vs. multi-page page design portfolios? Why do you (or don&#8217;t you) blog?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tyler-dawson.com/blog/web-design/random-thoughts-on-my-redesign-web-design-portfolios-and-blogging/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.tyler-dawson.com/blog/web-design/random-thoughts-on-my-redesign-web-design-portfolios-and-blogging/</feedburner:origLink></item>
	</channel>
</rss>

