<?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>freeyourdesign</title>
	<atom:link href="http://freeyourdesign.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://freeyourdesign.com</link>
	<description>break free by learning</description>
	<lastBuildDate>Wed, 06 Oct 2010 19:32:24 +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>jQuery Tip &#8211; A Quick look at .click()</title>
		<link>http://freeyourdesign.com/jquery/jquery-tip-a-quick-look-at-click/</link>
		<comments>http://freeyourdesign.com/jquery/jquery-tip-a-quick-look-at-click/#comments</comments>
		<pubDate>Thu, 22 Apr 2010 16:24:55 +0000</pubDate>
		<dc:creator>fyd</dc:creator>
				<category><![CDATA[jquery]]></category>
		<category><![CDATA[jquery events]]></category>

		<guid isPermaLink="false">http://freeyourdesign.com/?p=56</guid>
		<description><![CDATA[Here is a quick jQuery tutorial, or tip, focusing on the .click() event. We will create a simple example that lets the user click on a couple of options to manipulate a box of text below. Because this is just a quick tip on .click() I won't get into the other methods we are invoking [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a quick jQuery tutorial, or tip, focusing on the .click() event. We will create a simple example that lets the user click on a couple of options to manipulate a box of text below. Because this is just a quick tip on .click() I won't get into the other methods we are invoking on the click event. You can browse around the jQuery documentation to find out more &#8211; or better yet sign up for the rss feed here at freeyourdesign and come back for more jQuery tutorials. Anyway we will be changing the content boxes background color and making and slide up and down.<span id="more-56"></span></p>
<p><strong>Don't forget to include the jQuery library</strong></p>
<p>You'll need to include the jQuery library in the <head> of your html document in order for this tutorial to work correctly. The easiest way, and some say the best, is to grab the url for the jQuery files hosted by Google. You can use the call below:</p>
<div class="codesnip-container" >
<div class="html4strict codesnip" style="font-family:monospace;"><span class="sc2">&lt;<a href="http://december.com/html/4/element/script.html"><span class="kw2">script</span></a> <span class="kw3">type</span><span class="sy0">=</span><span class="st0">&quot;text/javascript&quot;</span> <span class="kw3">src</span><span class="sy0">=</span><span class="st0">&quot;http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js&quot;</span>&gt;&lt;<span class="sy0">/</span><a href="http://december.com/html/4/element/script.html"><span class="kw2">script</span></a>&gt;</span></div>
</div>
<p><strong>A little bit of CSS</strong><br />
Make it look a little less plain.</p>
<div class="codesnip-container" >
<div class="html4strict codesnip" style="font-family:monospace;"><span class="sc2">&lt;<a href="http://december.com/html/4/element/style.html"><span class="kw2">style</span></a> <span class="kw3">type</span><span class="sy0">=</span><span class="st0">&quot;text/css&quot;</span>&gt;</span><br />
a{color: #fff; text-decoration: none;}</p>
<p>#box1<br />
{<br />
&nbsp; &nbsp; &nbsp; &nbsp; width: 400px;<br />
&nbsp; &nbsp; &nbsp; &nbsp; border: 1px solid #000;<br />
&nbsp; &nbsp; &nbsp; &nbsp; padding: 10px;<br />
}<br />
#list1<br />
{<br />
&nbsp; &nbsp; &nbsp; &nbsp; margin: 0;<br />
&nbsp; &nbsp; &nbsp; &nbsp; padding: 5px;<br />
}<br />
#list1 li<br />
{<br />
&nbsp; &nbsp; &nbsp; &nbsp; display: inline;<br />
&nbsp; &nbsp; &nbsp; &nbsp; margin-right: 10px;<br />
&nbsp; &nbsp; &nbsp; &nbsp; background: #2c2721;<br />
&nbsp; &nbsp; &nbsp; &nbsp; padding: 5px;<br />
}</p>
<p><span class="sc2">&lt;<span class="sy0">/</span><a href="http://december.com/html/4/element/style.html"><span class="kw2">style</span></a>&gt;</span></div>
</div>
<p><strong>Build a Box</strong></p>
<p>Next, we will throw together some HTML really quick to manipulate using jQuery. Nothing fancy here &#8211; a couple list items, a div and some paragraph content. (I'm using generic id and class names for this example &#8211; when coding you should try to use descriptive id and class names)</p>
<div class="codesnip-container" >
<div class="html4strict codesnip" style="font-family:monospace;"><span class="sc2">&lt;<a href="http://december.com/html/4/element/ul.html"><span class="kw2">ul</span></a> <span class="kw3">id</span><span class="sy0">=</span><span class="st0">&quot;list1&quot;</span>&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="sc2">&lt;<a href="http://december.com/html/4/element/li.html"><span class="kw2">li</span></a> <span class="kw3">id</span><span class="sy0">=</span><span class="st0">&quot;color&quot;</span>&gt;&lt;<a href="http://december.com/html/4/element/a.html"><span class="kw2">a</span></a> <span class="kw3">href</span><span class="sy0">=</span><span class="st0">&quot;#&quot;</span>&gt;</span>Change Color<span class="sc2">&lt;<span class="sy0">/</span><a href="http://december.com/html/4/element/a.html"><span class="kw2">a</span></a>&gt;&lt;<span class="sy0">/</span><a href="http://december.com/html/4/element/li.html"><span class="kw2">li</span></a>&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="sc2">&lt;<a href="http://december.com/html/4/element/li.html"><span class="kw2">li</span></a> <span class="kw3">id</span><span class="sy0">=</span><span class="st0">&quot;slide&quot;</span>&gt;&lt;<a href="http://december.com/html/4/element/a.html"><span class="kw2">a</span></a> <span class="kw3">href</span><span class="sy0">=</span><span class="st0">&quot;#&quot;</span>&gt;</span>Slide<span class="sc2">&lt;<span class="sy0">/</span><a href="http://december.com/html/4/element/a.html"><span class="kw2">a</span></a>&gt;&lt;<span class="sy0">/</span><a href="http://december.com/html/4/element/li.html"><span class="kw2">li</span></a>&gt;</span><br />
<span class="sc2">&lt;<span class="sy0">/</span><a href="http://december.com/html/4/element/ul.html"><span class="kw2">ul</span></a>&gt;</span><br />
<span class="sc2">&lt;<a href="http://december.com/html/4/element/div.html"><span class="kw2">div</span></a> <span class="kw3">id</span><span class="sy0">=</span><span class="st0">&quot;box1&quot;</span>&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="sc2">&lt;<a href="http://december.com/html/4/element/p.html"><span class="kw2">p</span></a> <span class="kw3">id</span><span class="sy0">=</span><span class="st0">&quot;text1&quot;</span>&gt;</span>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Nam eu nulla. Donec lobortis purus vel urna. Nunc laoreet lacinia nunc. In volutpat sodales ipsum. Sed vestibulum. Integer in ante. Sed posuere ligula rhoncus erat. Fusce urna dui, sollicitudin ac, pulvinar quis, tincidunt et, risus. Quisque a nunc eget nibh interdum fringilla. Fusce dapibus odio in est. Nunc egestas mauris ac leo. Nullam orci.<span class="sc2">&lt;<span class="sy0">/</span><a href="http://december.com/html/4/element/p.html"><span class="kw2">p</span></a>&gt;</span><br />
<span class="sc2">&lt;<span class="sy0">/</span><a href="http://december.com/html/4/element/div.html"><span class="kw2">div</span></a>&gt;</span></div>
</div>
<p><strong>Finally some jQuery</strong></p>
<p>Start off with a couple of script tags &#8211; just like JavaScript. In between the script tags the jQuery code starts with a document ready call.</p>
<div class="codesnip-container" >
<div class="html4strict codesnip" style="font-family:monospace;"><span class="sc2">&lt;<a href="http://december.com/html/4/element/script.html"><span class="kw2">script</span></a> <span class="kw3">type</span><span class="sy0">=</span><span class="st0">&quot;text/javascript&quot;</span>&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; $(document).ready(function() {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; });<br />
<span class="sc2">&lt;<span class="sy0">/</span><a href="http://december.com/html/4/element/script.html"><span class="kw2">script</span></a>&gt;</span></div>
</div>
<p><strong>jQuery Click and Change Background Color</strong><br />
We want the click event to happen on the list items we created &#8211; Change Color and Slide. First lets make the background color of the content box change.</p>
<p>We use jQuery to call the .click() event on the list item for Change Color which is &lt;li id="#color"&gt; &#8211; let's grab that element by it's ID name and add the .click() method to it:</p>
<div class="codesnip-container" >
<div class="html4strict codesnip" style="font-family:monospace;">$('#color').click(function() {<br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
});</div>
</div>
<p>The function() {} inside the .click() event is going to tell jQuery what we want to do once the ID is clicked. So, let's add some CSS to the ID and give it a background color:</p>
<div class="codesnip-container" >
<div class="html4strict codesnip" style="font-family:monospace;">$('#list1 #color').click(function() {<br />
&nbsp; &nbsp; &nbsp; &nbsp; $('#box1').css(&quot;background&quot;,&quot;#9f9&quot;);<br />
});</div>
</div>
<p>Simple &#8211; try it out &#8211; click on Change Color and the content box background should change to a greenish color.</p>
<p><strong>jQuery Click Toggle Slide Up and Slide Down</strong><br />
We are going to use the same .click() method on the other list item we created &#8211; &lt;li id="slide"&gt;.</p>
<div class="codesnip-container" >
<div class="html4strict codesnip" style="font-family:monospace;">$('#slide').click(function() {</p>
<p>});</p></div>
</div>
<p>Now to make it slide up and then slide down using the jQuery slideToggle method on the box.</p>
<div class="codesnip-container" >
<div class="html4strict codesnip" style="font-family:monospace;">$('#slide').click(function() {<br />
&nbsp; &nbsp; &nbsp; &nbsp; $(&quot;#box1&quot;).slideToggle(&quot;slow&quot;);<br />
});</div>
</div>
<p>There you have it &#8211; a couple of quick and easy examples of the jQuery .click() method. See how easy jQuery just made it to create a cool little item that slides up to 'disappear' and the slide back down 'into view'.</p>
<p><a href="http://freeyourdesign.com/images/jquery/jqueryclick.html" target="_blank">See the Results</a><br />
Here is all the code put together:</p>
<div class="codesnip-container" >
<div class="html4strict codesnip" style="font-family:monospace;"><span class="sc2">&lt;<a href="http://december.com/html/4/element/html.html"><span class="kw2">html</span></a>&gt;</span></p>
<p><span class="sc2">&lt;<a href="http://december.com/html/4/element/head.html"><span class="kw2">head</span></a>&gt;</span></p>
<p><span class="sc2">&lt;<a href="http://december.com/html/4/element/title.html"><span class="kw2">title</span></a>&gt;&lt;<span class="sy0">/</span><a href="http://december.com/html/4/element/title.html"><span class="kw2">title</span></a>&gt;</span><br />
<span class="sc2">&lt;<a href="http://december.com/html/4/element/script.html"><span class="kw2">script</span></a> <span class="kw3">type</span><span class="sy0">=</span><span class="st0">&quot;text/javascript&quot;</span> <span class="kw3">src</span><span class="sy0">=</span><span class="st0">&quot;http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js&quot;</span>&gt;&lt;<span class="sy0">/</span><a href="http://december.com/html/4/element/script.html"><span class="kw2">script</span></a>&gt;</span></p>
<p><span class="sc2">&lt;<a href="http://december.com/html/4/element/script.html"><span class="kw2">script</span></a> <span class="kw3">type</span><span class="sy0">=</span><span class="st0">&quot;text/javascript&quot;</span>&gt;</span><br />
$(document).ready(function() {<br />
&nbsp; &nbsp; &nbsp; &nbsp; $('#color').click(function() {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $('#box1').css(&quot;background&quot;,&quot;#9f9&quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp; });<br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; $('#slide').click(function() {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $(&quot;#box1&quot;).slideToggle(&quot;slow&quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; });</p>
<p>});<br />
<span class="sc2">&lt;<span class="sy0">/</span><a href="http://december.com/html/4/element/script.html"><span class="kw2">script</span></a>&gt;</span></p>
<p><span class="sc2">&lt;<a href="http://december.com/html/4/element/style.html"><span class="kw2">style</span></a> <span class="kw3">type</span><span class="sy0">=</span><span class="st0">&quot;text/css&quot;</span>&gt;</span><br />
a{color: #fff; text-decoration: none;}</p>
<p>#box1<br />
{<br />
&nbsp; &nbsp; &nbsp; &nbsp; width: 400px;<br />
&nbsp; &nbsp; &nbsp; &nbsp; border: 1px solid #000;<br />
&nbsp; &nbsp; &nbsp; &nbsp; padding: 10px;<br />
}<br />
#list1<br />
{<br />
&nbsp; &nbsp; &nbsp; &nbsp; margin: 0;<br />
&nbsp; &nbsp; &nbsp; &nbsp; padding: 5px;<br />
}<br />
#list1 li<br />
{<br />
&nbsp; &nbsp; &nbsp; &nbsp; display: inline;<br />
&nbsp; &nbsp; &nbsp; &nbsp; margin-right: 10px;<br />
&nbsp; &nbsp; &nbsp; &nbsp; background: #2c2721;<br />
&nbsp; &nbsp; &nbsp; &nbsp; padding: 5px;<br />
}</p>
<p><span class="sc2">&lt;<span class="sy0">/</span><a href="http://december.com/html/4/element/style.html"><span class="kw2">style</span></a>&gt;</span><br />
<span class="sc2">&lt;<span class="sy0">/</span><a href="http://december.com/html/4/element/head.html"><span class="kw2">head</span></a>&gt;</span></p>
<p><span class="sc2">&lt;<a href="http://december.com/html/4/element/body.html"><span class="kw2">body</span></a>&gt;</span></p>
<p><span class="sc2">&lt;<a href="http://december.com/html/4/element/ul.html"><span class="kw2">ul</span></a> <span class="kw3">id</span><span class="sy0">=</span><span class="st0">&quot;list1&quot;</span>&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="sc2">&lt;<a href="http://december.com/html/4/element/li.html"><span class="kw2">li</span></a> <span class="kw3">id</span><span class="sy0">=</span><span class="st0">&quot;color&quot;</span>&gt;&lt;<a href="http://december.com/html/4/element/a.html"><span class="kw2">a</span></a> <span class="kw3">href</span><span class="sy0">=</span><span class="st0">&quot;#&quot;</span>&gt;</span>Change Color<span class="sc2">&lt;<span class="sy0">/</span><a href="http://december.com/html/4/element/a.html"><span class="kw2">a</span></a>&gt;&lt;<span class="sy0">/</span><a href="http://december.com/html/4/element/li.html"><span class="kw2">li</span></a>&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="sc2">&lt;<a href="http://december.com/html/4/element/li.html"><span class="kw2">li</span></a> <span class="kw3">id</span><span class="sy0">=</span><span class="st0">&quot;slide&quot;</span>&gt;&lt;<a href="http://december.com/html/4/element/a.html"><span class="kw2">a</span></a> <span class="kw3">href</span><span class="sy0">=</span><span class="st0">&quot;#&quot;</span>&gt;</span>Slide<span class="sc2">&lt;<span class="sy0">/</span><a href="http://december.com/html/4/element/a.html"><span class="kw2">a</span></a>&gt;&lt;<span class="sy0">/</span><a href="http://december.com/html/4/element/li.html"><span class="kw2">li</span></a>&gt;</span><br />
<span class="sc2">&lt;<span class="sy0">/</span><a href="http://december.com/html/4/element/ul.html"><span class="kw2">ul</span></a>&gt;</span><br />
<span class="sc2">&lt;<a href="http://december.com/html/4/element/div.html"><span class="kw2">div</span></a> <span class="kw3">id</span><span class="sy0">=</span><span class="st0">&quot;box1&quot;</span>&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="sc2">&lt;<a href="http://december.com/html/4/element/p.html"><span class="kw2">p</span></a> <span class="kw3">id</span><span class="sy0">=</span><span class="st0">&quot;text1&quot;</span>&gt;</span>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Nam eu nulla. Donec lobortis purus vel urna. Nunc laoreet lacinia nunc. In volutpat sodales ipsum. Sed vestibulum. Integer in ante. Sed posuere ligula rhoncus erat. Fusce urna dui, sollicitudin ac, pulvinar quis, tincidunt et, risus. Quisque a nunc eget nibh interdum fringilla. Fusce dapibus odio in est. Nunc egestas mauris ac leo. Nullam orci.<span class="sc2">&lt;<span class="sy0">/</span><a href="http://december.com/html/4/element/p.html"><span class="kw2">p</span></a>&gt;</span><br />
<span class="sc2">&lt;<span class="sy0">/</span><a href="http://december.com/html/4/element/div.html"><span class="kw2">div</span></a>&gt;</span></p>
<p><span class="sc2">&lt;<span class="sy0">/</span><a href="http://december.com/html/4/element/body.html"><span class="kw2">body</span></a>&gt;</span></p>
<p><span class="sc2">&lt;<span class="sy0">/</span><a href="http://december.com/html/4/element/html.html"><span class="kw2">html</span></a>&gt;</span></div>
</div>
<img src="http://freeyourdesign.com/?ak_action=api_record_view&id=56&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://freeyourdesign.com/jquery/jquery-tip-a-quick-look-at-click/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Two Classes for one Item</title>
		<link>http://freeyourdesign.com/css/css-two-classes-for-one-item/</link>
		<comments>http://freeyourdesign.com/css/css-two-classes-for-one-item/#comments</comments>
		<pubDate>Tue, 14 Apr 2009 20:20:03 +0000</pubDate>
		<dc:creator>fyd</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[css tip]]></category>
		<category><![CDATA[html]]></category>

		<guid isPermaLink="false">http://freeyourdesign.com/?p=55</guid>
		<description><![CDATA[Using Two Classes on one item in CSS. Here's a quick CSS Tip you can use if you need to style an item with two(or more) classes. Sometime you might need to make something stand out a little more than the rest of the elements using the same CSS Class. You could throw a span [...]]]></description>
			<content:encoded><![CDATA[<p>
<img style="border:none;" class="left" src="http://freeyourdesign.com/images/cssbadge.gif" alt="css tips and tricks" />Using Two Classes on one item in CSS.</p>
<p>Here's a quick CSS Tip you can use if you need to style an item with two(or more) classes.</p>
<p>Sometime you might need to make something stand out a little more than the rest of the elements using the same CSS Class. You could throw a span tag around it or you can uses a second CSS Class. This way if you need to use this style again you aren't constantly having to type out the whole span tag.</p>
<p>It's actually pretty simple&#8230;<br />
The HTML</p>
<pre>&lt;div class="one two"&gt;This text has TWO classes.&lt;/div&gt;</pre>
<p>The CSS<br />
.one<br />
{<br />
color: #ff0000;<br />
}<br />
.two<br />
{<br />
font-size: 1.5em;<br />
}</p>
<p>and here is the result:</p>
<div class="one two">This text has TWO classes.</div>
<p>A simple but very useful CSS Tip.</p>
<img src="http://freeyourdesign.com/?ak_action=api_record_view&id=55&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://freeyourdesign.com/css/css-two-classes-for-one-item/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Few GIMP Tutorials</title>
		<link>http://freeyourdesign.com/resources/a-few-gimp-tutorials/</link>
		<comments>http://freeyourdesign.com/resources/a-few-gimp-tutorials/#comments</comments>
		<pubDate>Wed, 07 May 2008 11:35:46 +0000</pubDate>
		<dc:creator>fyd</dc:creator>
				<category><![CDATA[resources]]></category>
		<category><![CDATA[gimp]]></category>

		<guid isPermaLink="false">http://freeyourdesign.com/?p=54</guid>
		<description><![CDATA[Don't want to spend all that money on Photoshop? There is a free alternative, GIMP, or GNU Image Manipulation Program. A good alternative with a lot of support and plenty of tutorials to help you learn GIMP. Here is a list of a few GIMP Tutorials. Most of the sites these GIMP tutorials are on [...]]]></description>
			<content:encoded><![CDATA[<p>Don't want to spend all that money on <a href="http://freeyourdesign.com/tag/photoshop/">Photoshop</a>? There is a free alternative, <a href="http://www.gimp.org/">GIMP</a>, or GNU Image Manipulation Program. A good alternative with a lot of support and plenty of tutorials to help you learn GIMP. Here is a list of a few GIMP Tutorials. Most of the sites these GIMP tutorials are on have many other tutorials. These should be enough to get you started though.</p>
<p><strong>GIMP Tutorial &#8211; The User Interface</strong><br />
<a href="http://www.youtube.com/watch?v=8aR3o7rYdx0"><img src="http://freeyourdesign.com/img/gimp/userint.gif" alt="gimp tutorial" /></a></p>
<p><span id="more-54"></span></p>
<p><strong>GIMPLite Quickies</strong><br />
<a href="http://www.gimp.org/tutorials/Lite_Quickies/"><img src="http://freeyourdesign.com/img/gimp/intro.gif" alt="gimp tutorial" /></a></p>
<p><strong>Important GIMP hotkeys</strong><br />
<a href="http://www.gimpusers.com/gimp-hotkeys.php"><img src="http://freeyourdesign.com/img/gimp/hotkeys.gif" alt="gimp tutorial" /></a></p>
<p><strong>Transparent Glass Lettering</strong><br />
<a href="http://gimpology.com/submission/view/transparent_glass_lettering/"><img src="http://freeyourdesign.com/img/gimp/glass.gif" alt="gimp tutorial" /></a></p>
<p><strong>Glow Effect</strong><br />
<a href="http://gimp-tutorials.net/node/123"><img src="http://freeyourdesign.com/img/gimp/glow.gif" alt="gimp tutorial" /></a></p>
<p><strong>How to Create a Gradient Background Image in GIMP</strong><br />
<a href="http://www.earn-web-cash.com/2008/01/24/how-to-create-a-gradient-background-image-in-gimp/"><img src="http://freeyourdesign.com/img/gimp/gradient.gif" alt="gimp tutorial" /></a></p>
<p><strong>Making a Web 2.0 Logo in GIMP</strong><br />
<a href="http://tysonc.net/tutorials/making-a-web-20-logo-in-gimp/"><img src="http://freeyourdesign.com/img/gimp/logo2.gif" alt="gimp tutorial" /></a></p>
<p><strong>Make a Gimp pattern from scratch</strong><br />
<a href="http://gimp-tutorials.net/gimp-pattern"><img src="http://freeyourdesign.com/img/gimp/pattern.gif" alt="gimp tutorial" /></a></p>
<p><strong>Quickmask Tutorial</strong><br />
<a href="http://www.gimp.org/tutorials/Quickmask/"><img src="http://freeyourdesign.com/img/gimp/qm.gif" alt="gimp tutorial" /></a></p>
<p><strong>How To Create Your Own Website Design Using Gimp</strong><br />
<a href="http://gimp-tutorials.net/websitetutorial"><img src="http://freeyourdesign.com/img/gimp/site.gif" alt="gimp tutorial" /></a></p>
<p><strong>BG Tutorial 1: Caution tape</strong><br />
<a href="http://antichange.deviantart.com/art/BG-Tutorial-1-Caution-tape-84384896"><img src="http://freeyourdesign.com/img/gimp/stripes.gif" alt="gimp tutorial" /></a></p>
<p><strong>Vista Button</strong><br />
<a href="http://gimp-tutorials.net/gimp-vista-button"><img src="http://freeyourdesign.com/img/gimp/vista_btn.gif" alt="gimp tutorial" /></a></p>
<p><strong>30 Ultimate Web 2.0 Layer Styles for Gimp</strong><br />
<a href="http://gimp-tutorials.net/30-Ultimate-Web-20+Layer-Styles-for+-Gimp"><img src="http://freeyourdesign.com/img/gimp/styles.gif" alt="gimp tutorial" /></a></p>
<img src="http://freeyourdesign.com/?ak_action=api_record_view&id=54&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://freeyourdesign.com/resources/a-few-gimp-tutorials/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>What&#039;s Good on the Web</title>
		<link>http://freeyourdesign.com/whats-good/whats-good-on-the-web/</link>
		<comments>http://freeyourdesign.com/whats-good/whats-good-on-the-web/#comments</comments>
		<pubDate>Sat, 03 May 2008 15:06:40 +0000</pubDate>
		<dc:creator>fyd</dc:creator>
				<category><![CDATA[whats good]]></category>
		<category><![CDATA[inspiration]]></category>

		<guid isPermaLink="false">http://freeyourdesign.com/?p=53</guid>
		<description><![CDATA[It's the weekend! Here are a few web design and graphic design related posts I stumbled upon (not from StumbleUpon just regular browsing) over the week. 45 Photo Editing Tutorials for Photoshop &#8211; A great list of tutorials to help you learn about photo editing in Photoshop. Designflavr &#8211; I just found this site and [...]]]></description>
			<content:encoded><![CDATA[<p>It's the weekend! Here are a few web design and graphic design related posts I stumbled upon (not from StumbleUpon just regular browsing) over the week.</p>
<p><a href="http://vandelaydesign.com/blog/design/photo-editing-tutorials/trackback/"><strong>45 Photo Editing Tutorials for Photoshop</strong></a> &#8211; A great list of tutorials to help you learn about photo editing in Photoshop.</p>
<p><a href="http://www.designflavr.com/"><strong>Designflavr</strong></a> &#8211; I just found this site and I really enjoy it. "DesignFlavr is a breed of website that hopes to deliver the latest and freshest art and design straight to you with no frills and no hassle. The concept behind this website is to help support the vast and ever growing number of Designers and Artists that reside here on the World Wide Web."</p>
<p><a href="http://www.css-warfare.com/"><strong>css-warfare</strong></a> &#8211; Another inspiration site with a lot of good CSS designs.</p>
<p><a href="http://www.bittbox.com/rants/25-more-reasons-you-might-be-a-hardcore-graphicweb-designer/"><strong>25 MORE Reasons You Might Be A Hardcore Graphic/Web Designer</strong></a> &#8211; A list of reasons you might be a hardcore graphic or web designer over at bittbox. The <a href="http://www.bittbox.com/rants/25-reasons-you-might-be-a-hardcore-graphicweb-designer/">first list</a> is also available.</p>
<img src="http://freeyourdesign.com/?ak_action=api_record_view&id=53&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://freeyourdesign.com/whats-good/whats-good-on-the-web/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Inspirational Band Gig Posters</title>
		<link>http://freeyourdesign.com/inspiration/inspirational-band-gig-posters/</link>
		<comments>http://freeyourdesign.com/inspiration/inspirational-band-gig-posters/#comments</comments>
		<pubDate>Fri, 02 May 2008 11:42:45 +0000</pubDate>
		<dc:creator>fyd</dc:creator>
				<category><![CDATA[inspiration]]></category>

		<guid isPermaLink="false">http://freeyourdesign.com/?p=52</guid>
		<description><![CDATA[Here are ten band gig, or show, posters. Old or new gig posters can always be used as inspiration. They usually have some great typography elements, nice use of colors, and interesting imagery. I never really thought about looking at gig posters for inspiration until a recent trip to Nashville, Tennessee. There were posters everywhere [...]]]></description>
			<content:encoded><![CDATA[<p>Here are ten band gig, or show, posters. Old or new gig posters can always be used as inspiration. They usually have some great typography elements, nice use of colors, and interesting imagery. I never really thought about looking at gig posters for inspiration until a recent trip to Nashville, Tennessee. There were posters everywhere down there. Hatch Show Print posters are found all over in Nashville. I'm only showing ten posters, but there are literally thousands of gig posters out there. Some of these are <a href="http://www.countrymusichalloffame.com/site/experience-hatch.aspx">Hatch Show Print</a> and some are ones I found at <a href="http://www.gigposters.com/index.php">GigPosters.com</a> or <a href="http://www.gigart.com/">GIGART.com</a>.</p>
<p><a href="http://www.ryman.com/HatchGallery.html"><img src="http://freeyourdesign.com/img/gigs/JohnMayerTrio.jpg" alt="gig poster" /></a></p>
<p><span id="more-52"></span></p>
<p><a href="http://www.gigposters.com/poster/57941_Creedence_Clearwater_Revival.html"><img src="http://freeyourdesign.com/img/gigs/57941.jpg" alt="gig poster" /></a></p>
<p><a href="http://www.gigposters.com/poster/67989_Who.html"><img src="http://freeyourdesign.com/img/gigs/67989.jpg" alt="gig poster" /></a></p>
<p><a href="http://www.gigposters.com/poster/72723_Who.html"><img src="http://freeyourdesign.com/img/gigs/72723.jpg" alt="gig poster" /></a></p>
<p><a href="http://www.gigposters.com/poster/95102_Steve_Miller_Band.html"><img src="http://freeyourdesign.com/img/gigs/95102.jpg" alt="gig poster" /></a></p>
<p><a href="http://www.ryman.com/HatchGallery.html"><img src="http://freeyourdesign.com/img/gigs/BlackCrowes.jpg" alt="gig poster" /></a></p>
<p><a href="http://www.ryman.com/HatchGallery.html"><img src="http://freeyourdesign.com/img/gigs/Hiatt-Cray.jpg" alt="gig poster" /></a></p>
<p><a href="http://www.gigart.com/2005/2005.grid.htm#"><img src="http://freeyourdesign.com/img/gigs/moodybzoom.jpg" alt="gig poster" /></a></p>
<p><a href="http://www.ryman.com/HatchGallery.html"><img src="http://freeyourdesign.com/img/gigs/SteveWinwood_2004.jpg" alt="gig poster" /></a></p>
<p><a href="http://www.ryman.com/HatchGallery.html"><img src="http://freeyourdesign.com/img/gigs/TreyAnastasio.jpg" alt="gig poster" /></a></p>
<img src="http://freeyourdesign.com/?ak_action=api_record_view&id=52&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://freeyourdesign.com/inspiration/inspirational-band-gig-posters/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Global Reset Styles</title>
		<link>http://freeyourdesign.com/css/css-global-reset-styles/</link>
		<comments>http://freeyourdesign.com/css/css-global-reset-styles/#comments</comments>
		<pubDate>Wed, 30 Apr 2008 11:33:36 +0000</pubDate>
		<dc:creator>fyd</dc:creator>
				<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://freeyourdesign.com/?p=51</guid>
		<description><![CDATA[For me, one of the best parts of running this blog is that I am always learning something new. Doing research for new posts and finding new resources and sites helps me expand my knowledge and pass it on to the readers. With all the CSS I have written and learned, I never really knew [...]]]></description>
			<content:encoded><![CDATA[<p>For me, one of the best parts of running this blog is that I am always learning something new. Doing research for new posts and finding new resources and sites helps me expand my knowledge and pass it on to the readers. With all the CSS I have written and learned, I never really knew about global resets. I have seen them before in other peoples code, but didn't pay much attention to them.</p>
<p>I recently came across a great article over at perishablepress.com that explains what they are used for and gives a long list of different types of resets. I have unknowingly used resets before when setting padding and margin to 0 for different elements and then adjusting it to my liking.</p>
<p>It's important to design sites with cross-browser compatibility in mind. With the different ways that browsers handle CSS and the fact that each browser has it's own default setup for things like margins and padding, adding these global resets can really help the design process. I plan on implementing some of these resets in future design projects.</p>
<p>Here is an example of a CSS reset. To find a lot more check out this <a href="http://perishablepress.com/press/2007/10/23/a-killer-collection-of-global-css-reset-styles/">Killer Collection of Global Reset Styles</a>.</p>
<pre>
* {
     padding: 0;
     margin: 0;
}
</pre>
<p>The <strong>*</strong> is called a wildcard symbol. Here it is used as a wildcard selector which means that these properties are applied to every element. So, all the padding and margins are <strong>reset</strong> to <strong>0</strong>.</p>
<p>You can add other properties to the wildcard selector. Some people will add <strong>border: 0;</strong> and <strong>outline: 0;</strong>. The above, with padding: 0; and margin: 0;, is one of the most popular CSS resets used.</p>
<p>The post at <a href="http://perishablepress.com/press/2007/10/23/a-killer-collection-of-global-css-reset-styles/">perishablepress</a> is worth a read, and they have a lot more reset options.</p>
<img src="http://freeyourdesign.com/?ak_action=api_record_view&id=51&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://freeyourdesign.com/css/css-global-reset-styles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Tip &#8211; Using Link Anchor Pseudo Classes</title>
		<link>http://freeyourdesign.com/css/css-tip-using-link-anchor-pseudo-classes/</link>
		<comments>http://freeyourdesign.com/css/css-tip-using-link-anchor-pseudo-classes/#comments</comments>
		<pubDate>Mon, 28 Apr 2008 13:32:35 +0000</pubDate>
		<dc:creator>fyd</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://freeyourdesign.com/?p=48</guid>
		<description><![CDATA[Let's take a look at styling anchor tags, or links, using CSS. We will be going over the CSS pseudo-classes that are used with links &#8211; link, visited, hover, and active. First, let's take a look at the link pseudo-class in CSS. :link &#8211; this pseudo-class is used to style a normal unvisited link. When [...]]]></description>
			<content:encoded><![CDATA[<p>Let's take a look at styling anchor tags, or links, using CSS. We will be going over the CSS pseudo-classes that are used with links &#8211; link, visited, hover, and active. First, let's take a look at the link pseudo-class in CSS.</p>
<p><strong>:link</strong> &#8211; this pseudo-class is used to style a normal unvisited link. When you are styling links you should put this pseudo-class first.</p>
<pre>a:link
{
color: #339966;
}</pre>
<p>Notice that we use the HTML tag, or selector, <strong>a</strong> because that is how a link is represented in HTML. The <strong>:link</strong> represents the pseudo-class. Then you set your properties between the curly braces. This CSS will change all the unvisited links to a green color.</p>
<p><strong>:visited</strong> &#8211; this pseudo-class is used to style a visited link. When you are styling links you should put this pseudo-class second.</p>
<pre>a:visited
{
color: #00ffff;
}</pre>
<p>You will see that most sites will set the visited link color to the same color as the normal a:link color.</p>
<p><strong>:hover</strong> &#8211; this pseudo-class is used to style the mouse over effect of a link. When you are styling links you <strong>MUST</strong> put this after a:link and a:visited.</p>
<pre>a:hover
{
color: #FF0000;
}</pre>
<p><strong>:active</strong> &#8211; this pseudo-class is used to style an activated link element. When you are styling links you <strong>MUST</strong> put this after a:hover.</p>
<pre>a:active
{
color: #FF00FF;
}</pre>
<p>This effect is seen while clicking the link. You will find the a lot of sites will style a:hover and a:active the same.</p>
<p>Putting it together in the HTML.</p>
<pre>&lt;html&gt;
&lt;head&gt;

&lt;title&gt;<span class="text">Link and pseudo-classes</span>&lt;/title&gt;

&lt;<span class="text">!-- Embedded Styles --</span>&gt;
&lt;style type="text/css"&gt;
a:link
{
color: #339966;
}

a:visited
{
color: #00FFFF;
}

a:hover
{
color: #FF0000;
}

a:active
{
color: #FF00FF;
}

&lt;/style&gt;

&lt;/head&gt;

&lt;body&gt;
&lt;p&gt;
&lt;a href="#"&gt;A Link&lt;/a&gt; <span class="text">Lorem ipsum dolor sit amet,
consectetuer adipiscing elit, sed</span> &lt;a href="#"&gt;diam nonummy
nibh&lt;/a&gt; <span class="text">euismod tincidunt ut laoreet dolore magna aliquam
erat volutpat.</span>
&lt;/p&gt;</pre>
<p><a class="pc" href="#">A Link</a> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed <a class="pc" href="#2">diam nonummy nibh</a> euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>
<p>You can see how the styles effect the links. You can also combine these anchor CSS pseudo-classes with regular CSS classes. This can help you style links differently throughout the page.</p>
<pre>a.className:link, a.className:visited
{
color: #ff0000;
text-decoration: none;
}

a.className:hover, a.className:active
{
color: #00ff00;
text-decoration: underline;
}</pre>
<p>The above CSS shows you how to add a class name to the pseudo-classes and how to style multiple elements at the same time. <strong>className</strong> can be whatever you want to name your class. You can put the :link and :visited pseudo-classes together by adding a comma between declarations. The HTML would look like this:</p>
<pre>&lt;p&gt;
&lt;a class="className" href="#"&gt;A Link&lt;/a&gt; <span class="text">Lorem ipsum
dolor sit amet, consectetuer adipiscing elit,
sed</span> &lt;a class="className" href="#"&gt;diam nonummy nibh&lt;/a&gt; <span class="text">
euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</span>
&lt;/p&gt;</pre>
<p>All you need to do is add <strong>class="className"</strong> to the anchor tag.</p>
<p>
<a class="className" href="#">A Link</a> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed <a class="className" href="#">diam nonummy nibh</a> euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.
</p>
<p>Styling links using CSS is easy &#8211; just remember to put the pseudo-classes in the correct order &#8211; :link, :visited, :hover, :active.</p>
<p><a href="img/pseudo/linkpseudo.html" target="_blank" >The HTML</a></p>
<img src="http://freeyourdesign.com/?ak_action=api_record_view&id=48&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://freeyourdesign.com/css/css-tip-using-link-anchor-pseudo-classes/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>CSS Tip &#8211; Different Color Borders</title>
		<link>http://freeyourdesign.com/css/css-tip-different-color-borders/</link>
		<comments>http://freeyourdesign.com/css/css-tip-different-color-borders/#comments</comments>
		<pubDate>Fri, 25 Apr 2008 11:50:45 +0000</pubDate>
		<dc:creator>fyd</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://freeyourdesign.com/?p=47</guid>
		<description><![CDATA[A quick CSS tip. Don't want your css border to have the same color for every side. Well, you can make each side have a different color &#8211; it's easy. .exampleBox { width: 100px; height: 100px; border: 3px solid #000000; border-color: #ff00ff #00ff00 #0000ff #00ffff; } Some text in the box Let's take a closer [...]]]></description>
			<content:encoded><![CDATA[<p>A quick <a href="http://freeyourdesign.com/tag/css/">CSS</a> tip. Don't want your css border to have the same color for every side. Well, you can make each side have a different color &#8211; it's easy.</p>
<pre>.exampleBox
{
width: 100px;
height: 100px;
border: 3px solid #000000;
border-color: #ff00ff #00ff00 #0000ff #00ffff;
}</pre>
<p style="margin-left: 60px; width:100px; height: 100px; border: 3px solid #000; border-color:#ff00ff #00ff00 #0000ff #00ffff;">Some text in the box</p>
<p>Let's take a closer look at the css border properties. We start off by creating a <strong>border:</strong> that has a 3px 'stroke' that is solid and the color black. The next property we use is <strong>border-color:</strong>. The format here is TOP, RIGHT, BOTTOM, LEFT &#8211; or clockwise around the square starting from the top. Even though we set a color in the <strong>border:</strong> property, we put <strong>border-color</strong> below it which gives it precedence &#8211; or it 'overwrites' the border's color.</p>
<p>Need the HTML &#8211; I used an <a href="http://freeyourdesign.com/the-basics/the-basics-learning-css-where-styles-go/">embedded stylesheet</a> here, but this will work the same in an <a href="http://freeyourdesign.com/the-basics/the-basics-learning-css-where-styles-go/">external stylesheet</a>.</p>
<pre>&lt;html&gt;
&lt;head&gt;
&lt;title&gt;<span class="text">CSS Different Colored Border</span>&lt;/title&gt;

&lt;style type="text/css"&gt;
.exampleBox
{
width: 100px;
height: 100px;
border: 3px solid #000;
border-color: #ff00ff #00ff00 #0000ff #00ffff;
}
&lt;/style&gt;
&lt;/head&gt;

&lt;body&gt;

&lt;div class="box"&gt;
&lt;p&gt;
<span class="text">Some text in the the box</span>
&lt;/p&gt;
&lt;/div&gt;

&lt;/body&gt;
&lt;/html&gt;</pre>
<img src="http://freeyourdesign.com/?ak_action=api_record_view&id=47&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://freeyourdesign.com/css/css-tip-different-color-borders/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Design Code Rap SEO Rapper</title>
		<link>http://freeyourdesign.com/resources/web-design-code-rap-seo-rapper/</link>
		<comments>http://freeyourdesign.com/resources/web-design-code-rap-seo-rapper/#comments</comments>
		<pubDate>Wed, 23 Apr 2008 11:40:00 +0000</pubDate>
		<dc:creator>fyd</dc:creator>
				<category><![CDATA[resources]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://freeyourdesign.com/?p=46</guid>
		<description><![CDATA[If you haven't seen these rap videos by Poetic Prophet, aka SEO Rapper, you've gotta watch, or at least listen, to them. This guy is actually rapping about web design and search engine optimization, and they are full of good information. All the lyrics are posted on YouTube, just click (More info) on the right [...]]]></description>
			<content:encoded><![CDATA[<p>If you haven't seen these rap videos by Poetic Prophet, aka SEO Rapper, you've gotta watch, or at least listen, to them. This guy is actually rapping about web design and search engine optimization, and they are full of good information. All the lyrics are posted on YouTube, just click <strong>(More info)</strong> on the right just below the users info &#8211; in case you can't keep up with what he is saying.</p>
<p><object type="application/x-shockwave-flash" data="http://www.youtube.com/v/a0qMe7Z3EYg&amp;hl=en" width="425" height="355"><param name="movie" value="http://www.youtube.com/v/a0qMe7Z3EYg&amp;hl=en" /></object></p>
<p>He has a few other videos&#8230;<br />
<a href="http://www.youtube.com/watch?v=qC3UNewnA5g" target="_blank">Link Building 101 Rap</a><br />
<a href="http://www.youtube.com/watch?v=c96LTLlaXew&amp;feature=related" target="_blank">Paid Search 101 Rap</a><br />
<a href="http://www.youtube.com/watch?v=mwAjur3_08Y&amp;feature=related" target="_blank">Social Media Addiction Rap</a><br />
<a href="http://www.youtube.com/watch?v=5NObvDpQe7k" target="_blank">Conversion Closing Rap</a><br />
Worth a watch and you might actually learn something.</p>
<img src="http://freeyourdesign.com/?ak_action=api_record_view&id=46&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://freeyourdesign.com/resources/web-design-code-rap-seo-rapper/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Photoshop Tutorial &#8211; Using Textures</title>
		<link>http://freeyourdesign.com/photoshop/photoshop-tutorial-using-textures/</link>
		<comments>http://freeyourdesign.com/photoshop/photoshop-tutorial-using-textures/#comments</comments>
		<pubDate>Mon, 21 Apr 2008 12:26:58 +0000</pubDate>
		<dc:creator>fyd</dc:creator>
				<category><![CDATA[photoshop]]></category>
		<category><![CDATA[photoshop-tutorial]]></category>
		<category><![CDATA[textures]]></category>

		<guid isPermaLink="false">http://freeyourdesign.com/?p=45</guid>
		<description><![CDATA[Adding textures to your work in Photoshop can really add a sense of detail. Depending on the textures and how you use them, they can help make a piece look more realistic, or grungy, or even cartoonish. They can really define a Photoshop piece. So, let's learn how to bring a texture image into Photoshop [...]]]></description>
			<content:encoded><![CDATA[<p>Adding textures to your work in Photoshop can really add a sense of detail. Depending on the textures and how you use them, they can help make a piece look more realistic, or grungy, or even cartoonish. They can really define a Photoshop piece. So, let's learn how to bring a texture image into Photoshop and use it to help our artwork look better.<br />
<span id="more-45"></span></p>
<p>First of all you need a few files &#8211; if you have your own textures that's great. I am using a couple of concrete textures. We also need some sort of object to add the texture to. I'm just going to use an RSS icon, but feel free to try other things, like text.<br />
<a href="http://www.flickr.com/photos/hargism/2425107831/" title="ccp by hargism, on Flickr"><img src="http://farm3.static.flickr.com/2400/2425107831_cc6e6e8a71_b.jpg" width="200" height="150" alt="ccp" /></a> <a href="http://www.flickr.com/photos/hargism/2425107357/" title="cc1 by hargism, on Flickr"><img src="http://farm3.static.flickr.com/2278/2425107357_ce18bfd878_b.jpg" width="200" height="150" alt="cc1" /></a> <a href="http://freeyourdesign.com/img/texture/feed.png"><img src="img/texture/feed.png" alt="feed icon" /></a></p>
<h3>The Background</h3>
<p>Open a <strong>new</strong> file. I made mine <strong>800px X 600px</strong>. The size doesn't matter that much.</p>
<p>Fill the <strong>Background</strong> layer with a color. I think darker colors look better with the concrete textures we will be using. My color <strong>#2c2721</strong>.</p>
<p>Create a <strong>new layer</strong> and name it <strong>light spot</strong>.</p>
<p>Grab the <strong>Gradient Tool</strong>. Make it a <strong>Radial Gradient</strong> and pick a very light gray and a medium gray as your background and foreground colors. <strong>Foreground #e1e1e1</strong> <strong>Background #898989</strong><br />
Drag from the <strong>center </strong>of the image almost to the <strong>top</strong>.<br />
<img src="http://freeyourdesign.com/img/texture/gradient.gif" alt="radial gradient" /></p>
<p>Set the <strong>Blending Mode</strong> for the layer to <strong>Overlay</strong><img src="http://freeyourdesign.com/img/texture/overlay.gif" alt="overlay" /><br />
This gives us a spotlight look.<br />
<img src="http://freeyourdesign.com/img/texture/overbg.gif" alt="overlay background" /></p>
<h3>Texture the Background</h3>
<p>Now, we will add a texture to the Background layer. I will be using the second concrete texture from above.</p>
<p>Go to <strong>File->Place&#8230;</strong> and browse to where you saved the second concrete texture from above. Select it and click <strong>Place</strong>.</p>
<p>The image will come in ready to be resized or moved around. <strong>Resize </strong>it to cover the whole image/background and hit <strong>Enter</strong>.</p>
<p><strong>Rename </strong>the layer that was created to <strong>bg texture</strong>.</p>
<p><strong>Right-click</strong> the <strong>bg texture layer</strong> and select <strong>Rasterize Layer</strong>.<br />
<img src="http://freeyourdesign.com/img/texture/bgtext1.gif" alt="bg texture" /></p>
<p>I have found that changing the Layer Blending mode to Multiply works best for texturing. Feel free to experiment with other Blending Modes. Like Overlay, Soft Light, and Hard Light.</p>
<p>Change the <strong>bg texture's Layer Blending mode to Multiply</strong> and adjust the <strong>opacity</strong> to about <strong>50%</strong>.<br />
<img src="http://freeyourdesign.com/img/texture/bgmulty.gif" alt="bg texture" /><br />
What we've got so far.<br />
<img src="http://freeyourdesign.com/img/texture/bgtext2.gif" alt="bg texture" /></p>
<h3>The Icon</h3>
<p>Next, we will bring in our next item to texturize. I'll be using the RSS icon from above. If you are using text, you don't need to bring anything in &#8211; just type out your text.</p>
<p>Go to <strong>File->Place&#8230;</strong> and navigate to where you saved your RSS icon. Select it and click <strong>Place</strong>.</p>
<p>Resize the image if you need to and hit <strong>Enter</strong>. <strong>Rename </strong>the layer <strong>icon</strong> and <strong>right-click</strong> the layer and select <strong>Rasterize Layer</strong>.<br />
<img src="http://freeyourdesign.com/img/texture/icon1.gif" alt="rss icon" /></p>
<p><strong>Double-click</strong> the <strong>icon layer</strong> to change its <strong>Layer Styles</strong>. Add a <strong>Drop Shadow</strong> and change the <strong>Angle to 90</strong>.<br />
<img src="http://freeyourdesign.com/img/texture/dropshadow.gif" alt="drop shadow" /></p>
<p>Next, <strong>right-click</strong> the icon layer and go to <strong>Duplicate Layer&#8230;</strong> rename it <strong>reflection</strong> and hit OK.</p>
<p>Drag that layer below the icon layer. <strong>Double-click</strong> the <strong>reflection layer</strong> to change its Layer Styles and <strong>remove </strong>the check by <strong>Drop Shadow</strong>.<br />
<img src="http://freeyourdesign.com/img/texture/reflectlayer.gif" alt="layer pallet" /></p>
<p>With the reflection layer selected. Go to <strong>Edit->Transform->Flip Vertically</strong>.</p>
<p>Select the Move tool (keyboard shortcut 'v'), hold down the shift key, and drag the reflection down below the other icon.<br />
<img src="http://freeyourdesign.com/img/texture/reflect.gif" alt="reflection" /></p>
<p>Now we will add a Layer Mask to make the reflection fade out.</p>
<p>Still on the reflection layer, click the <strong>Add Layer Mask</strong> icon at the bottom of the layers pallet.<br />
<img src="http://freeyourdesign.com/img/texture/maskico.gif" alt="mask icon" /></p>
<p>Grab the <strong>Gradient</strong> tool &#8211; Foreground color #626262 Background color #000000.<br />
Start your drag at the <strong>top</strong> to the reflected icon and drag to the <strong>bottom</strong> of it.<br />
<img src="http://freeyourdesign.com/img/texture/mask.gif" alt="mask" /></p>
<p>Create a <strong>new layer</strong> and name it <strong>shadow</strong>.</p>
<p>Grab the <strong>brush tool</strong>(keyboard shortcut 'b') and set the color to black, size to about 65, and Hardness to 0%.<br />
<img src="http://freeyourdesign.com/img/texture/brush.gif" alt="brush" /></p>
<p>Brush just underneath the main icon. Set the shadow layer's <strong>Opacity</strong> to about <strong>35%</strong>.<br />
<img src="http://freeyourdesign.com/img/texture/shadow.gif" alt="shadow" /></p>
<p><img src="http://freeyourdesign.com/img/texture/shadow2.gif" alt="shadow" /></p>
<p>&nbsp;</p>
<h3>Finally &#8211; Texture the Icon</h3>
<p>Now, we can add a texture to the icon. I will be using the first concrete texture from above.</p>
<p>With the icon layer selected, go to <strong>File->Place&#8230;</strong> and browse to where you saved the first concrete texture, select it and click <strong>Place</strong>.</p>
<p>Resize the texture if you need to, I just left it the size it came in at &#8211; we will get rid of the extra later &#8211; hit <strong>enter</strong>.</p>
<p><strong>Rename </strong>the layer <strong>icon texture</strong> and <strong>right-click</strong> the layer and select <strong>Rasterize Layer</strong>.</p>
<p>Change the icon texture layer's <strong>Blending Mode to Multiply</strong> and set the <strong>Opacity </strong>to about <strong>50%</strong>.<br />
<img src="http://freeyourdesign.com/img/texture/icomult.gif" alt="blending mode" /></p>
<p>With the icon texture layer selected, hold down the <strong>ctrl</strong> key and <strong>left-click</strong> on the icon layer's thumbnail to make it our selection.<br />
<img src="http://freeyourdesign.com/img/texture/selection.gif" alt="selection" /></p>
<p>Now, hit <strong>ctrl+shift+i</strong> to invert the selection or go to Select->Inverse.</p>
<p>Make sure the icon texture layer is still selected and hit the <strong>delete </strong>key on your keyboard. This will get rid of the extra texture image we just brought in.</p>
<p>And there you go &#8211; the finished product.<br />
<a href="http://freeyourdesign.com/img/texture/bigdone.gif" target="_blank"><img src="http://freeyourdesign.com/img/texture/done.gif" alt="textured rss icon" /><br />
Click to Enlarge</a></p>
<p style="text-align: center"><a href="http://freeyourdesign.com/img/texture/rss_texture.zip"><img src="http://freeyourdesign.com/images/dload.gif" alt="download" style="border: medium none " /></a><br />
Download Files</p>
<img src="http://freeyourdesign.com/?ak_action=api_record_view&id=45&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://freeyourdesign.com/photoshop/photoshop-tutorial-using-textures/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
