<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>ninethreestudio.com &#187; Tutorial</title>
	<atom:link href="http://ninethreestudio.com/category/tutorial/feed/" rel="self" type="application/rss+xml" />
	<link>http://ninethreestudio.com</link>
	<description>Designer by trade. Artist by passion.</description>
	<lastBuildDate>Mon, 11 Jul 2011 16:00:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>CSS3 Transitions: Slow fade glow effect</title>
		<link>http://ninethreestudio.com/2010/09/css3-transitions-slow-fade-glow-effect/</link>
		<comments>http://ninethreestudio.com/2010/09/css3-transitions-slow-fade-glow-effect/#comments</comments>
		<pubDate>Wed, 22 Sep 2010 06:25:04 +0000</pubDate>
		<dc:creator>Luke Hodsdon</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Cross-browser]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[css3]]></category>

		<guid isPermaLink="false">http://ninethreestudio.com/?p=1098</guid>
		<description><![CDATA[<div><img width="494" height="399" src="http://ninethreestudio.com/wp-content/uploads/2010/09/css3-glow-transitions-feature-image.jpg" class="attachment-large wp-post-image" alt="css3-glow-transitions-feature-image" title="css3-glow-transitions-feature-image" style="margin-bottom: 15px;" /></div><p>With the tides of internet coding changing, CSS3, HTML5 and jQuery are drastically changing the view of the web. With the &#160;[&#8230;]</p>]]></description>
			<content:encoded><![CDATA[<div><img width="494" height="399" src="http://ninethreestudio.com/wp-content/uploads/2010/09/css3-glow-transitions-feature-image.jpg" class="attachment-large wp-post-image" alt="css3-glow-transitions-feature-image" title="css3-glow-transitions-feature-image" style="margin-bottom: 15px;" /></div><p>With the tides of internet coding changing, CSS3, HTML5 and jQuery are drastically changing the view of the web. With the ability to produce CSS3 animations, flash integration is becoming less popular as speed and compatibility are what everyone is looking for.</p>
<p>As an ongoing project for this blog, I&#8217;ve been learning some of these new techniques and coding tricks. Below is a code snippet for one of the new CSS3 transition upgrades. What this code will do is cause a soft glow to transition in and out when a link is hovered. This code can be adapted in your .css file to apply to other items as well like DIVs or li items. If you noticed on this blog it&#8217;s been integrated into the container boxes for my blog content.</p>
<p>For supporting browsers, you should see a slow fade in &#038; out when hovered, if you do not see it then you should try to upgrade your browser&#8230; and if you&#8217;re still using IE, you should just slap yourself. Silly IE, the internet is for next gen browsers. Good luck with IE9.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
</pre></td><td class="code"><pre class="css" style="font-family:monospace;">a <span style="color: #00AA00;">&#123;</span>
	-webkit-transition<span style="color: #00AA00;">:</span> -webkit-box-shadow 1s ease-in<span style="color: #00AA00;">;</span>
	-moz-transition<span style="color: #00AA00;">:</span> -moz-box-shadow 1s ease-in<span style="color: #00AA00;">;</span>
	-o-transition<span style="color: #00AA00;">:</span> -o-box-shadow 1s ease-in<span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span><span style="color: #933;">20px</span> <span style="color: #933;">40px</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span><span style="color: #993333;">relative</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
&nbsp;
a<span style="color: #3333ff;">:hover </span><span style="color: #00AA00;">&#123;</span>
	-webkit-box-shadow<span style="color: #00AA00;">:</span><span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">10px</span> <span style="color: #cc00cc;">#444444</span><span style="color: #00AA00;">;</span> 
	-moz-box-shadow<span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">10px</span> <span style="color: #cc00cc;">#444444</span><span style="color: #00AA00;">;</span> 
	-o-box-shadow<span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">10px</span> <span style="color: #cc00cc;">#444444</span><span style="color: #00AA00;">;</span></pre></td></tr></table></div>

<p>There are tons of great resources on the web for learning these new standards and techniques. A couple I used for inspiration for this post and tip are:</p>
<ul>
<li><a href="http://jonraasch.com/blog/graceful-degradation-with-css3">Graceful Degradation With CSS3</a></li>
<li><a href="http://www.smashingmagazine.com/2010/09/21/5-coding-techniques-for-more-dynamic-websites/">Five Useful CSS/jQuery Coding Techniques For More Dynamic Websites</a></li>
<li><a href="http://www.css3.info/">css3.info</a></li>
<li>Google Search for the term <a href="http://www.google.com/search?client=safari&#038;rls=en&#038;q=css3&#038;ie=UTF-8&#038;oe=UTF-8">&#8220;CSS3&#8243;</a>. You really can&#8217;t fail with google. <em>(take note all you yahoo, or god forbid, AOL, users)</em></li>
</ul>
<p>If you&#8217;ve got any tips you&#8217;d like to share, please leave a comment. Now have some fun coding, and if you REALLY want to see just how powerful these new CSS3/HTML5 features are then just check out the <a href="http://www.optimum7.com/internet-marketing/web-development/pure-css3-spiderman-ipad-cartoon-jquery-html5-no-flash.html">Spiderman Animation</a> made entirely in CSS3.</p>
]]></content:encoded>
			<wfw:commentRss>http://ninethreestudio.com/2010/09/css3-transitions-slow-fade-glow-effect/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tutorial: 5 simple steps to give your images some punch</title>
		<link>http://ninethreestudio.com/2009/05/tutorial-5-simple-steps-to-give-your-images-some-punch/</link>
		<comments>http://ninethreestudio.com/2009/05/tutorial-5-simple-steps-to-give-your-images-some-punch/#comments</comments>
		<pubDate>Mon, 04 May 2009 20:55:48 +0000</pubDate>
		<dc:creator>Luke Hodsdon</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Nature]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[Portfolio Photoshop]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Duckling]]></category>

		<guid isPermaLink="false">http://ninethreestudio.com/?p=859</guid>
		<description><![CDATA[<div><img width="494" height="370" src="http://ninethreestudio.com/wp-content/uploads/2009/05/ducks_2.jpg" class="attachment-large wp-post-image" alt="ducks_2" title="ducks_2" style="margin-bottom: 15px;" /></div><p><span id="more-859"></span><br />
<strong><br />
<h1>5 steps to take your images from drab to glam.</h1>
<p></p></strong></p>
<p><strong><br />
<h1>Original: </h1>
<p></p></strong>This is the original image, right off the camera, no &#160;[&#8230;]</p>]]></description>
			<content:encoded><![CDATA[<div><img width="494" height="370" src="http://ninethreestudio.com/wp-content/uploads/2009/05/ducks_2.jpg" class="attachment-large wp-post-image" alt="ducks_2" title="ducks_2" style="margin-bottom: 15px;" /></div><p><span id="more-859"></span><!--noteaser--><br />
<img src="http://ninethreestudio.com/wp-content/uploads/2009/05/ducks_header.jpg" alt="ducks_header" title="ducks_header" width="585" height="160" class="centered size-full wp-image-860" /><strong><br />
<h1>5 steps to take your images from drab to glam.</h1>
<p></strong></p>
<p><strong><br />
<h1>Original: </h1>
<p></strong>This is the original image, right off the camera, no manipulation:<br />
<img src="http://ninethreestudio.com/wp-content/uploads/2009/05/ducks_1.jpg" alt="ducks_2" title="ducks_2" width="585" height="439" class="centered size-full wp-image-864" /></p>
<p><strong><br />
<h1>Final: </h1>
<p></strong>Here is the final image. See the vast, but subtle difference:<br />
<img src="http://ninethreestudio.com/wp-content/uploads/2009/05/ducks_2.jpg" alt="ducks_2" title="ducks_2" width="585" height="439" class="centered size-full wp-image-864" /></p>
<p><strong><br />
<h1>Step 1:</h1>
<p></strong> Open the image and find your focal point. Using some of the same techniques that give the look of a tilt-shift image, enter Quick Mask Mode (shortcut: Q). Once in Quick Mask Mode, select the Gradient tool (shortcut: G) and switch it to &#8220;Reflected Gradient&#8221; mode.<br />
<img src="http://ninethreestudio.com/wp-content/uploads/2009/05/ducks_3.jpg" alt="ducks_3" title="ducks_3" width="585" height="29" class="centered size-full wp-image-867" />Now draw a 90º line from the center of your focal point out to one of the edges of the artboard. This step might take a couple tried to get you exactly what you&#8217;re looking for, but tweak the settings until you&#8217;re happy. This is what mine looked like:<br />
<img src="http://ninethreestudio.com/wp-content/uploads/2009/05/ducks_4.jpg" alt="ducks_4" title="ducks_4" width="585" height="439" class="centered size-full wp-image-868" />Once you have your gradient drawn out to a place your comfortable with, exit Quick Mask Mode (shortcut: Q) and you should see your marquee. </p>
<p><strong><br />
<h1>Step 2: </h1>
<p></strong>From your finder menu navigate to &#8216;Filter/Blur/Lens Blur&#8230;&#8217; and enter the dialogue window. From here you will control how much emphasis you would like on your subject, but for normal photos this should remain fairly low as to not give it a &#8220;photoshopped&#8221; fakeness.<br />
<img src="http://ninethreestudio.com/wp-content/uploads/2009/05/ducks_5.jpg" alt="ducks_5" title="ducks_5" width="585" height="457" class="centered size-full wp-image-873" />As you can see from the above image, the setting i used offer a sense of depth to the otherwise flat photo. I kept the settings subtle for the effect i was trying to create, but be creative until you achieve the look you want.</p>
<p><strong><br />
<h1>Step 3: </h1>
<p></strong>Next we will adjust the saturation to really make the colors and the focal point pop. First, Enter the Hue/Saturation dialogue window (shortcut: command + U) and add anywhere from 15-35 to the saturation point.<br />
<img src="http://ninethreestudio.com/wp-content/uploads/2009/05/ducks_6.jpg" alt="ducks_6" title="ducks_6" width="585" height="439" class="centered size-full wp-image-874" />This will give the image a much more vibrant look without blowing out the colors to a ridiculous state.</p>
<p><strong><br />
<h1>Step 4:</h1>
<p></strong> From here we will adjust the levels of the image to make sure that our black points and white points are slightly beyond their original histogram starting points.<br />
<img src="http://ninethreestudio.com/wp-content/uploads/2009/05/ducks_7.jpg" alt="ducks_7" title="ducks_7" width="585" height="439" class="centered size-full wp-image-875" /> Enter the Levels dialogue window (shortcut: command + L) and look at your histogram. Make sure you move the Black point past the lowest point of the left graph and visa versa with the White point on the right side. For this image i&#8217;ve also moved the 50% Gray point slightly to the right as to make the image slightly darker throughout the mid tones as well.</p>
<p><strong><br />
<h1>Step 5: </h1>
<p></strong>By now you&#8217;re image should look pretty good. Now if you&#8217;d like to jab at those colors and depths one more time like i did you can proceed with this step.<br />
<img src="http://ninethreestudio.com/wp-content/uploads/2009/05/ducks_8.jpg" alt="ducks_8" title="ducks_8" width="585" height="439" class="centered size-full wp-image-876" /><img src="http://ninethreestudio.com/wp-content/uploads/2009/05/ducks_9.jpg" alt="ducks_9" title="ducks_9" width="208" height="180" class="alignright size-full wp-image-877" />What i&#8217;ve done in this step is to take all the work we&#8217;ve done thus far, and step it up one more time. Start by duplicating the layer you&#8217;ve been working on by dragging it to the new layer icon, which will create a copy, or using the keyboard shortcut (command + J). Once you&#8217;ve got a copy from your finder menu navigate to &#8216;Filter/Blur/Gaussian Blur&#8230;&#8217; and adjust your settings until you&#8217;ve got a nice smooth glow over the image, as you can see above. Now, you may be asking yourself why we just ruined all that work we just did. Well, here&#8217;s the exciting part. Set that duplicate layer you just blurred to a blending mode of &#8220;Soft Light&#8221; and watch the image shine! Adjust you opacity until you&#8217;re happy with your final image.</p>
<p><strong><br />
<h1>Conclusion: </h1>
<p></strong>Well, That&#8217;s it. Simple, fast and effective. Once you get these techniques down you&#8217;re on your way to editing all your photos with speed. For a tutorial on using the Levels dialogue window, see my post, <a href="http://ninethreestudio.com/2008/06/tutorial-using-black-white-points-in-photoshop-to-clear-up-an-underexposed-picture/">Tutorial: Using Black &#038; White points in Photoshop to clear up an underexposed picture</a>, for a more in depth explanation of the White point and Black point and how you can color correct photos in a flash.<br />
<img src="http://ninethreestudio.com/wp-content/uploads/2009/05/ducks_2.jpg" alt="ducks_2" title="ducks_2" width="585" height="439" class="centered size-full wp-image-864" /></p>
]]></content:encoded>
			<wfw:commentRss>http://ninethreestudio.com/2009/05/tutorial-5-simple-steps-to-give-your-images-some-punch/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Twitter Cheat Sheet</title>
		<link>http://ninethreestudio.com/2009/03/twitter-cheat-sheet/</link>
		<comments>http://ninethreestudio.com/2009/03/twitter-cheat-sheet/#comments</comments>
		<pubDate>Tue, 31 Mar 2009 22:32:08 +0000</pubDate>
		<dc:creator>Luke Hodsdon</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Cheat Sheet]]></category>
		<category><![CDATA[Churm Media]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://ninethreestudio.com/?p=842</guid>
		<description><![CDATA[<div><img width="181" height="494" src="http://ninethreestudio.com/wp-content/uploads/2009/03/twitter_cheatsheet-376x1024.jpg" class="attachment-large wp-post-image" alt="twitter_cheatsheet" title="twitter_cheatsheet" style="margin-bottom: 15px;" /></div><p><a href="http://ninethreestudio.com/2009/03/twitter-cheat-sheet/twitter_cheatsheet_header/" rel="attachment wp-att-844"></a><br />
Today at <a href="http://www.churmmedia.com" target="_blank">Churm Media</a>, I was tasked with making a twitter help guide so that our editorial/marketing teams could help &#160;[&#8230;]</p>]]></description>
			<content:encoded><![CDATA[<div><img width="181" height="494" src="http://ninethreestudio.com/wp-content/uploads/2009/03/twitter_cheatsheet-376x1024.jpg" class="attachment-large wp-post-image" alt="twitter_cheatsheet" title="twitter_cheatsheet" style="margin-bottom: 15px;" /></div><p><a href="http://ninethreestudio.com/2009/03/twitter-cheat-sheet/twitter_cheatsheet_header/" rel="attachment wp-att-844"><img src="http://ninethreestudio.com/wp-content/uploads/2009/03/twitter_cheatsheet_header.jpg" alt="twitter_cheatsheet_header" title="twitter_cheatsheet_header" width="585" height="160" class="centered size-full wp-image-844" /></a><br />
Today at <a href="http://www.churmmedia.com" target="_blank">Churm Media</a>, I was tasked with making a twitter help guide so that our editorial/marketing teams could help spread the word about our brands (@<a href="http://twitter.com/ocmetro">OCMETRO</a>, @<a href="http://twitter.com/ocfamily">OCFamily</a>, @<a href="http://twitter.com/iefamily">IEFamily</a>). That&#8217;s when i realized that if you&#8217;re not an internet savvy, hip user then you probably don&#8217;t really get the &#8220;jump right in and learn how to swim&#8221; aspect of twitter. Thus&#8230; the twitter cheat sheet. You may even notice a little shout out to a couple tweople (Twitter + people); @<a href="http://twitter.com/tutorial9">Tutorial9</a>, @<a href="http://twitter.com/cameronolivier">CameronOlivier</a>, @<a href="http://twitter.com/sethetter">Sethetter</a> &#038; @<a href="http://twitter.com/vectips">Vectips</a>.</p>
<p>Click through to download the full size cheat sheet. <strong>PDF Available below image. </strong><br />
<span id="more-842"></span></p>
<p><img src="http://ninethreestudio.com/wp-content/uploads/2009/03/twitter_cheatsheet.jpg" alt="twitter_cheatsheet" title="twitter_cheatsheet" width="585" height="1592" class="centered size-full wp-image-843" /></p>
<p>Follow this link to download this in a PDF format: <a href='http://ninethreestudio.com/wp-content/uploads/2009/03/twittercheatsheet.pdf'>Twitter Cheat Sheet PDF</a> (approx. 350k)</p>
]]></content:encoded>
			<wfw:commentRss>http://ninethreestudio.com/2009/03/twitter-cheat-sheet/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Portfolio: Sneak Peak Logo redesign &amp; Space tutorial</title>
		<link>http://ninethreestudio.com/2009/03/portfolio-sneak-peak-logo-redesign-space-tutorial/</link>
		<comments>http://ninethreestudio.com/2009/03/portfolio-sneak-peak-logo-redesign-space-tutorial/#comments</comments>
		<pubDate>Wed, 11 Mar 2009 18:55:08 +0000</pubDate>
		<dc:creator>Luke Hodsdon</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Illustrator]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Portfolio Photoshop]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Denis Designs]]></category>
		<category><![CDATA[Logo]]></category>
		<category><![CDATA[Luke Hodsdon]]></category>

		<guid isPermaLink="false">http://ninethreestudio.com/?p=800</guid>
		<description><![CDATA[<div><img width="494" height="345" src="http://ninethreestudio.com/wp-content/uploads/2009/03/ninethree_spacetutorial.jpg" class="attachment-large wp-post-image" alt="ninethree_spacetutorial" title="ninethree_spacetutorial" style="margin-bottom: 15px;" /></div><p><span class="port_tags">Title: </span><span class="port_text">Sneak peak Nine Three Studio logo &#038; Glowing text in space.</span></p>
<p><span class="port_tags">Client: </span><span class="port_text">None, Personal Project</span></p>
<p><span class="port_tags">Program(s) Used: </span><span class="port_text">Photoshop CS2, Illustrator </span>&#160;[&#8230;]</p>]]></description>
			<content:encoded><![CDATA[<div><img width="494" height="345" src="http://ninethreestudio.com/wp-content/uploads/2009/03/ninethree_spacetutorial.jpg" class="attachment-large wp-post-image" alt="ninethree_spacetutorial" title="ninethree_spacetutorial" style="margin-bottom: 15px;" /></div><p><span class="port_tags">Title: </span><span class="port_text">Sneak peak Nine Three Studio logo &#038; Glowing text in space.</span></p>
<p><span class="port_tags">Client: </span><span class="port_text">None, Personal Project</span></p>
<p><span class="port_tags">Program(s) Used: </span><span class="port_text">Photoshop CS2, Illustrator CS2 (for logo)</span></p>
<p><span class="port_tags">Time Span: </span><span class="port_text">10-20 minutes, not including logo</span></p>
<p><span class="port_tags">About: </span><span class="port_text">Thanks to a GREAT, and fast, tutorial at <a href="http://www.denisdesigns.com/" target="_blank">Denis Designs</a>, I was inspired to give my own take and twist. The <a href="http://www.denisdesigns.com/blog/2008/12/glowing-text-in-space-scene/" target="_blank">tutorial</a> is super easy to follow, and the results, as you can see, are pretty spectacular! Hey Denis, ever think about the tagline &#8220;You can&#8217;t spell design without Denis.&#8221;</span></p>
<p><span class="port_tags">Designer Notes: </span><span class="port_text">Easy to follow <a href="http://www.denisdesigns.com/blog/2008/12/glowing-text-in-space-scene/" target="_blank">tutorial</a> steps, great result i can&#8217;t really say much else! By the way, if you hadn&#8217;t noticed, this <em>IS</em> the new logo the site will be using in the re-design that is, god willing, still slated to happen mid year this year. Big plans in my brain&#8230; getting them out might be the hard part.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://ninethreestudio.com/2009/03/portfolio-sneak-peak-logo-redesign-space-tutorial/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Portfolio: Follow the yellow brick [tutorial] road</title>
		<link>http://ninethreestudio.com/2009/02/portfolio-follow-the-yellow-brick-tutorial-road/</link>
		<comments>http://ninethreestudio.com/2009/02/portfolio-follow-the-yellow-brick-tutorial-road/#comments</comments>
		<pubDate>Tue, 03 Feb 2009 17:57:38 +0000</pubDate>
		<dc:creator>Luke Hodsdon</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Illustrator]]></category>
		<category><![CDATA[Logos]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Portfolio Photoshop]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[3nhanced]]></category>
		<category><![CDATA[Gradient]]></category>
		<category><![CDATA[Graphic Design]]></category>
		<category><![CDATA[Photoshop Lady]]></category>

		<guid isPermaLink="false">http://ninethreestudio.com/?p=621</guid>
		<description><![CDATA[<p><a rel="lytebox[gelbutton_bird]" href="http://ninethreestudio.com/wp-content/uploads/2009/02/gelbutton_bird.jpg"></a><br />
My dear love for tutorial doage (yes, that&#8217;s now a word)  keeps my skills sharp and my knowledge of all things &#160;[&#8230;]</p>]]></description>
			<content:encoded><![CDATA[<p><a rel="lytebox[gelbutton_bird]" href="http://ninethreestudio.com/wp-content/uploads/2009/02/gelbutton_bird.jpg"><img src="http://ninethreestudio.com/wp-content/uploads/2009/02/gelbutton_bird_header.jpg" alt="gelbutton_bird_header" title="gelbutton_bird_header" width="585" height="132" class="centered size-full wp-image-623" /></a><br />
My dear love for tutorial doage (yes, that&#8217;s now a word)  keeps my skills sharp and my knowledge of all things graphic design high. I generally browse through the tutorials pages looking for something to catch my eye that gives me a sense of &#8220;how can i incorporate that into one of my Magazine layouts.&#8221; On this particular day i was looking through <a href="http://www.photoshoplady.com/" target="_blank">Photoshop Lady&#8217;s website</a> to see what new and exciting things the graphic design community had come up with this week. Low and behold, there it was. A Gel Button effect in photoshop to rival MANY gel button tutorials on the &#8220;market&#8221;. And trust me, i&#8217;ve done many of them. Most of them good, and get you to the goal you&#8217;re set out for, but this one had so much glamour that i knew i&#8217;d have to see how it was accomplished. So, not to bore you with the details or to try and explain the steps i&#8217;ll just give you a link so you can test for yourself. All in all, once i got a subject for the &#8216;logo&#8217;, this tutorial took me about 5-10 minutes, then add another 5 for personal tweaks and adjustments.</p>
<p>So without further ado, here&#8217;s my rendition of the <a href="http://www.photoshoplady.com/photoshop-tutorial/how-to-make-a-cool-wordpress-logo/" target="_blank">tutorial</a> (via <a href="http://3nhanced.com/photoshop/how-to-make-a-badass-wordpress-logo/" target="_blank">3nhanced</a>)&#8230;. after the jump [click image for full size].<br />
<span id="more-621"></span></p>
<p><a rel="lytebox[gelbutton_bird]" href="http://ninethreestudio.com/wp-content/uploads/2009/02/gelbutton_bird.jpg"><img src="http://ninethreestudio.com/wp-content/uploads/2009/02/gelbutton_bird-585x585.jpg" alt="gelbutton_bird" title="gelbutton_bird" width="585" height="585" class="centered size-medium wp-image-624" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://ninethreestudio.com/2009/02/portfolio-follow-the-yellow-brick-tutorial-road/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Tutorial: Using Black &amp; White points in Photoshop to clear up an underexposed picture</title>
		<link>http://ninethreestudio.com/2008/06/tutorial-using-black-white-points-in-photoshop-to-clear-up-an-underexposed-picture/</link>
		<comments>http://ninethreestudio.com/2008/06/tutorial-using-black-white-points-in-photoshop-to-clear-up-an-underexposed-picture/#comments</comments>
		<pubDate>Thu, 12 Jun 2008 15:24:55 +0000</pubDate>
		<dc:creator>Luke Hodsdon</dc:creator>
				<category><![CDATA[Photography]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Portfolio Photoshop]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Kristen]]></category>
		<category><![CDATA[Luke]]></category>

		<guid isPermaLink="false">http://ninethreestudio.com/?p=253</guid>
		<description><![CDATA[<p><a href="http://ninethreestudio.com/wp-content/uploads/2008/06/levels_tutorial_step0.jpg" rel="lytebox[253]" title="Tutorial - Photoshop Levels trick - Black and White point photo enhancements"></a><strong>At my current day to day job I use this technique religiously. It&#8217;s fast, easy and extremely effective when trying to </strong>&#160;[&#8230;]</p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://ninethreestudio.com/wp-content/uploads/2008/06/levels_tutorial_step0.jpg" rel="lytebox[253]" title="Tutorial - Photoshop Levels trick - Black and White point photo enhancements"><img src="http://ninethreestudio.com/wp-content/uploads/2008/06/levels_tutorial_step0.thumbnail.jpg" alt="Tutorial - Photoshop Levels trick - Black and White point photo enhancements" width="590" height="221" class="attachment wp-att-254 centered" /></a><strong>At my current day to day job I use this technique religiously. It&#8217;s fast, easy and extremely effective when trying to achieve better quality photos for print and online. In the following Adobe Photoshop tutorial I&#8217;ll walk you though a quick (less than a minute once you learn the steps) process on how to brighten up those dull, dark photos you&#8217;ve been sent from your clients&#8230; or in my case, taken with your poor digital camera.</strong></p>
<p><em>The following tutorial was done in Adobe Photoshop CS3, but 80% of the process can be used on just about any program with a &#8220;Levels&#8221; function (such as the freeware, open source image editing software, <a href="http://www.gimp.org/" target="_blank">GIMP</a>) while the last 20% can be done all the way back to Photoshop CS1 (this is the black overlay feature achieved by holding the &#8216;option&#8217; or &#8216;alt&#8217; key in levels).</em></p>
<p><span class="tut_tags">» TIP: IT&#8217;S ALWAYS GOOD TO MAKE DUPLICATES OF YOUR LAYERS IN CASE YOU NEED TO GO BACK IF YOU MAKE A FATAL MISTAKE.</span></p>
<p style="text-align: center;"><a href="http://ninethreestudio.com/wp-content/uploads/2008/06/levels_tutorial_step1.jpg" rel="lytebox[253]" title="Tutorial - Photoshop Levels trick - Black and White point photo enhancements"><img src="http://ninethreestudio.com/wp-content/uploads/2008/06/levels_tutorial_step1.thumbnail.jpg" alt="Tutorial - Photoshop Levels trick - Black and White point photo enhancements" width="590" height="442" class="attachment wp-att-255 centered" /></a></p>
<h1>Step 1:</h1>
<p>Open the file you wish to adjust and open the Levels adjustment window <span class="tut_tags">» SHORTCUT: COMMAND+L (pc users: CTRL+L)</span>. This will bring up your image&#8217;s histogram and the palette where this tutorial will focus. Locate the white point slider as seen above.</p>
<p style="text-align: center; margin-top: 35px;"><a href="http://ninethreestudio.com/wp-content/uploads/2008/06/levels_tutorial_step2.jpg" rel="lytebox[253]" title="Tutorial - Photoshop Levels trick - Black and White point photo enhancements"><img src="http://ninethreestudio.com/wp-content/uploads/2008/06/levels_tutorial_step2.thumbnail.jpg" alt="Tutorial - Photoshop Levels trick - Black and White point photo enhancements" width="590" height="442" class="attachment wp-att-256 centered" /></a></p>
<h1>Step 2:</h1>
<p>One of the best features of this tutorial is built right in to Photoshop CS1+. While on the white point slider, press and hold <span class="tut_tags">OPTION (pc users: ALT)</span> and begin scrubbing the bar left and right. This will give you a black overlay over your image. If you&#8217;re using an older version of Photoshop or a different program you can skip to step 4.</p>
<p><span class="tut_tags"><font color=red>» NOTE: THIS FEATURE WILL ONLY WORK IF YOUR IMAGE IS IN RGB MODE.</font></span></p>
<p><span class="tut_tags">» TIP: USING ADJUSTMENT LAYERS IS A GREAT WAY TO INSURE THAT YOU DON&#8217;T RUIN YOUR ORIGINAL FILES. THIS IS CALLED &#8220;WORKING NON-DESTRUCTIVELY&#8221;. IT WILL ALLOW YOU TO KEEP YOUR ORIGINAL FILES INTACT FOR FUTURE PROJECTS, OR TO RETURN TO A PREVIOUS STATE IF YOUR ADJUSTMENT LAYERS AREN&#8217;T WORKING FOR YOUR DESIGN ANYMORE.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://ninethreestudio.com/2008/06/tutorial-using-black-white-points-in-photoshop-to-clear-up-an-underexposed-picture/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Submit: How to create a CD cover.</title>
		<link>http://ninethreestudio.com/2008/06/submit-how-to-create-a-cd-cover/</link>
		<comments>http://ninethreestudio.com/2008/06/submit-how-to-create-a-cd-cover/#comments</comments>
		<pubDate>Fri, 06 Jun 2008 15:29:16 +0000</pubDate>
		<dc:creator>Luke Hodsdon</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Funny]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Typography]]></category>
		<category><![CDATA[Flickr]]></category>
		<category><![CDATA[Wikipedia]]></category>

		<guid isPermaLink="false">http://ninethreestudio.com/?p=238</guid>
		<description><![CDATA[<div><img width="494" height="494" src="http://ninethreestudio.com/wp-content/uploads/2008/06/cd_cover_moor_park.jpg" class="attachment-large wp-post-image" alt="CD Cover - Moor Park" title="CD Cover - Moor Park" style="margin-bottom: 15px;" /></div><p><a href="http://abduzeedo.com/my-first-band-cd/" target="_blank">Abduzeedo</a> has added an awesome post about a fun, creative way to create a CD cover. After i read this post &#160;[&#8230;]</p>]]></description>
			<content:encoded><![CDATA[<div><img width="494" height="494" src="http://ninethreestudio.com/wp-content/uploads/2008/06/cd_cover_moor_park.jpg" class="attachment-large wp-post-image" alt="CD Cover - Moor Park" title="CD Cover - Moor Park" style="margin-bottom: 15px;" /></div><p><a href="http://abduzeedo.com/my-first-band-cd/" target="_blank">Abduzeedo</a> has added an awesome post about a fun, creative way to create a CD cover. After i read this post i got addicted, neglected work, and did about 6 of these things&#8230; 3 of which actually came to fruition.</p>
<p>Here&#8217;s the steps&#8230;.</p>
<blockquote><p>Do you know when saw that new band cd and thought: &#8220;how in the world did they think of that&#8221;? Well, someone out there figured out the equation, and man, it&#8217;s really fun.</p>
<p>And what equation is that? Simple:</p>
<p>1. Click<a href="http://en.wikipedia.org/wiki/Special:Random" target="_blank"> HERE</a>. The random article title will be your band&#8217;s name.<br />
2. Click <a href="http://www.quotationspage.com/random.php3" target="_blank">HERE</a>. The last 4 words of the last quote will form the name of your album.<br />
3. Click <a href="http://www.flickr.com/explore/interesting/7days/" target="_blank">HERE</a>. The third picture, whatever it is, will be your cd cover.</p>
<p>Done! Now you got the formula to make some funny, yet great albums. I&#8217;ve actually made about 6 last night, and my favorite, by far, is this one.</p></blockquote>
<p>So. following these easy steps, Here&#8217;s what i came up with.<br />
PLEASE feel free to follow these steps and submit your own. it&#8217;s addicting, and fun! see what kinds of covers YOU can come up with!</p>
<p><a href="http://ninethreestudio.com/wp-content/uploads/2008/06/cd_cover_city_upon_a_hill.jpg" rel="lytebox[238]" title="CD Cover - City Upon A Hill"><img src="http://ninethreestudio.com/wp-content/uploads/2008/06/cd_cover_city_upon_a_hill.thumbnail.jpg" alt="CD Cover - City Upon A Hill" width="185" height="185" class="attachment wp-att-239 alignleft" /></a><a href="http://ninethreestudio.com/wp-content/uploads/2008/06/cd_cover_moor_park.jpg" rel="lytebox[238]" title="CD Cover - Moor Park"><img src="http://ninethreestudio.com/wp-content/uploads/2008/06/cd_cover_moor_park.thumbnail.jpg" alt="CD Cover - Moor Park" width="185" height="185" class="attachment wp-att-240 alignleft" /></a><a href="http://ninethreestudio.com/wp-content/uploads/2008/06/cd_cover_sophomore_jinx.jpg" rel="lytebox[238]" title="CD Cover - Sophomore Jinx"><img src="http://ninethreestudio.com/wp-content/uploads/2008/06/cd_cover_sophomore_jinx.thumbnail.jpg" alt="CD Cover - Sophomore Jinx" width="185" height="185" class="attachment wp-att-241 alignleft" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://ninethreestudio.com/2008/06/submit-how-to-create-a-cd-cover/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Tutorial: Grassy Text&#8230; Urban!</title>
		<link>http://ninethreestudio.com/2008/05/tutorial-grassy-text-urban/</link>
		<comments>http://ninethreestudio.com/2008/05/tutorial-grassy-text-urban/#comments</comments>
		<pubDate>Wed, 28 May 2008 01:12:34 +0000</pubDate>
		<dc:creator>Luke Hodsdon</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Portfolio Photoshop]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://ninethreestudio.com/?p=127</guid>
		<description><![CDATA[<p>I&#8217;m sure by now you&#8217;ve all seen this tutorial, but for those of you who haven&#8217;t <a href="http://psdtuts.com/text-effects-tutorials/create-a-spectacular-grass-text-effect-in-photoshop/" target="_blank">PSDTUTS</a> has an AMAZING, easy &#160;[&#8230;]</p>]]></description>
			<content:encoded><![CDATA[<p><img src="http://ninethreestudio.com/wp-content/uploads/2008/05/tutorial_grass_thumb.jpg" alt="" width="150" height="150" class="attachment wp-att-128 alignleft" />I&#8217;m sure by now you&#8217;ve all seen this tutorial, but for those of you who haven&#8217;t <a href="http://psdtuts.com/text-effects-tutorials/create-a-spectacular-grass-text-effect-in-photoshop/" target="_blank">PSDTUTS</a> has an AMAZING, easy to follow process for getting a very organic crop of grass around your text! If i have some free time, because this one looks like it might take a little longer than the previous <a href="http://ninethreestudio.com/2008/05/tutorial-bling-it-out/">&#8220;Bling it out!&#8221;</a> tutorial, i&#8217;ll try to organicize my nine<strong>three</strong>studio logo for all of the world to see. or maybe just the nine<strong>three</strong> iconic bird in the sense of time.</p>
<p><a href="http://psdtuts.com/text-effects-tutorials/create-a-spectacular-grass-text-effect-in-photoshop/" target="_blank">PSDTUTS &#8211; Create a Spectacular Grass Text Effect in Photoshop</a>. Also seen on <a href="http://swissmiss.typepad.com/weblog/2008/06/making-grassy-t.html" target="_blank">SwissMiss</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://ninethreestudio.com/2008/05/tutorial-grassy-text-urban/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tutorial: Flaming meteor text</title>
		<link>http://ninethreestudio.com/2008/05/tutorial-flaming-meteor-text/</link>
		<comments>http://ninethreestudio.com/2008/05/tutorial-flaming-meteor-text/#comments</comments>
		<pubDate>Thu, 15 May 2008 14:45:43 +0000</pubDate>
		<dc:creator>Luke Hodsdon</dc:creator>
				<category><![CDATA[Brushes]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Portfolio Photoshop]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Typography]]></category>
		<category><![CDATA[Flaming]]></category>
		<category><![CDATA[Meteor]]></category>
		<category><![CDATA[PSDTUTS]]></category>

		<guid isPermaLink="false">http://ninethreestudio.com/?p=42</guid>
		<description><![CDATA[<p><a href='http://psdtuts.s3.amazonaws.com/31_Fire/firetut_big.png' rel="lytebox" title="Flaming Text" width="65%"></a>Yet another great tutorial by the talent at <a href="http://psdtuts.com" target="_blank">PSDTUTS.</a> Brush manipulation, typography, visual design, layer blending modes, this tutorial has it &#160;[&#8230;]</p>]]></description>
			<content:encoded><![CDATA[<p><a href='http://psdtuts.s3.amazonaws.com/31_Fire/firetut_big.png' rel="lytebox" title="Flaming Text" width="65%"><img src="http://psdtuts.s3.amazonaws.com/31_Fire/preview.jpg" alt="" title="Flaming Text" class="port_v" /></a>Yet another great tutorial by the talent at <a href="http://psdtuts.com" target="_blank">PSDTUTS.</a> Brush manipulation, typography, visual design, layer blending modes, this tutorial has it all. A great place to start for beginners&#8230; now i know that might seem a little scary, but the best and only way to learn is through immersion, right? I say you just load up this tutorial and jump both feet forward and don&#8217;t look back!</p>
<p>How many steps do you imagine it would take to get tot his final product? i&#8217;m not going to lie. i thought at LEAST 25. Well, PSDTUTS did it in 16 steps. Now of course a step counts as a whole portion, but still. that&#8217;s pretty effing amazing if you want my opinion, and since you&#8217;re on my blog, i&#8217;d say so. haha.</p>
<p>For me, the tutorial really grabs hold at around step 8 up until the conclusion. The process of adding the flame and the particles with the brush manipulations are brilliant. Grab your stylus and start making pretty things, because really, we&#8217;re designers&#8230; that&#8217;s what we do!</p>
<blockquote><p><strong>Create a Spectacular Flaming Meteor Effect on Text</strong><br />
In Text Effects by Fabio</p>
<p>Take typography one step further by having text falling from the sky in a burning inferno. Yes, this is the text-on-fire tutorial to end all tutorials. It uses a little Illustrator for the text and a lot of Photoshop to burn up the screen!</p>
<p>In previous tutorials you&#8217;ve seen two smoke effects that I&#8217;ve created, but let&#8217;s face it, you can&#8217;t have smoke without a fire somewhere. So in this tutorial I will show you how to create a fire effect similar to when a spaceship or comet enters the earth&#8217;s atmosphere. The image we&#8217;ll be creating is inspired by a Nike Ad I saw some time ago. I&#8217;m not sure what the URL is, if anyone knows it, please link us up in the comments.</p>
<p>It&#8217;s always a good idea to keep your eyes open for inspiration for effects and designs no matter what you are doing. Graphics are everywhere and you can learn a lot by looking at what other people do. Now on to the tutorial!</p></blockquote>
<p><a href="http://psdtuts.com/text-effects-tutorials/create-a-spectacular-flaming-meteor-effect-on-text/trackback/">Follow the Trackback</a> to PSDTUTS for the full 16 step tutorial.</p>
]]></content:encoded>
			<wfw:commentRss>http://ninethreestudio.com/2008/05/tutorial-flaming-meteor-text/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tutorial: Depth rainbow into your photos</title>
		<link>http://ninethreestudio.com/2008/05/tutorial-depth-rainbow-into-your-photos/</link>
		<comments>http://ninethreestudio.com/2008/05/tutorial-depth-rainbow-into-your-photos/#comments</comments>
		<pubDate>Wed, 14 May 2008 14:05:22 +0000</pubDate>
		<dc:creator>Luke Hodsdon</dc:creator>
				<category><![CDATA[Brushes]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Portfolio Photoshop]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Colors]]></category>
		<category><![CDATA[Filters]]></category>

		<guid isPermaLink="false">http://ninethreestudio.com/?p=41</guid>
		<description><![CDATA[<p><a href='http://psdtuts.s3.amazonaws.com/135_Retro_Curves/large.jpg' rel="lytebox"></a>Sometimes your photos just need that something to push them over the edge, why not a grungy finish with a line-depth, &#160;[&#8230;]</p>]]></description>
			<content:encoded><![CDATA[<p><a href='http://psdtuts.s3.amazonaws.com/135_Retro_Curves/large.jpg' rel="lytebox"><img src="http://psdtuts.s3.amazonaws.com/135_Retro_Curves/jwt_s200.jpg" alt="" title="" class="port_v" /></a>Sometimes your photos just need that something to push them over the edge, why not a grungy finish with a line-depth, colored rainbow? Well, problem solved!! <a href="http://psdtuts.com/">PSDTUTS</a> has a great tutorial on their site right now showing exactly how to manipulate your brushes, adjust your blending modes, tweak your adjustment layers and add that grunge style look to your plain, simple photos. </p>
<p>Being a HUGE fan of photoshop and it&#8217;s brush options. i&#8217;ve decided to post this link for everyone. Take the 20 minutes to do the tutorial, and if you&#8217;re in a crunch for time. at least skip to the section about the brush options. It&#8217;s MORE than worth any designer&#8217;s time, especially if you&#8217;re a photoshop junkie like myself!</p>
<blockquote><p><strong>Mix Cool Retro Curves Into Your Photographs</strong><br />
In Effects by Fabio</p>
<p>I&#8217;m a huge fan of James White&#8217;s work. I love the way he plays with geometric elements and colors. It gives a retro feeling to the design, but at the same time he uses a modern approach. In an interview, he mentioned that he uses a Flash script to generate the vector shapes. Then he does the rest of the job in Illustrator and Photoshop.</p>
<p>Well, inspired by James&#8217;s designs, I decided to figure out my own way of creating that type of effect in Photoshop. In this tutorial, I show you how to mix cool retro geometric shapes into your photos</p></blockquote>
<p>Follow the <a href="http://psdtuts.com/tutorials-effects/mix-cool-retro-curves-into-your-photographs/trackback/">Trackback Link</a> to get to the full tutorial, with pictures and easy to follow instructions.</p>
]]></content:encoded>
			<wfw:commentRss>http://ninethreestudio.com/2008/05/tutorial-depth-rainbow-into-your-photos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>60 Photography Links You Can&#8217;t Live Without</title>
		<link>http://ninethreestudio.com/2008/05/60-photography-links-you-cant-live-without/</link>
		<comments>http://ninethreestudio.com/2008/05/60-photography-links-you-cant-live-without/#comments</comments>
		<pubDate>Tue, 13 May 2008 23:15:45 +0000</pubDate>
		<dc:creator>digg_user</dc:creator>
				<category><![CDATA[Photography]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Resource]]></category>

		<guid isPermaLink="false">http://ninethreestudio.com/2008/05/60-photography-links-you-cant-live-without/</guid>
		<description><![CDATA[<p><a href="http://www.cameraporn.net/wp-content/uploads/2008/05/lnkpost.jpg" rel="lytebox"></a><a href="http://www.cameraporn.net/2008/05/12/60-photography-links-you-cant-live-without/trackback/">CameraPorn</a> has compiled a list of 60 of the best photography links that you can&#8217;t live without. I know. Redundancy to &#160;[&#8230;]</p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.cameraporn.net/wp-content/uploads/2008/05/lnkpost.jpg" rel="lytebox"><img src="http://www.cameraporn.net/wp-content/uploads/2008/05/lnkpost.jpg" class="centered"><a href="http://www.cameraporn.net/2008/05/12/60-photography-links-you-cant-live-without/trackback/">CameraPorn</a> has compiled a list of 60 of the best photography links that you can&#8217;t live without. I know. Redundancy to the title, but there&#8217;s no other way to describe it. They&#8217;ve also got a bunch of other really great resources on their site&#8230; i smell blogroll!!</p>
<p><a href="http://www.cameraporn.net/2008/05/12/60-photography-links-you-cant-live-without/">read more</a> | <a href="http://digg.com/arts_culture/60_Photography_Links_You_Can_t_Live_Without">digg story</a></p>
]]></content:encoded>
			<wfw:commentRss>http://ninethreestudio.com/2008/05/60-photography-links-you-cant-live-without/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>8 great CSS fonts, you probably have them!</title>
		<link>http://ninethreestudio.com/2008/05/8-great-css-fonts-you-probably-have-them/</link>
		<comments>http://ninethreestudio.com/2008/05/8-great-css-fonts-you-probably-have-them/#comments</comments>
		<pubDate>Mon, 12 May 2008 03:50:19 +0000</pubDate>
		<dc:creator>Luke Hodsdon</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Fonts]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://ninethreestudio.com/?p=20</guid>
		<description><![CDATA[<p>I ran across <a href="http://www.3point7designs.com/blog/2008/05/08/8-fonts-you-probably-dont-use-in-css-but-should/trackback/">this post</a> while spending some time between coding and .PNG making to clear my head. REALLY useful information &#160;[&#8230;]</p>]]></description>
			<content:encoded><![CDATA[<p>I ran across <a href="http://www.3point7designs.com/blog/2008/05/08/8-fonts-you-probably-dont-use-in-css-but-should/trackback/">this post</a> while spending some time between coding and .PNG making to clear my head. REALLY useful information for ANY web designer who&#8217;s worth his/her 2¢ in CSS.</p>
<p>Click through to read the full article from <a href="http://www.3point7designs.com/blog/2008/05/08/8-fonts-you-probably-dont-use-in-css-but-should/trackback/">3point7designs.com</a></p>
<p><span id="more-20"></span></p>
<blockquote><p>CSS has brought us many capabilities in terms of typography and the web, but we always seem to be limited to the same 4-5 typefaces over and over again. There is an inherant problem, if the font you specify isn’t on the viewers computer it won’t render in that font. So as designers and developers we end up selecting the ones that we can safely assume is available on most computers today. So most pages use Arial, Helvetica, or Georgia as their typefaces… and the world of the web remains slightly more bland.</p>
<p>But there are quite a few high quality typefaces that are available on most new computer systems and you can always fall back on the common ones. Of course there are options like creating images, dynamic headlines, and siFR… but all of these techniques increase load time and development time. There are plenty of good reasons to be strategic in the font choices rather than using additional technology. I am shocked at how rarely I see anyone taking advantage of these type options, so here is a quick and dirty list of fonts you should and could use in your desgns and stylesheets.</p>
<p><br/></p>
<h1 style="font-family: 'palatino linotype',palatino;">1. Palatino Linotype / Palatino</h1>
<p><strong>WINDOWS 97.09% / MAC 78.86%</strong></p>
<p>This is a nice serif font that his pretty good support for both Mac and Windows based machines (97.09% of all windows machines have it, and 78.86% of mac’s). Yet very few people use it and instead default to georgia or times. As you can see it makes for great headlines, and I have used it with success as copy type as well. Worse case you can always default back to georgia, times, etc.</p>
<p><br/></p>
<h1 style="font-family: Tahoma;">2. Tahoma</h1>
<p><strong>WINDOWS 96.09% / MAC 72.02%</strong></p>
<p>I admit this is not one of my favorite fonts, but it does have many instances where it could be used effectively. It doesn’t seem to get used very often despite the fact that it could be an excellent copy font. Again there is always Arial or Helvetica if the machine doesn’t have Tahoma installed.</p>
<p><br/></p>
<h1 style="font-family: impact;">3. Impact</h1>
<p><strong>WINDOWS 95.85% / MAC 88.08%</strong></p>
<p>Admittedly this font probably is overused in non-web related design. Since it is one of the “cooler” default fonts on most machines it tends to get a lot of use. Despite this fact there are plenty of good places to use it, and it works great for well… “impactfull” headlines.</p>
<p><br/></p>
<h1 style="font-family: 'century gothic';">4. Century Gothic</h1>
<p><strong>WINDOWS 85.44% / MAC 42.50%</strong></p>
<p>This is a nice elegant font that was overused by graphic designers some time ago, but it has been locked away and shunned for some time now. It may almost be time to pull it back out of the tool chest. Not a huge percent of Mac systems come with it preinstalled, but most new ones do. Depending on your target audience this could be the perfect font to use. If you are worried about the low mac support you could always opt for Futura as well (which has very high mac support).</p>
<p><br/></p>
<h1 style="font-family: 'Arial Black';">5. Arial Black</h1>
<p><strong>WINDOWS 97.73% / MAC 96.18%</strong></p>
<p>Yup you don’t just have to use plain old Arial. Arial black is a nice bold font that could be perfect for headings, impacting headlines, and hell even a replacement for the Impact font mentioned above. I don’t know that I would use it for body text, but it is an option that should be realized in web typography.</p>
<p><br/></p>
<h1 style="font-family: 'arial narrow';">6. Arial Narrow</h1>
<p><strong>WINDOWS 87.08% / MAC 91.01%</strong></p>
<p>Arial again! We are not done yet, oh no. Much like arial black, arial narrow is a great font for headlines. Instead of the big bold in your face style of headlines you can use this typeface for more elegant subtle headlines. A nice change from the traditional arial, and can be used much like you would a condensed font.</p>
<p><br/></p>
<h1 style="font-family: Copperplate,'Copperplate Gothic Light';">7. Copperplate / Copperplate Gothic Light</h1>
<p><strong>WINDOWS 58.13% / MAC 85.85%</strong></p>
<p>I will admit I hate this font, mostly because it is misused (and people will probably argue that it is not the fonts fault, but the designers). But there are times when it can be used effectively, and it has pretty good support on newer windows computers and most mac based computers. Most likely it will again be for headlines, larger headlines, as it is not terribly legible at small fonts especially when it isn’t properly aliased.</p>
<p><br/></p>
<h1 style="font-family: 'Gill Sans','Gill Sans MT';">8. Gill Sans / Gill Sans MT</h1>
<p><strong>WINDOWS 43.09% / MAC 90.82%</strong></p>
<p>No surprise I like this font. I think it works both in copy and in headlines, and it has fair support in both platforms. Anytime you use a font that has about 50% support rate you want to think about the next logical font to serve, but there are enough options specific to windows that would let you achieve the same typographic message with only subtle differences.</p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://ninethreestudio.com/2008/05/8-great-css-fonts-you-probably-have-them/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>9 steps to design bliss</title>
		<link>http://ninethreestudio.com/2008/05/9-steps-to-design-bliss/</link>
		<comments>http://ninethreestudio.com/2008/05/9-steps-to-design-bliss/#comments</comments>
		<pubDate>Sun, 11 May 2008 23:01:34 +0000</pubDate>
		<dc:creator>Luke Hodsdon</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Art]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://ninethreestudio.com/?p=17</guid>
		<description><![CDATA[<p>During my recent web scouring i came across a great 9 step program. Yes, you guessed it, they cut out 3 &#160;[&#8230;]</p>]]></description>
			<content:encoded><![CDATA[<p>During my recent web scouring i came across a great 9 step program. Yes, you guessed it, they cut out 3 of the 12 steps to help me break my addictions! who needs to &#8220;admit they have a problem&#8221; when designing is just a solution TO a problem! ha! Ok, but really. these 9 steps are for helping designers get out of that designers block that we all dread so much!</p>
<blockquote><p><strong>Here are a few things you can do when you recognize that you’re in a lull:</strong><br />
1. Take a deep breath, relax and ENJOY it. That’s right – you’ve (probably) earned it, so take a moment to stop and smell the roses. After weeks of being “slammed” it’s good to take a break. Realize you’re slow, ratchet down a gear, let the stress you’ve built up flow out of your body. Assume a more relaxed state of mind and let your “batteries” recharge. Ok, 5 minutes of that should do it. Now move quickly onto number 2.</p>
<p><span id="more-17"></span>2. Re-focus. Now that you realize you’re in a lull it’s important to re-focus your attention. After spending weeks scrambling to keep up with your customer’s requests, it’s easy to feel kind of lost for direction when the demand for your time suddenly dries up. Now that you realize you’re slow, you need to refocus your attention on your company! If you sit around twiddling your thumbs waiting for work to come to you – you will perish. So, now is your opportunity to do all those things you daydream about while you’re slammed with customer work. Here are a few things you might consider:</p>
<p>3. Seek out a new client. Been fantasizing about working for Puma? Great! Write a letter, do a mock-up, contact their art director… Whatever. Just take some ACTION. Sometimes it’s nothing more than a simple e-mail that lands a big design project.</p>
<p>4 Advertise! This could be passing out fliers in your neighborhood, sending e-mails out to people you would like to work for or designing a new marketing piece. There are a thousand ways to spread the word about your services. Get cracking!</p>
<p>5. Drive traffic – Got a blog? Write an article you think people would like.</p>
<p>6. Work on your company systems! How do you organize your projects? How do you keep your books? How do you do your banking?</p>
<p>7. Be a student. Have a piece of software you’ve been DYING to learn but haven’t had the time? Find a tutorial, open the software and learn something! (No. Video Games DO NOT count as “software.”)</p>
<p>8. Get in touch with your clients! Haven’t had time to write thank-you letters? Sometimes a simple note to an old client will spark them to buy more services from you.</p>
<p>9. The important thing is to STAY BUSY. If you use your design lulls to be productive, they will be short lived. And I promise – just about the moment that you’re REALLY getting into your side-work, a new client will drop a massive project in your lap. So set a goal and get to it!</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://ninethreestudio.com/2008/05/9-steps-to-design-bliss/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Tutorial: Bling it out!</title>
		<link>http://ninethreestudio.com/2008/05/tutorial-bling-it-out/</link>
		<comments>http://ninethreestudio.com/2008/05/tutorial-bling-it-out/#comments</comments>
		<pubDate>Fri, 09 May 2008 14:39:01 +0000</pubDate>
		<dc:creator>Luke Hodsdon</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Art]]></category>

		<guid isPermaLink="false">http://ninethreestudio.com/?p=13</guid>
		<description><![CDATA[<p>Ready to put out your next rap album cover Mad Money Millionaires? Need to add a little Zazzzz to your webpage? &#160;[&#8230;]</p>]]></description>
			<content:encoded><![CDATA[<p><center><img src="http://www.gomediahost.com/zine/tutorials/bling/design-small.jpg" style="display: block;"></center>Ready to put out your next rap album cover Mad Money Millionaires? Need to add a little Zazzzz to your webpage? Well look no further! This great tutorial will show you exactly how to get the desired &#8220;bling&#8221; effect you&#8217;ve been waiting for. With this easy to follow, easy to replicate tutorial all you have to do is follow along&#8230; a monkey could do it. Well, you know, if that monkey has a wacom tablet and a stylus.</p>
<p><a href="http://www.gomediazine.com/tutorials/badass-bling-effect-in-photoshop/trackback/" target="_blank"><strong>Click through</strong></a> to see the entire Bling Tutorial.</p>
<blockquote><p>This tutorial will show you step by step on how to create a “Badass Bling Effect” using layer styles in Photoshop. Once you create the layer style, you can easily “blingify” any layer. There is also a video tutorial as well.</p></blockquote>
<p><a href='http://ninethreestudio.com/wp-content/uploads/2008/05/bling-test-small.jpg' rel="lytebox"><img src="http://ninethreestudio.com/wp-content/uploads/2008/05/bling-test-small-300x172.jpg" alt="" title="bling-test-small" width="300" height="172" class="alignleft size-medium wp-image-14" /></a>Here&#8217;s my shotty attempt at it. Don&#8217;t let the poor quality fool you, i assure you i am a good designer. HAHA. This was a quick, step by step, learn the tutorial, image&#8230; it came out ok, probably should have worked with a larger DPI though. Live and Learn!</p>
<p>I found all these images off quick google searches, so the quality was pretty poor. And i only had about 15-20 minutes before work to get this up finished and posted. But, enough excuses! TO THE BAT CAVE!</p>
]]></content:encoded>
			<wfw:commentRss>http://ninethreestudio.com/2008/05/tutorial-bling-it-out/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

