<?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>DesignBash &#187; Tutorials</title>
	<atom:link href="http://www.designbash.com/tag/tutorials/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.designbash.com</link>
	<description>web magazine and more...</description>
	<lastBuildDate>Fri, 25 Nov 2011 01:00:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Rounded CSS Corners &#8211; The Basics</title>
		<link>http://www.designbash.com/css/rounded-css-corners-the-basics/</link>
		<comments>http://www.designbash.com/css/rounded-css-corners-the-basics/#comments</comments>
		<pubDate>Sun, 14 Feb 2010 21:04:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.designbash.com/?p=284</guid>
		<description><![CDATA[For those of us who no longer want to support Microsoft's lagging browsers, the best and fastest way to create rounded corners is by using CSS. ]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.designbash.com/css/rounded-css-corners-the-basics/"><img src="http://www.designbash.com/wp-content/uploads/2010/02/rounded-corners-CSS.jpg" alt="CSS Rounded Corners" title="rounded-corners-CSS" width="500" height="120" class="aligncenter size-full wp-image-297" /></a><br />
For those of us who no longer want to support Microsoft&#8217;s lagging browsers the best <em>(and fastest)</em> way to create rounded corners is by using CSS3. Using CSS corners will dramatically reduce your development time while keeping your markup clean and flexible.<span id="more-284"></span></p>
<p>As it stands, rounded corners are currently supported in modern versions of <strong>Firefox, Safari, and Chrome</strong>. Unfortunately, you&#8217;ll need to use two different declarations to get all these browsers working. The basic declarations should look something like this:</p>
<pre class="brush:css">

/* Supported in Firefox */
-moz-border-radius
-moz-border-radius-topleft
-moz-border-radius-topright
-moz-border-radius-bottomleft
-moz-border-radius-bottomright

/* Supported in Chrome and Safari */
-webkit-border-radius
-webkit-border-top-left-radius
-webkit-border-top-right-radius
-webkit-border-bottom-left-radius
-webkit-border-bottom-right-radius
</pre>
<h3>The Rounded Example</h3>
<p>Below you will find an example of rounded corners in action. If you&#8217;re using a modern browser you should see the grey box with rounded corners. <em>(if using IE, I&#8217;ve put in a screenshot of what things look like when using a respectable browser)</em></p>
<pre class="brush:css">
.rounded {
width: 500px;
padding: 30px 0px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 10px;
}
</pre>
<div style="background: #ffffff; padding: 30px 0; border: 1px solid #cccccc; margin-bottom: 15px;">
<div style="background: #cccccc; width: 450px; margin: 15px auto; padding: 30px 0; -moz-border-radius: 10px; -webkit-border-radius: 10px;">
<p style="text-align: center; margin: 0; padding: 0;">This paragraph is inside a rounded DIV</p>
</div>
</div>
<h3>Screenshot Example For Internet Explorer <em>(sigh&#8230;)</em></h3>
<p><img style="border: 1px solid #cccccc;" src="http://www.designbash.com/wp-content/uploads/2010/02/ie-rounded-css.png" alt="ie Rounded Rectangle CSS Example" title="ie-rounded-css" width="558" height="170" class="aligncenter size-full wp-image-292" /></p>
<h3>But What Does the W3C Say?</h3>
<p>Due to the fact that border-radius is not officially supported by any browser, it might be a good idea to check out what the W3C has to say about the subject. I was surprised to see how detailed they were and I highly recommend <strong><a href="http://www.w3.org/TR/css3-background/#the-border-radius">checking out their official specs</a></strong>. As a reference, the official (but currently unsupported) declarations are:</p>
<pre class="brush:css">
border-radius
border-top-right-radius
border-bottom-right-radius
border-bottom-left-radius
border-top-left-radius
</pre>
<p>There are tons of neat variations you can do, but they go a little beyond the scope of this article. Check out the W3C specs for the full explanation, or, check out some of these links that do a good job documenting css rounded corners:</p>
<ul>
<li><a href="http://www.css3.info/preview/rounded-border/">CSS3 Info</a></li>
<li><a href="http://www.the-art-of-web.com/css/border-radius/">The Art of Web</a></li>
<li><a href="http://www.zenelements.com/blog/css3-border-radius-rounded-corners/">Zen Elements</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.designbash.com/css/rounded-css-corners-the-basics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to SSH using OSX and Terminal</title>
		<link>http://www.designbash.com/quickie/how-to-ssh-using-osx-and-terminal/</link>
		<comments>http://www.designbash.com/quickie/how-to-ssh-using-osx-and-terminal/#comments</comments>
		<pubDate>Fri, 29 Jan 2010 16:56:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Quickie]]></category>
		<category><![CDATA[Beginner]]></category>
		<category><![CDATA[SSH]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.designbash.com/?p=275</guid>
		<description><![CDATA[I know for many people this is a really really simple task, but I constantly find myself looking this up online and it usually takes me 5-10 minutes before I find a useful result. With this in mind, please enjoy the following snippet.]]></description>
			<content:encoded><![CDATA[<p>I know for many people this is a really <strong>really</strong> simple task, but I constantly find myself looking this up online and it usually takes me 5-10 minutes before I find a useful result. With this in mind, please enjoy the following snippet.<span id="more-275"></span></p>
<h3>SSH, OSX and Terminal</h3>
<p>I&#8217;ll retrace my exact steps here, including hot-keys. First we need to open up the terminal &#8211; a basic prompt interface that lives beneath all the bling of OSX. Rather than digging around in your applications folder, just hit <strong>apple-spacebar </strong>to open spotlight. Type &#8220;<strong>terminal</strong>&#8221; and it should show up right away.</p>
<p><img class="aligncenter size-full wp-image-276" title="spotlight" src="http://www.designbash.com/wp-content/uploads/2010/01/spotlight.png" alt="spotlight terminal" width="342" height="165" /></p>
<h3>Inside the Matrix (Terminal)</h3>
<p>Now you can start to feel like a hacker. Thankfully, OSX ships with SSH pre-installed, which makes this tutorial very easy. To connect using SSH you need to type:</p>
<p><strong>&#8220;SSH username@www.yourwebsite.com&#8221;</strong></p>
<p><img class="aligncenter size-full wp-image-277" title="ssh-terminal" src="http://www.designbash.com/wp-content/uploads/2010/01/ssh-terminal.png" alt="" width="583" height="74" /></p>
<p>After pressing enter you&#8217;ll be prompted for two things&#8230; <strong>a password and a yes/no question</strong> asking if you want to add a record of the SSH connection (or something like that). While typing your password you can&#8217;t actually see the characters, but it is really working. Also, you need to write a <strong>full &#8220;yes&#8221; or &#8220;no&#8221;</strong> in response to the question&#8230;</p>
<h3><strong>That&#8217;s It</strong>!</h3>
<p>You should be connected and ready to go. There are many different SSH commands, so I won&#8217;t go through those right now, but here are a few to get you started:</p>
<ul>
<li><strong>ls</strong> &#8211; Used to list the contents of a directory</li>
<li><strong>cd ..</strong> &#8211; Used to go back (or up) one directory</li>
<li><strong>cd directory/name</strong> &#8211; Used to navigate to a directory</li>
<li><strong>exit</strong> &#8211; Used to end the SSH session</li>
<li><strong>pwd</strong> &#8211; Prints the working directory</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.designbash.com/quickie/how-to-ssh-using-osx-and-terminal/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Giving Backgrounds Texture</title>
		<link>http://www.designbash.com/quickie/giving-backgrounds-texture/</link>
		<comments>http://www.designbash.com/quickie/giving-backgrounds-texture/#comments</comments>
		<pubDate>Thu, 14 Jan 2010 22:20:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Quickie]]></category>
		<category><![CDATA[Gradient]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Quickies]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.designbash.com/?p=167</guid>
		<description><![CDATA[This quick example will use some simple noise to give a gradient background some extra depth]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://www.designbash.com/quickie/giving-backgrounds-texture/"><img class="size-full wp-image-179 aligncenter" title="make-some-noise" src="http://www.designbash.com/wp-content/uploads/2010/01/make-some-noise.png" alt="Make Some Noise" width="480" height="120" /></a></p>
<p>There is a neat little trick that most good web designers know and love, and it has to do with <strong>background textures and noise</strong>. I remember when I first started designing for the web, I would never use textures in my designs and was always left feeling like something was missing.<span id="more-167"></span> A textured background, even when it&#8217;s very subtile, will give your site much more depth and feeling than a plan flat color or gradient. This quick example will use some simple noise to give a gradient background some extra depth. So let&#8217;s get started!</p>
<h2>First Example &#8211; A Noisy Gradient</h2>
<h3>Step 1 &#8211; Create a New Document</h3>
<p>Create a new web document that is <strong>1200px by 1000px.</strong></p>
<p><strong><img class="aligncenter size-full wp-image-169" title="noise-background" src="http://www.designbash.com/wp-content/uploads/2010/01/noise-background1-e1263506466581.png" alt="" width="500" height="281" /><br />
 </strong></p>
<p><strong> </strong></p>
<h3><strong>Step 2 &#8211; Choose a Nice Gradient Background</strong></h3>
<p>For this example I decided to do a nice bright-dark green gradient. Make sure it&#8217;s linear to make it easier to slice into HTML/CSS afterwards.</p>
<p style="text-align: center;"><a href="http://www.designbash.com/wp-content/uploads/2010/01/green-gradient.png"><img class="aligncenter size-large wp-image-170" title="green-gradient" src="http://www.designbash.com/wp-content/uploads/2010/01/green-gradient-1024x853.png" alt="green-gradient" width="430" height="358" /></a></p>
<h3>Step 3 &#8211; Add the Noise Layer</h3>
<p>Next, add a new layer on top of your background layer. This will be our noise layer. Fill it in with <strong>total black</strong> and then go up to <strong>Filter &gt; Noise &gt; Add Noise.</strong> Use roughly the same settings that I use below:</p>
<p><img class="aligncenter size-full wp-image-171" title="noise-settings" src="http://www.designbash.com/wp-content/uploads/2010/01/noise-settings.png" alt="noise-settings-photoshop" width="329" height="421" /></p>
<p>You should end up with a really <strong>really</strong> noisy background.</p>
<h3>Step 4 &#8211; Blending and Opacity</h3>
<p>Next we need to change the <strong>blending mode</strong> and <strong>opacity</strong> to make our noise layer more palatable. First set the blending of the noise layer to <strong>Overlay</strong>. Next you need to bring the opacity down to somewhere between 1% and 20%, depending on how much noise you want. In my Example I used  <strong>5% opacity</strong>.</p>
<p><img class="aligncenter size-full wp-image-172" title="blending_and_opacity" src="http://www.designbash.com/wp-content/uploads/2010/01/blending_and_opacity.png" alt="" width="211" height="154" /></p>
<p>Your final background should end up looking something like this:</p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<div id="attachment_173" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.designbash.com/wp-content/uploads/2010/01/green-noise-background.png"><img class="size-medium wp-image-173" title="green-noise-background" src="http://www.designbash.com/wp-content/uploads/2010/01/green-noise-background-300x250.png" alt="Green Background with Noise" width="300" height="250" /></a><p class="wp-caption-text">Click to See Full Size</p></div>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.designbash.com/quickie/giving-backgrounds-texture/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Halftone Tutorial Photoshop &#8211; Quickie</title>
		<link>http://www.designbash.com/photoshop/halftone-tutorial-photoshop-quickie/</link>
		<comments>http://www.designbash.com/photoshop/halftone-tutorial-photoshop-quickie/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 18:50:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Quickie]]></category>
		<category><![CDATA[Quickies]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.designbash.com/?p=130</guid>
		<description><![CDATA[Here is a quick way to produce a neat halftone effect in Photoshop that can be used to give your compositions a little more complexity.]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"> </p>
<p style="text-align: center;"><a href="http://www.designbash.com/photoshop/halftone-tutorial-photoshop-quickie"><img class="aligncenter size-full wp-image-131" title="Halftone-Example" src="http://www.designbash.com/wp-content/uploads/2010/01/Halftone-Example-e1262976803281.jpg" alt="halftone tutorial photoshop" width="497" height="150" /></a></p>
<p>Here is a quick way to produce a neat <strong>halftone effect in Photoshop</strong> that can be used to give your compositions a little more complexity.<span id="more-130"></span></p>
<h2>Step One &#8211; Setup the Document</h2>
<p>Start off by creating a new document with the dimensions of <strong>800px by 800px</strong>.</p>
<p><img class="aligncenter size-full wp-image-132" title="halftone-document-settings" src="http://www.designbash.com/wp-content/uploads/2010/01/halftone-document-settings-e1262975128994.png" alt="halftone document settings" width="450" height="210" /></p>
<h2>Step Two &#8211; Black to White Gradient</h2>
<p>Create a new layer and fill it with a <strong>blank-to-white gradient</strong>. Try and make the gradient fairly even across the entire document.</p>
<p><img class="aligncenter size-full wp-image-133" title="black-to-white-gradient" src="http://www.designbash.com/wp-content/uploads/2010/01/black-to-white-gradient-e1262975329729.png" alt="black to white gradient" width="500" height="451" /></p>
<h2>Step Three &#8211; Apply the Halftone Filter</h2>
<p>Select the entire gradient layer and goto <strong>Filter &gt; Pixelate &gt; Color Halftone&#8230; </strong>and fill it in with the settings below.</p>
<p><a href="http://www.designbash.com/wp-content/uploads/2010/01/color-halftone-settings.png"><img class="aligncenter size-full wp-image-134" title="color-halftone-settings" src="http://www.designbash.com/wp-content/uploads/2010/01/color-halftone-settings.png" alt="Color Halftone Settings Photoshop" width="367" height="205" /></a></p>
<h2>Step Four &#8211; Rotate the Halftone Layer</h2>
<p>Next we can rotate the halftone layer by around 45 degrees counter clockwise.</p>
<p><img class="aligncenter size-full wp-image-135" title="rotate-counter-clockwise" src="http://www.designbash.com/wp-content/uploads/2010/01/rotate-counter-clockwise-e1262975744812.png" alt="Halftone Rotate Counter Clockwise" width="500" height="501" /></p>
<h2>Step Five &#8211; Crop it Down</h2>
<p>Next make a selection near the centre of the halftone and crop it &#8211; I ended up cropping a section of ~ 615px by 300px.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-136" title="crop-it" src="http://www.designbash.com/wp-content/uploads/2010/01/crop-it-e1262975997169.jpg" alt="cropped halftone" width="500" height="242" /></p>
<h2>Step Six &#8211; Apply a Pleasing Gradient</h2>
<p>Choose a nice two color gradient (I choose blue). You now have two options. The first is to create a new gradient layer <strong>above</strong> your halftone layer and then <strong>reduce the gradient layer&#8217;s opacity</strong> to a suitable level. Or, the second option is to put a gradient layer <strong>below</strong> the halftone layer, set the halftone layer&#8217;s blending option to &#8220;<strong>Darken</strong>&#8220;, and reduce the <strong>halftone layer&#8217;s opacity</strong> until you find a good level. Either way the effect will be similar!</p>
<p><img class="aligncenter size-full wp-image-137" title="blue-halftone" src="http://www.designbash.com/wp-content/uploads/2010/01/blue-halftone-e1262976537128.jpg" alt="Blue Halftone Example" width="499" height="242" />And there you have it &#8211; a quick and e<strong>asy halftone effect</strong> that you can use to make neat backgrounds!</p>
<p style="text-align: left;"> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.designbash.com/photoshop/halftone-tutorial-photoshop-quickie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Animated GIF &#8211; How to Make a Loading Bar</title>
		<link>http://www.designbash.com/tutorials/animated-gif-how-to-make-a-loading-bar/</link>
		<comments>http://www.designbash.com/tutorials/animated-gif-how-to-make-a-loading-bar/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 18:02:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Animations]]></category>

		<guid isPermaLink="false">http://www.designbash.com/?p=94</guid>
		<description><![CDATA[Todays topic will deal with the wonderfully painful world of animated GIFs. Specifically, how to make animated GIFs inside of Photoshop. For this tutorial I'll be using Photoshop CS3 on a Mac, but I suspect that CS4 probably uses almost the same process. Alright, lets get started!]]></description>
			<content:encoded><![CDATA[<p>Todays topic will deal with the wonderfully painful world of animated GIFs. Specifically, <strong>how to make animated GIFs inside of Photoshop</strong>. For this tutorial I&#8217;ll be using Photoshop CS3 on a Mac, but I suspect that CS4 probably uses almost the same process. Alright, lets get started!<span id="more-94"></span></p>
<p><br class="spacer_" /></p>
<div id="attachment_126" class="wp-caption aligncenter" style="width: 274px"><a href="http://www.designbash.com/wp-content/uploads/2010/01/animated-loading-bar.gif"><img class="size-full wp-image-126" title="animated-loading-bar" src="http://www.designbash.com/wp-content/uploads/2010/01/animated-loading-bar.gif" alt="animated-loading-bar" width="264" height="34" /></a><p class="wp-caption-text">Our Final Product</p></div>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p>First off, I know that it&#8217;s easy to find semi-customizable GIF makers around the web. This being said, I think it&#8217;s important to understand how to make these yourself, as it allows for a degree of customizability that would otherwise be impossible with the online tools such as <a href="http://www.ajaxload.info/" target="_blank">AjaxLoad</a> (a great tool to make little AJAX loaders).</p>
<h3>A Word of Warning</h3>
<p>I love Photoshop with all my heart, but to be honest, creating animated GIFs can be painful and annoying. Things just don&#8217;t work the way you would expect, and if you mess things up bad enough, it means sometimes redoing the entire animation (<em>aka make sure your history settings are set to longer than normal</em>). What makes this worse is that changing small details can be really annoying because it seems like you need to do it across ALL your frames of animation. If anyone out there has any insight into this please let me know and I&#8217;ll update this post. Thanks <img src='http://www.designbash.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<h3>Step One: Create a Nifty Looking Loader Bar</h3>
<p>First we&#8217;ll create a new Photoshop document with the following settings:</p>
<p><img class="aligncenter size-full wp-image-98" title="new-document-animated-loader" src="http://www.designbash.com/wp-content/uploads/2010/01/new-document-animated-loader-e1262893909516.png" alt="Animated Banner Settings" width="400" height="226" /></p>
<p>Next we need to create the background for the loading bar. When creating basic elements I generally try to use <strong>vector shapes</strong> whenever possible. This allows me to scale my work without losing quality and ends up saving me tons of time if I ever need to resize my document. Go ahead and create a vector rectangle shape (<em>U key</em>). Make sure that you&#8217;re making a shape, not a path. Your top toolbar should look like this:</p>
<p><img class="aligncenter size-full wp-image-100" title="vector-shape" src="http://www.designbash.com/wp-content/uploads/2010/01/vector-shape.png" alt="vector toolbar" width="409" height="27" /></p>
<p>Now, using the info panel for precision, make the rectangle shape exactly <strong>260px by 30px </strong>and centre it on in the document. Another thing that&#8217;s nice about vector shapes is how easy it is to change their color. All you need to do is double click the color swatch located on the left side of the layer (in the layer panel). For this example I choose a light grey <strong>#d2d2d2</strong>. Your basic outline should look something like this (<em>click to enlarge</em>):</p>
<p style="text-align: center;">0<a href="http://www.designbash.com/wp-content/uploads/2010/01/create-loader-shape-e1262896351926.png"><img class="aligncenter size-full wp-image-101" title="create-loader-shape" src="http://www.designbash.com/wp-content/uploads/2010/01/create-loader-shape-e1262896351926.png" alt="create loader shape" width="560" height="248" /></a></p>
<p style="text-align: left;">Next up we will add a subtle gradient overlay to give our loader background a little more depth. Make sure that <strong>foreground color is set to white</strong> <strong>(#ffffff)</strong> and double click on the layer  (<em>again, in the layer panel</em>) to pop open the layer styles dialog. In the Gradient Overlay section click on the Gradient dropdown to see all our possible gradients. In this instance we want to have a <strong>white to transparent gradient</strong>, which will probably be your second gradient swatch (<em>you did choose a white foreground, didn&#8217;t you?</em>). We will also be adding a small inner shadow:</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-107" title="background-styles" src="http://www.designbash.com/wp-content/uploads/2010/01/background-styles.png" alt="" width="316" height="521" /></p>
<p style="text-align: left;">If everything is working out, your image should look something like this:</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-108" title="animated-loader-background" src="http://www.designbash.com/wp-content/uploads/2010/01/animated-loader-background.png" alt="" width="400" height="200" /></p>
<p style="text-align: left;">OK, now let&#8217;s make the actual loader. I like the glossy candy-striped look, but you can really choose anything you want. Start by <strong>duplicating the layer we&#8217;ve been working on</strong>, and make sure that it is sitting on top of our background layer. Right-click on the new layer and choose &#8220;<strong>remove layer styles</strong>&#8221; to clear out our old styles and rename the layer to something like &#8220;loading bar.&#8221; I want to have a nice viberent red loading bar, so I choose #ff2f2f as my base color. Now we are going to add some layer styles that will give our loading bar that glossy look. Just like before, make sure that you have pure white selected as your foreground color. We are adding 4 different styles: an<strong> inner shadow</strong>, an <strong>inner glow</strong>, a <strong>gradient overlay</strong>, and a <strong>pattern overlay</strong>. If you want to use the same pattern that I&#8217;m using, I&#8217;ll attach it to this tutorial at the end.</p>
<p style="text-align: left;"><a href="http://www.designbash.com/wp-content/uploads/2010/01/loadingbar-layer-styles.png"><img class="aligncenter size-full wp-image-110" title="loadingbar-layer-styles" src="http://www.designbash.com/wp-content/uploads/2010/01/loadingbar-layer-styles.png" alt="" width="300" height="800" /></a></p>
<p style="text-align: left;">Whew, I know it&#8217;s a lot of styles, but it creates a really nice effect! At this point you should have something that looks kinda like this:</p>
<p style="text-align: left;"><img class="aligncenter size-full wp-image-111" title="loading-style" src="http://www.designbash.com/wp-content/uploads/2010/01/loading-style-e1262901279501.png" alt="loading bar style" width="398" height="197" /></p>
<p style="text-align: left;">Finally, you should reselect the background layer (the grey one) and transform the shape so that it sticks out 1px by on each side. This will give our loader a little border.</p>
<p style="text-align: left;"><img class="aligncenter size-full wp-image-113" title="with-border" src="http://www.designbash.com/wp-content/uploads/2010/01/with-border.png" alt="" width="339" height="95" /></p>
<h3>Step Two &#8211; Animating the GIF in Photoshop</h3>
<p>With our loader in vector format, we can now start the process of animation. There are quite a few ways of doing this and tons of little tricks and tips, but if you&#8217;ve never animated a GIF before I&#8217;ll try and keep this easy (there is probably a faster/more complicated way to do this).</p>
<p>First things first, transform your loading bar until it is only a few pixels wide:</p>
<p><img class="aligncenter size-full wp-image-114" title="only-a-few-px" src="http://www.designbash.com/wp-content/uploads/2010/01/only-a-few-px.png" alt="" width="329" height="85" />Now comes the annoying part. First you need to open up the animation window.</p>
<p><a href="http://www.designbash.com/wp-content/uploads/2010/01/animation-window.png"><img class="aligncenter size-full wp-image-115" title="animation-window" src="http://www.designbash.com/wp-content/uploads/2010/01/animation-window.png" alt="photoshop-animation-window" width="347" height="313" /></a></p>
<p style="text-align: left;">By default, your animation window is probably on the wrong setting (timeline mode) and we want to do this animation frame by frame. Adobe has hidden a huge menu in the animation window, it&#8217;s located in the top right corner, just below the close button. Click on it and select &#8220;<strong>convert to frame animation</strong>&#8220;. If you&#8217;ve done this right your animation window should now look something like this:</p>
<p style="text-align: center;"><a href="http://www.designbash.com/wp-content/uploads/2010/01/frame-animation.png"><img class="aligncenter size-full wp-image-116" title="frame-animation" src="http://www.designbash.com/wp-content/uploads/2010/01/frame-animation.png" alt="" width="397" height="96" /></a></p>
<p style="text-align: left;">Now we need to put in some guides so that we can animate our loading bar with precision. The number of slices you put in will correspond with the smoothness of your loading bar. The more guides you place, the more frames you&#8217;ll need, and the smoother the animation will be. It doesn&#8217;t need to be exact, but try to keep it relatively uniform. Take a look at my example:</p>
<p style="text-align: left;"><img class="aligncenter size-full wp-image-118" title="loader-with-guides" src="http://www.designbash.com/wp-content/uploads/2010/01/loader-with-guides.png" alt="loader with guides" width="323" height="75" /></p>
<p style="text-align: left;">With our guides in place we can start the actual animation process. In the animation panel you can add new frames by clicking the new frame button (<em>bottom of the animation window, just left of the trash icon</em>). While clicked on the second frame, duplicate the loading bar, and horizontally transform it &#8211; moving the right side up by one &#8220;notch.&#8221;</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-119" title="first-increment" src="http://www.designbash.com/wp-content/uploads/2010/01/first-increment-e1262971859944.png" alt="" width="500" height="190" /></p>
<p style="text-align: left;">Photoshop allows you to hide and show layers within the animation timeline, and that&#8217;s really the magic that will make our loading bar move. Click back on the first frame of animation and hide the duplicated layer we just created. Now when you click between the first and second frame, you should see the loading bar get bigger and smaller. It&#8217;s good practice to name your layers after their corresponding frames, so the first (smallest) loading bar layer should  be named &#8220;1st&#8221;.</p>
<p style="text-align: left;"><img class="aligncenter size-full wp-image-123" title="more-increments" src="http://www.designbash.com/wp-content/uploads/2010/01/more-increments-e1262972279493.png" alt="" width="500" height="200" /></p>
<p style="text-align: left;">Hopefully you&#8217;re getting the idea by now. Go ahead and finishing incrementing the loader until you&#8217;ve filled up the entire thing. It can be hassle to do all the frames, and you&#8217;ll find that Photoshop can be a little annoying. What seemed to work for me was to <strong>1. add new frame, 2. hide the current loader step, 3. duplicate the hidden loader step, 4. unhide and transform the duplicated loader step</strong>&#8230; <em>repeat, repeat, repeat&#8230; (If you do it in this order you won&#8217;t need to go back and re-hide the duplicated loader step in each animation frame). </em>My animation took a total of 26 frames, yikes!</p>
<p style="text-align: left;"><img class="aligncenter size-full wp-image-124" title="26 frames" src="http://www.designbash.com/wp-content/uploads/2010/01/26-frames-e1262973170777.png" alt="" width="450" height="572" /></p>
<p style="text-align: left;">You can tweak the timing in the animation window &#8211; in my project each frame is set to take 0.07 seconds:</p>
<p style="text-align: left;"><img class="aligncenter size-full wp-image-125" title="07-seconds" src="http://www.designbash.com/wp-content/uploads/2010/01/07-seconds.png" alt="" width="470" height="125" /></p>
<p style="text-align: left;">When you&#8217;re ready to export make sure you save it as a GIF and the animation should work just fine. The finished product looks quite nice: <em>(for this example I&#8217;ve set the gif to automatically repeat, although you probably only want it to play once)</em></p>
<p style="text-align: left;"><em><a href="http://www.designbash.com/wp-content/uploads/2010/01/animated-loading-bar.gif"><img class="aligncenter size-full wp-image-126" title="animated-loading-bar" src="http://www.designbash.com/wp-content/uploads/2010/01/animated-loading-bar.gif" alt="animated-loading-bar" width="264" height="34" /></a><br />
 </em></p>
<p>So thats it! As I mentioned before, there is probably a much easier and efficient method of doing this, but for simple animations this technique will work fine.</p>
<p>Feel free to <strong><a href="http://www.designbash.com/wp-content/uploads/2010/01/animated-loader.psd">download the source PSD</a></strong> and have a look for yourself!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.designbash.com/tutorials/animated-gif-how-to-make-a-loading-bar/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>CSS Link Style &#8211; A Quick Look</title>
		<link>http://www.designbash.com/inspiration/css-link-style-a-quick-look/</link>
		<comments>http://www.designbash.com/inspiration/css-link-style-a-quick-look/#comments</comments>
		<pubDate>Wed, 06 Jan 2010 02:42:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[Beginner]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Polls]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.designbash.com/?p=55</guid>
		<description><![CDATA[Without links the internet would be nothing. It's quite literally the fabric that holds the net together. So I thought I would write this quick post with the idea of looking at some various link styles.]]></description>
			<content:encoded><![CDATA[<p>Without links the internet would be nothing. It&#8217;s quite literally the fabric that holds the net together. So I thought I would write this quick post with the idea of looking at some various <strong>link styles</strong>. I often find myself looking to others for inspiration, especially when it comes to link styling. For some reason I&#8217;ve always had a hard time coming up with different styles and I always seem to end up with a really boring look. So here are some various link styles that I&#8217;ve found scattered around the internet&#8230;</p>
<p><span id="more-55"></span></p>
<h3><a href="http://www.smashingmagazine.com/" target="_blank">Smashing Magazine</a> Footer Links</h3>
<div id="attachment_56" class="wp-caption aligncenter" style="width: 564px"><a href="http://www.smashingmagazine.com/"><img class="size-full wp-image-56 " title="smashing-magazine-link-style" src="http://www.designbash.com/wp-content/uploads/2010/01/smashing-magazine-link-style.png" alt="Smashing Magazine Link Style" width="554" height="177" /></a><p class="wp-caption-text">Taken from the footer of Smashing Magazine</p></div>
<p><a href="http://www.smashingmagazine.com/">Smashing Magazine&#8217;s current site</a> (<em>Jan 2010</em>) has some really classic links located in the footer. They are clean, subdued, and are missing their text-decoration (<em>the underline</em>).</p>
<h3><a href="http://www.nettuts.com" target="_blank">Nettuts</a> and the Block Link</h3>
<p><a href="http://www.nettuts.com"><img class="alignleft size-full wp-image-59" title="nettuts-block-links" src="http://www.designbash.com/wp-content/uploads/2010/01/nettuts-block-links.png" alt="Nettuts Block Links" width="188" height="124" /></a> Looking at another footer, we can see an example of some stylish block links. I initially did not enjoy these links, but for some reason they&#8217;ve really grown on me over the last few months. I&#8217;ve even come to enjoy how they are all different widths, something that I would have hated in my earlier days.</p>
<div style="clear: both;">&nbsp;</div>
<h3>The <a href="http://www.happycog.com">Happy Cog</a> Header</h3>
<p style="text-align: center;"><a href="http://www.happycog.com"><img class="aligncenter size-full wp-image-62" title="happy-cog-link-style" src="http://www.designbash.com/wp-content/uploads/2010/01/happy-cog-link-style.png" alt="Header Links Styles" width="466" height="101" /></a></p>
<p style="text-align: left;">One of my favorite sites, so I couldn&#8217;t leave them out. <a href="http://www.happycog.com" target="_blank">Happy Cog</a> uses the traditional underlined link in their main navigation, with a block link hover effect. While it seems that underlines have become less popular lately, I think they provide users with instant recognizable links.</p>
<h3 style="text-align: left;"><a href="http://www.alistapart.com" target="_blank">A List Apart</a> General Links</h3>
<p style="text-align: left;"><a href="http://www.alistapart.com"><img class="aligncenter size-full wp-image-69" title="a-list-apart-links" src="http://www.designbash.com/wp-content/uploads/2010/01/a-list-apart-links.png" alt="List Apart Links" width="506" height="139" /></a></p>
<p style="text-align: left;">I wanted to throw this in here because I really enjoy the hover effect on <a href="http://www.alistapart.com" target="_blank">A List Apart</a>. They use a background color AND an underline.</p>
<p style="text-align: left;">Anyways, I&#8217;ll be adding to this list as I find more interesting links. I know it&#8217;s a little trivial, but things like this are the bread and butter of a well crafted site. In the meantime, answer this scientific poll:</p>
<p style="text-align: left;">[poll id="2"]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.designbash.com/inspiration/css-link-style-a-quick-look/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Mail HTML Email</title>
		<link>http://www.designbash.com/html-email/how-to-mail-html-email/</link>
		<comments>http://www.designbash.com/html-email/how-to-mail-html-email/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 21:34:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML Email]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Beginner]]></category>
		<category><![CDATA[Email]]></category>

		<guid isPermaLink="false">http://www.designbash.com/?p=46</guid>
		<description><![CDATA[If you're anything like me, you may have wondered how to send HTML emails without using a fancy service like Campaign Monitor or Mail Chimp. The truth is, it's actually much easier than you probably think. There are just a few steps you need to follow.]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re anything like me, you may have wondered how to <strong>mail HTML emails</strong> without using a fancy service like <a href="http://www.campaignmonitor.com/" target="_blank"><strong>Campaign Monitor</strong></a> or <a href="http://www.mailchimp.com/" target="_blank"><strong>Mail Chimp</strong></a>. The truth is, it&#8217;s actually much easier than you probably think. There are just a few steps you need to follow.</p>
<p><span id="more-46"></span></p>
<h3>Step 1 &#8211; Get Thunderbird</h3>
<p style="text-align: center;"><a href="http://www.mozillamessaging.com"><img class="aligncenter size-full wp-image-47" title="get-thunderbird-email" src="http://www.designbash.com/wp-content/uploads/2010/01/get-thunderbird.png" alt="get-thunderbird-email" width="405" height="214" /></a></p>
<p>For this example I&#8217;ll be using <a href="http://www.mozillamessaging.com" target="_blank"><strong>Thunderbird</strong></a>, a great open-source mail client put together by the same people who bring you <a href="http://www.mozilla.com/firefox/" target="_blank"><strong>Firefox</strong></a>. I&#8217;m sure you can use other mail clients to <strong>mail HTML email</strong>, but I really enjoy Thunderbird so that&#8217;s what I&#8217;ve decided to use. You&#8217;ll need to get everything setup before you can actually send any HTML email, but that&#8217;s really outside the scope of this quick walkthrough.</p>
<h3>Step 2 &#8211; Craft Your HTML Email</h3>
<p>The next step is to craft your HTML email. This is definitely the hardest part and I would highly recommend looking through tutorial before trying anything too fancy. <a href="http://articles.sitepoint.com/article/code-html-email-newsletters" target="_blank">Sitepoint has a nice little article</a> on the subject, or if you&#8217;re feeling lazy you can grab a pre-fab <a href="http://www.campaignmonitor.com/templates/">HTML email template from Campaign Monitor</a>.</p>
<h3>Step 3 &#8211; Upload Images to a Public Area</h3>
<p>If you&#8217;re using any images in your HTML email, <strong>you&#8217;ll need to find a place to host them onlin</strong>e. If you fail to do this, all your images will show up broken. Ideally you&#8217;ll want to use your own hosting, but if you need a quick fix you can probably use a service like <a href="http://imgur.com/" target="_blank"><strong>imgur</strong></a> to temporarily host them for you. Once your images are all online, make sure to change all the image paths in your HTML email. <strong>The image path needs to be absolute, which means you need to put in the full URL </strong>(<em>ie. http://www.yoursite.com/email-images/your-image.jpg</em>).</p>
<h3>Step 4 &#8211; Use Thunderbird to Mail the HTML Email</h3>
<p>Create a new message just like you normally would, but leave everything blank to start. From the top menu click <strong>Insert / HTML </strong>then paste in your HTML email. (<em>click the images to see screenshots</em>)</p>
<p><br class="spacer_" /></p>
<div id="attachment_48" class="wp-caption aligncenter" style="width: 265px"><a href="http://www.designbash.com/wp-content/uploads/2010/01/create-new-message.jpg"><img class="size-medium wp-image-48" title="create-new-message" src="http://www.designbash.com/wp-content/uploads/2010/01/create-new-message-255x300.jpg" alt="create-new-email" width="255" height="300" /></a><p class="wp-caption-text">Create a Blank Message</p></div>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<div id="attachment_49" class="wp-caption aligncenter" style="width: 310px"><a style="text-decoration: none;" href="http://www.designbash.com/wp-content/uploads/2010/01/click-insert-html.jpg"><img class="size-medium wp-image-49" title="click-insert-html" src="http://www.designbash.com/wp-content/uploads/2010/01/click-insert-html-300x132.jpg" alt="mail-html-email" width="300" height="132" /></a><p class="wp-caption-text">Click Insert / HTML</p></div>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<div id="attachment_50" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.designbash.com/wp-content/uploads/2010/01/insert-html-email.jpg"><img class="size-medium wp-image-50" title="insert-html-email" src="http://www.designbash.com/wp-content/uploads/2010/01/insert-html-email-300x125.jpg" alt="insert-html-into-email-thunderbird" width="300" height="125" /></a><p class="wp-caption-text">Paste in Your HTML Email</p></div>
<p><br class="spacer_" /></p>
<h3>And thats it! Start sending your HTML emails!</h3>
]]></content:encoded>
			<wfw:commentRss>http://www.designbash.com/html-email/how-to-mail-html-email/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

