<?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 &#187; tutorials</title>
	<atom:link href="http://freeyourdesign.com/tag/tutorials/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>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>CSS Custom Search Field or Textfield</title>
		<link>http://freeyourdesign.com/css/css-custom-search-field-or-textfield/</link>
		<comments>http://freeyourdesign.com/css/css-custom-search-field-or-textfield/#comments</comments>
		<pubDate>Thu, 10 Apr 2008 11:47:42 +0000</pubDate>
		<dc:creator>fyd</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://freeyourdesign.com/?p=41</guid>
		<description><![CDATA[Tired of those normal old text field boxes? Well, we are going to create our own custom text field. You can use it on a form or for your search field on your blog. We will start out by simply using CSS to customize the color of the text field's background and border. It's simple, [...]]]></description>
			<content:encoded><![CDATA[<p>Tired of those normal old text field boxes? Well, we are going to create our own custom text field. You can use it on a form or for your search field on your blog. We will start out by simply using CSS to customize the color of the text field's background and border. It's simple, but it can make a big difference and help your search field or form fit in with the design of your site.<br />
<span id="more-41"></span></p>
<h3>Simple Text Field Styling with CSS</h3>
<p>We will start with the HTML. Setup you basic shell for a HTML file and add the <strong>form</strong> and <strong>input</strong> tags in between the body tags.</p>
<pre>&lt;html&gt;
&lt;head&gt;

&lt;title&gt;<span class="text">CSS Custom Text Field</span>&lt;/title&gt;

&lt;link href="<span class="text">style.css</span>" type="<span class="text">text/css</span>" rel="<span class="text">stylesheet</span>" /&gt;

&lt;/head&gt;

&lt;body&gt;
&lt;form&gt;
&lt;input type="<span class="text">text</span>" name="<span class="text">field</span>" class="<span class="text">textInput</span>" /&gt;
&lt;/form&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>
<p>Notice that in the <strong>input</strong> tag we are using a <strong>type</strong> of <strong>field</strong> &#8211; which creates a text field. The name can be whatever you would like. Then we add <strong>class="textInput"</strong>. This connects us to the class <strong>.textInput</strong> in our <strong>CSS file</strong>. The name of the class can be whatever you want.</p>
<p>Now for the CSS.</p>
<pre><span class="text">/* CSS Document */</span>
.textInput
{
border: 1px solid #ff0000;
background: #555555;
color: #ffffff;
font-size: 1.1em;
}</pre>
<p><strong>border</strong> &#8211; used to change the style of the border around the text field. Here I changed it to a red color. You can use border to change the thickness, border style (like dashed or dotted), and the color.</p>
<p><strong>background</strong> &#8211; changes the background color of the text field (we will use an image later). The default background is white.</p>
<p><strong>color</strong> &#8211; changes the color of the font. The default is black. I changed it to white.</p>
<p><strong>font-size</strong> &#8211; changes the size of the font which will increase/decrease the size of the text field.</p>
<p>Obviously, you can use other properties to customize the text field. These are some of the more commonly used.</p>
<p><a href="http://freeyourdesign.com/images/csstf/ti.html" target="blank" >The HTML</a><br />
<a href="http://freeyourdesign.com/images/csstf/style.css" target="blank" >The CSS</a></p>
<form>
<input class="textInput1" name="field" type="text" />
</form>
<p></p>
<h3>CSS with Image Text Field Customization</h3>
<p>For even more customization you can add a background image behind the text field. We need to add a <strong>div</strong> and <strong>class</strong> around the <strong>input</strong> tag in the HTML.</p>
<pre>&lt;form&gt;
&lt;div class="<span class="text">fieldHolder</span>"&gt;
&lt;input type="<span class="text">text</span>" name="<span class="text">field</span>" class="<span class="text">textInput</span>" /&gt;
&lt;/div&gt;
&lt;/form&gt;</pre>
<p>This new class <strong>fieldHolder</strong> will hold the text field and the background image we want to use. We will also be changing up <strong>textInput</strong>.</p>
<pre>
.fieldHolder
{
	width: 182px;
	height: 27px;
	background: url(tfbg2.gif) no-repeat;
	float: left;
}

.textInput2
{
	width: 170px;
	height: 22px;
	background: none;
	border: none;
	color: #000000;
	margin-top: 5px;
	margin-left: 5px;
}
</pre>
<p>First off, here is the image I am using &#8211; it needs to be saved to the same folder as you HTML and CSS file.<br />
<img src="http://freeyourdesign.com/images/csstf/tfbg2.gif" alt="bg" style="border:none;" /><br />
(right-click save as/save image as)</p>
<p>Back to the CSS.<br />
<strong>.fieldHolder</strong><br />
<strong>width</strong> &#8211; this is the width of the image we are using.<br />
<strong>height</strong> &#8211; this is the height of the image we are using.<br />
<strong>background</strong> &#8211; linking to the background image and no-repeat.<br />
<strong>float</strong> &#8211; left, this is optional. It is needed if you want to line up forms side by side (if you do this you might need to add margin-right to space out the fields).</p>
<p><strong>.textInput</strong> &#8211; styles for the text field<br />
<strong>width</strong> &#8211; width of our text field.<br />
<strong>height</strong> &#8211; height of our text field.<br />
<strong>background</strong> &#8211; no background &#8211; we want to use the .fileHolder background.<br />
<strong>border</strong> &#8211; no border.<br />
<strong>color</strong> &#8211; color of our font/text.<br />
<strong>margin-top</strong> &#8211; this is important and deals with getting the cursor to show up inside the 'text field' area in our background image. Because we just made an image we need to tell the cursor were to go. This could be different depending on the image you use.<br />
<strong>margin-left</strong> &#8211; same as above &#8211; only position the cursor left or right.</p>
<p><a href="http://freeyourdesign.com/images/csstf/ti.html" target="blank" >The HTML</a><br />
<a href="http://freeyourdesign.com/images/csstf/style.css" target="blank" >The CSS</a></p>
<form>
<div class="fieldHolder2">
<input type="text" name="field" class="textInput2" />
	</div>
</form>
<p>The good thing about encasing the text field inside of fieldHolder is that you can adjust the position of the text field by changing the margins inside of fieldHolder and not have to worry about the cursor position. Once it is set within .textInput you shouldn't have to mess with it.</p>
<p>You can pretty much use whatever background image you can come up with. You will just have to adjust the <strong>margin-top</strong> and <strong>margin-left</strong> inside of the <strong>.textInput</strong> class to position the cursor correctly.</p>
<form>
<div class="fieldHolder3">
<input type="text" name="field" class="textInput3" />
	</div>
</form>
<img src="http://freeyourdesign.com/?ak_action=api_record_view&id=41&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://freeyourdesign.com/css/css-custom-search-field-or-textfield/feed/</wfw:commentRss>
		<slash:comments>38</slash:comments>
		</item>
		<item>
		<title>CSS Gradient Background Fade</title>
		<link>http://freeyourdesign.com/css/css-gradient-background-fade/</link>
		<comments>http://freeyourdesign.com/css/css-gradient-background-fade/#comments</comments>
		<pubDate>Wed, 02 Apr 2008 11:41:22 +0000</pubDate>
		<dc:creator>fyd</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://freeyourdesign.com/?p=36</guid>
		<description><![CDATA[A quick and simple way to use a gradient background for you web site. Make the gradient look like it is fading out with no weird lines &#8211; just smoothness. It's really quite easy to do using CSS to edit the body property of the HTML document. We will start off with the HTML. So, [...]]]></description>
			<content:encoded><![CDATA[<p>A quick and simple way to use a gradient background for you web site. Make the gradient look like it is fading out with no weird lines &#8211; just smoothness. It's really quite easy to do using CSS to edit the body property of the HTML document.</p>
<p>We will start off with the HTML. So, open a new document &#8211; I'll be saving mine as fade.html. Get the basic HTML shell written out and go ahead and add a link to a stylesheet &#8211; style.css. Now here is how we will layout the page for presentation purposes.</p>
<pre>&lt;html&gt;
&lt;head&gt;
&lt;title&gt;<span class="text">Gradient Background Fade</span>&lt;/title&gt;
<span class="text">link to stylesheet</span>
&lt;link href="style.css" rel="stylesheet" type="text/css" media="all" /&gt;
&lt;/head&gt;

&lt;body&gt;
&lt;div id="main"&gt;<span class="text"> main container</span>
&lt;p&gt;<span class="text">Place holder text</span>&lt;/p&gt;

&lt;div id="leftSide"&gt;<span class="text">left demonstration </span>
&lt;/div&gt;

&lt;div id="rightSide"&gt; <span class="text"> right demonstration </span>
&lt;h1&gt;<span class="text">Right Section</span>&lt;/h1&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>
<p><span style="font-size: 0.7em">Note: if you copy and paste this you need to take out the 'main container', 'left demonstration', 'right demonstration' text &#8211; they are not to be in the code they are just comments I made.</span></p>
<p>Just a quick layout to show a couple uses of the gradient fade. Before we get to the CSS we need to make(or get) an image for the background. You can use Photoshop to create a simple gradient</p>
<p>In Photoshop create a new file &#8211; I'll make mine 10px wide by 400px high.<br />
Pick the colors you want to use for your gradient &#8211; Take note of whatever the bottom color of the gradient is &#8211; we will need it later. If you double click on the color in the Tools pallet you can copy the hexadecimal number (# followed by six digits). Fill your file with the gradient and save it. Or right-click and save the images I used.<br />
<img src="http://freeyourdesign.com/images/fade/img/bg3.gif" alt="gradient" /> <img src="http://freeyourdesign.com/images/fade/img/bg.gif" alt="gradient" /> <img src="http://freeyourdesign.com/images/fade/img/rightbg.gif" alt="gradient" /></p>
<p>Now to the CSS</p>
<pre>body
{
<span class="text">/*the color here #2c2721 was the bottom color
of my gradient image - a seamless fade*/</span>
background: #2c2721 url(img/bg3.gif) repeat-x;
}

<span class="text">/*just a container to hold things*/</span>
#main
{
	margin: auto;
	width: 700px;
	height: 600px;
	background: #ffffff;
}

#main p
{
	padding: 10px;
}

<span class="text">/*the area to the right with a gradient fade*/</span>
#rightSide
{
	float: right;
	margin-right: 10px;
	height: 500px;
	width: 200px;
        <span class="text">/*#ffffff is the bottom color in gradient*/</span>
	background: #ffffff url(img/rightbg.gif) repeat-x;
}

#rightSide h1
{
	color: #fff;
	margin-left: 5px;
}

<span class="text">/*left area with fade example*/</span>
#leftSide
{
	float: left;
	height: 500px;
	width: 200px;
        <span class="text">/*#ffffff is bottom color in gradient*/</span>
	background: #ffffff url(img/bg.gif) repeat-x;
	margin-left: 10px;
}
</pre>
<p>All the extra CSS is just formatting to show the examples. The <strong>background:</strong> is the property we need to worry about to make the gradient fade work. Use <strong>repeat-x</strong> to make it show up all the way across the page, but not repeat down the page.</p>
<p><a href="http://freeyourdesign.com/images/fade/fade.html" target="blank">The HTML</a><br />
<a href="http://freeyourdesign.com/images/fade/style.css" target="blank">The CSS</a></p>
<p style="text-align: center"><a href="http://freeyourdesign.com/images/fade/fade.zip"><img src="http://freeyourdesign.com/images/dload.gif" alt="download" style="border: medium none " /></a><br />
Download HTML, CSS, and Images</p>
<p>Not the prettiest example, but you get the idea &#8211; pick the colors you want and make it look good.<br />
<img src="http://freeyourdesign.com/images/fade/img/example.gif" alt="example" /></p>
<img src="http://freeyourdesign.com/?ak_action=api_record_view&id=36&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://freeyourdesign.com/css/css-gradient-background-fade/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>Photoshop Tutorial &#8211; Web 2.0 Button</title>
		<link>http://freeyourdesign.com/photoshop/photoshop-tutorial-web-20-button/</link>
		<comments>http://freeyourdesign.com/photoshop/photoshop-tutorial-web-20-button/#comments</comments>
		<pubDate>Wed, 19 Mar 2008 11:32:04 +0000</pubDate>
		<dc:creator>fyd</dc:creator>
				<category><![CDATA[photoshop]]></category>
		<category><![CDATA[free stuff]]></category>
		<category><![CDATA[photoshop-tutorial]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[web 2.0]]></category>

		<guid isPermaLink="false">http://freeyourdesign.com/photoshop/photoshop-tutorial-web-20-button/</guid>
		<description><![CDATA[We are going to create a snazzy web 2.0 glossy button. I am using Photoshop CS2, but I'm sure these techniques will work in most versions. The size you make the button is up to you and should be customized to fit the site you are building. In this Photoshop tutorial we are going to [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://freeyourdesign.com/images/web2btn/btn.gif" alt="web 2.0 button" style="border: medium none " /><br />
We are going to create a snazzy web 2.0 glossy button. I am using <a href="http://freeyourdesign.com/tag/photoshop/">Photoshop</a> CS2, but I'm sure these techniques will work in most versions. The size you make the button is up to you and should be customized to fit the site you are building. In this Photoshop tutorial we are going to be using tools like the gradient tool, marquee tool, pen tool, text tool, a pattern, and more.</p>
<p>We will be using a stripe pattern in the background of the button, so if you didn't complete the pattern in the <a href="http://freeyourdesign.com/photoshop/photoshop-tutorial-web-20-header-with-stripes/">web 2.0 header tutorial</a> you can download it here.</p>
<p style="text-align: center"><a href="http://freeyourdesign.com/images/files/stripes.pat"><img src="http://freeyourdesign.com/images/dload.gif" alt="download" style="border: medium none " /></a><br />
Download Stripes Pattern</p>
<p>Let's get started.</p>
<h3>File Setup</h3>
<p>Open up Photoshop and create a new file. Like I said, the size is up to you &#8211; I will be making mine <strong>200px</strong> X <strong>50px</strong>.</p>
<p>Create a <strong>new laye</strong>r and name it <strong>bg</strong>.</p>
<h3>Rounded Corners or Not</h3>
<p>First, grab the <strong>gradient tool</strong>.</p>
<p>Set the <strong>Foreground</strong> color to <strong>black</strong>.</p>
<p>Set the <strong>Background</strong> color to <strong>50% gray</strong>.</p>
<p>Using the <strong>gradient tool</strong> click and drag from the <strong>bottom</strong> to the <strong>top</strong> &#8211; so that the black is at the bottom of the button.<br />
<img src="http://freeyourdesign.com/images/web2btn/bg.gif" alt="background" /></p>
<p>If you want the button to be <strong>rectangular</strong> then skip to adding a stroke.</p>
<p>If you want the button to have <strong>rounded corners</strong> follow these steps.</p>
<p>Grab the <strong>Rounded Rectangle Tool</strong> <img src="http://freeyourdesign.com/images/web2btn/rr.gif" alt="rounded rectangle" class="right" /></p>
<p>At the top set the <strong>Radius:</strong> to <strong>10px</strong> and make sure <strong>Paths</strong> is selected.<br />
<img src="http://freeyourdesign.com/images/web2btn/rr_opt.gif" alt="rounded rectangle" /></p>
<p>Start in the <strong>upper left corner</strong> and pull out the shape to the <strong>lower right corner</strong>.<br />
<strong><br />
Right click</strong> and select <strong>Make selection&#8230;</strong> <strong>Feather Radius: 0</strong> and click <strong>OK</strong><br />
<img src="http://freeyourdesign.com/images/web2btn/rr_sel.gif" alt="rounded rectangle" /></p>
<p>Next hit <strong>ctrl+shift+i</strong> to invert the selection and hit <strong>delete</strong> on your keyboard and now the corners are rounded.<br />
<img src="http://freeyourdesign.com/images/web2btn/rr_dl.gif" alt="rounded rectangle" /></p>
<h3>Add A Stroke</h3>
<p>Whether you rounded your corners or not, let's add a <strong>stroke</strong> to the<strong> bg layer</strong>.</p>
<p>Double click on the <strong>bg layer</strong> to open the <strong>Layer Style</strong> window.</p>
<p>Click on <strong>strok</strong>e and set <strong>size</strong> to <strong>1px</strong>, <strong>Postion:</strong> to <strong>Inside</strong>, and the <strong>Color:</strong> to <strong>black</strong>.<br />
<img src="http://freeyourdesign.com/images/web2btn/stroke.gif" alt="stroke" /></p>
<h3>Add the Stripes</h3>
<p>Create a <strong>new layer</strong> and name it<strong> stripes</strong>.</p>
<p><img src="http://freeyourdesign.com/images/web2btn/ctrlclick.gif" alt="click" class="right" /><strong>ctrl+left-click</strong> on the <strong>bg layer's Layer Thumbnail</strong> to create our selection.</p>
<p>Go to<strong> Edit-&gt;Fill&#8230;</strong> make sure <strong>Use:</strong> is set to <strong>Pattern</strong></p>
<p>Now to load the stripes pattern you downloaded. Follow the directions on the image below then browse to the place you saved the stripes pattern and load it in &#8211; it will show up at the end of the list of patterns. Click it and hit OK.<br />
<img src="http://freeyourdesign.com/images/web2btn/fill.gif" alt="fill" /></p>
<p><img src="http://freeyourdesign.com/images/web2btn/opacity.gif" alt="opacity" class="right" />Set the <strong>Opacity</strong> of the <strong>stripes</strong> layer to about <strong>20%</strong>.<br />
<img src="http://freeyourdesign.com/images/web2btn/stripes.gif" alt="stripes" /></p>
<h3>Add the Text</h3>
<p>Grab the <strong>Text Tool</strong> (keyboard shortcut 't').</p>
<p>Set the options to <strong>Myriad Pro</strong> for the font <strong>Bold</strong> and <strong>24pt</strong> &#8211; I used a light gray for the color.<br />
<img src="http://freeyourdesign.com/images/web2btn/text.gif" alt="text" /></p>
<p>Select the text and change the <strong>Vertical </strong>and <strong>Horizontal</strong> scale to match the image below.<br />
<img src="http://freeyourdesign.com/images/web2btn/textopt.gif" alt="text" /></p>
<h3>Add the Highlight</h3>
<p>Create a <strong>new layer</strong> and name it <strong>highlight</strong>.</p>
<p>Using the <strong>Pen Tool</strong> create a path similar to the image below.<br />
Then <strong>right-click</strong> and pick <strong>Make Selection&#8230;</strong><br />
Click OK and <strong>fill </strong>it with <strong>white</strong>.<br />
<img src="http://freeyourdesign.com/images/web2btn/pen.gif" alt="pen tool" /></p>
<p>Once again<strong> ctrl+click</strong> on the <strong>bg layer's Layer Thumbnail</strong> to make it our selection.</p>
<p>With the <strong>highlight layer still active</strong> hit <strong>ctrl+shift+i </strong>to invert the selection and hit <strong>delete </strong>on your keyboard.</p>
<p>Change the <strong>opacity </strong>of the layer to about <strong>15%</strong>.<br />
<img src="http://freeyourdesign.com/images/web2btn/highlight.gif" alt="highlight" /></p>
<h3>Text Reflection</h3>
<p>shew&#8230; text reflection anyone.<br />
<strong>Right-click</strong> on the <strong>text layer</strong> Home and select <strong>Duplicate Layer&#8230;</strong> and click <strong>OK</strong>.</p>
<p>Go to <strong>Edit-&gt;Transform-&gt;Flip Vertically</strong></p>
<p>Hold down shift and drag the reflection down <strong>below the text</strong>.</p>
<p>Adjust the <strong>Opacity</strong>of the reflection to <strong>40%</strong> or so or add a layer mask which ever you like. And there you have it &#8211; were are done with our Web 2.0 style button.<br />
<img src="http://freeyourdesign.com/images/web2btn/btn.gif" alt="button" style="border: medium none " /><br />
Download the psd file for this Web 2.0 style button and get an extra stripes layer so you can have to colored stripes. To change the color just ctrl+click on the Layer Thumbnail to create the selection and fill it with the color you want.</p>
<p><img src="http://freeyourdesign.com/images/web2btn/btn2.gif" alt="button" style="border: medium none " /><br />
Grab the Photoshop file and the image file</p>
<p style="text-align: center"><a href="http://freeyourdesign.com/images/files/stripes.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=31&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://freeyourdesign.com/photoshop/photoshop-tutorial-web-20-button/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>CSS &#8211; Make Text Wrap Around Image Using Float</title>
		<link>http://freeyourdesign.com/css/css-make-text-wrap-around-image-using-float/</link>
		<comments>http://freeyourdesign.com/css/css-make-text-wrap-around-image-using-float/#comments</comments>
		<pubDate>Wed, 05 Mar 2008 12:39:09 +0000</pubDate>
		<dc:creator>fyd</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[css images]]></category>
		<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://freeyourdesign.com/css/css-make-text-wrap-around-image-using-float/</guid>
		<description><![CDATA[Using CSS we will add a class to the img tag so that our text will wrap nicely around our image. This can be done fairly quickly and can really make your content look better. I recommend adding these classes to every CSS file &#8211; or if you have a base CSS file that you [...]]]></description>
			<content:encoded><![CDATA[<p>Using <a href="http://freeyourdesign.com/tag/css/">CSS</a> we will add a class to the <strong>img</strong> tag so that our text will wrap nicely around our image. This can be done fairly quickly and can really make your content look better. I recommend adding these classes to every CSS file &#8211; or if you have a base CSS file that you always use put these in it.</p>
<p><span id="more-28"></span></p>
<h3>The HTML</h3>
<p>First, we are going to set up our <a href="http://freeyourdesign.com/tag/html/">HTML</a> &#8211; I'm just using placeholder text and a random image. You can copy my text or search Google for placeholder text.</p>
<pre>
&lt;html&gt;

&lt;head&gt;&lt;title&gt;<span class="text">CSS Image Wrap</span>&lt;/title&gt;
&lt;link href="style.css" rel="stylesheet"
type="text/css"media="screen" /&gt;

&lt;/head&gt;

&lt;body&gt;
&lt;p&gt;
&lt;img src="http://freeyourdesign.com/images/flag1.gif"
alt="temp" class="left" /&gt;
<span class="text">Lorem "ipsum" dolor sit amet, consectetuer adipiscing elit, sed
diam nonummy nibh euismod tincidunt ut laoreet dolore magna
aliquam erat volutpat. Ut wisi enim ad minim veniam, quis
nostrud exerci tation ullamcorper suscipit lobortis nisl ut
aliquip ex ea commodo consequat. Duis autem vel eum iriure
dolor in hendrerit in vulputate velit esse molestie consequat,
vel illum dolore eu feugiat nulla facilisis at vero eros et
accumsan et iusto odio dignissim qui blandit praesent luptatum
zzril delenit augue duis dolore te feugait nulla facilisi</span>.&lt;/p&gt;

&lt;/body&gt;

&lt;/html&gt;</pre>
<p>Notice the <strong>class="left"</strong> inside the <strong>img</strong> tag. That's what we will create in our CSS file.</p>
<h3>The CSS File</h3>
<p>Make a new .css file &#8211; you can just use Notepad and save as .css instead of .txt</p>
<p>Name it style.css</p>
<pre>
<span class="text">/*float left*/</span>
.left
{
        float: left; <span class="text">/*left in our text*/</span>
        margin: 3px; <span class="text">/*space around the image*/</span>
}<span class="text">

/*float right*/</span>
.right
{
         float: right; <span class="text">/*right in our text*/</span>
         margin: 3px; <span class="text">/*space around the image*/</span>
}</pre>
<p>That's all we need for our css file. If you use <strong>class="left"</strong> in the <strong>img</strong> tag the image will be aligned to the left within the text and using <strong>class="right"</strong> will align the image to the right. Pretty easy and you'll use it all the time.</p>
<p>Download: (right-click save as)<br />
<a href="http://freeyourdesign.com/images/cssimgfloat/float.html" target="_blank">The HTML</a><br />
<a href="http://freeyourdesign.com/images/cssimgfloat/style.css" target="_blank">The CSS</a></p>
<h3>No Float Example</h3>
<p><img src="http://freeyourdesign.com/images/flag1.gif" alt="temp" />Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.</p>
<h3>Float Left Example</h3>
<p><img src="http://freeyourdesign.com/images/flag1.gif" class="left" alt="temp" />Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.</p>
<h3>Float Right Example</h3>
<p><img src="http://freeyourdesign.com/images/flag1.gif" class="right" alt="temp" />Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.</p>
<img src="http://freeyourdesign.com/?ak_action=api_record_view&id=28&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://freeyourdesign.com/css/css-make-text-wrap-around-image-using-float/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Illustrator CS2 Add Highlight to Text</title>
		<link>http://freeyourdesign.com/illustrator/illustrator-cs2-add-highlight-to-text/</link>
		<comments>http://freeyourdesign.com/illustrator/illustrator-cs2-add-highlight-to-text/#comments</comments>
		<pubDate>Wed, 27 Feb 2008 12:47:47 +0000</pubDate>
		<dc:creator>fyd</dc:creator>
				<category><![CDATA[illustrator]]></category>
		<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://freeyourdesign.com/illustrator/illustrator-cs2-add-highlight-to-text/</guid>
		<description><![CDATA[Here is a quick way to add a highlight to your text in Adobe Illustrator using the Intersect shape areas tool. Start off by opening a new document in Adobe Illustrator(I'm using Illustrator CS2). Type Out The Text Grab the Text tool and type out your text. It's better to use a font with wider [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a quick way to add a highlight to your text in Adobe Illustrator using the <strong>Intersect shape areas</strong> tool.<br />
<a href="http://freeyourdesign.com/illustrator/illustrator-cs2-add-highlight-to-text/"><img src="http://freeyourdesign.com/images/itexthigh/demo.gif" alt="illustrator text highlight" /></a></p>
<p>Start off by opening a new document in Adobe Illustrator(I'm using Illustrator CS2).</p>
<p><span id="more-25"></span></p>
<h3>Type Out The Text</h3>
<p>Grab the <strong>Text</strong> tool and type out your text. It's better to use a font with wider letters &#8211; the font I used was Arial Black.<br />
Go ahead and give the text a <strong>stroke</strong> color.<br />
<img src="http://freeyourdesign.com/images/itexthigh/text.gif" alt="text" /></p>
<h3>Duplicate The Text</h3>
<p><strong>Select</strong> your text.</p>
<p>Go to <strong>Edit-&gt;Copy</strong>.</p>
<p>Then go to <strong>Edit-&gt;Paste in Back</strong></p>
<p>Hit <strong>ctrl+2</strong> to lock the copy of the text. You shouldn't see any kind of change.</p>
<h3>Draw Out The Highlight</h3>
<p>How you draw the highlight is up to you. I took the <strong>rectangle</strong> tool and drew a rectangle that covered the top half of my text. You can use the <strong>circle</strong> tool or the <strong>pen</strong> to draw out the highlight area.<br />
Make the shape <strong>white </strong>with <strong>no stroke</strong>.<br />
<img src="http://freeyourdesign.com/images/itexthigh/drawlight.gif" alt="draw highlight" /></p>
<h3>The Intersect Shape Area Tool</h3>
<p>Now to get the highlight on the text only.</p>
<p>Go to <strong>Window-&gt;Pathfinder</strong> to open up the Pathfinder pallet.</p>
<p><strong>Select</strong> the <strong>highlight</strong> area and the <strong>text</strong></p>
<p>Next click <strong>Intersect shape areas</strong> in the <strong>Pathfinder</strong> pallet. It's the third from left under Shape Modes:</p>
<p>After you click Intersect shape areas click <strong>Expand</strong> (it's in the Pathfinder pallet)<br />
<img src="http://freeyourdesign.com/images/itexthigh/path.gif" alt="pathfinder box" /></p>
<p>Finally, go take the <strong>Opacity:</strong> down to <strong>20</strong> or <strong>30</strong> percent. And hit <strong>ctrl+alt+2</strong> to unlock your text layer.</p>
<p><a href="http://freeyourdesign.com/illustrator/illustrator-cs2-add-highlight-to-text/"><img src="http://freeyourdesign.com/images/itexthigh/demo.gif" alt="illustrator text highlight" /></a></p>
<p>This same process will work with shapes, not just text. Try it out.</p>
<img src="http://freeyourdesign.com/?ak_action=api_record_view&id=25&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://freeyourdesign.com/illustrator/illustrator-cs2-add-highlight-to-text/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Horizontal Menu</title>
		<link>http://freeyourdesign.com/css/css-horizontal-menu/</link>
		<comments>http://freeyourdesign.com/css/css-horizontal-menu/#comments</comments>
		<pubDate>Thu, 21 Feb 2008 12:51:56 +0000</pubDate>
		<dc:creator>fyd</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[css menu]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://freeyourdesign.com/css/css-horizontal-menu/</guid>
		<description><![CDATA[Let's use CSS to make a Horizontal Menu. We will be using and styling an unordered list for our menu. There's not a lot to it and the code has comments by each line &#8211; so just follow along and you'll have your own menu in no time. So, make a new .css file and [...]]]></description>
			<content:encoded><![CDATA[<p>Let's use CSS to make a Horizontal Menu. We will be using and styling an unordered list for our menu. There's not a lot to it and the code has comments by each line &#8211; so just follow along and you'll have your own menu in no time.<br />
So, make a new .css file and name it style.css &#8211; You can use notepad and save the file as .css instead of .txt</p>
<h3>Main Container</h3>
<p>We start off with our main styling container. In it we will setup styles like the width of our menu &#8211; the background color &#8211; font size &#8211; and tell it we don't want any bullets next to our list items.</p>
<pre>
<span class="text">/* main container - ul id="menu" */
</span>#menu
{
	margin: 0; <span class="text">/* reset the margins */</span>
	padding: 0; <span class="text">/* reset the padding */</span>
	width: auto; <span class="text">/* this size depends on your menu */</span>
	float: left; <span class="text">/* line things up */</span>
	font-size: 1.4em; <span class="text">/* increase the font size a bit */</span>
	background: #656565; <span class="text">/* any background color you want */</span>
	list-style: none; <span class="text">/* no bullets on our list items */</span>
}</pre>
<h3>The List Items</h3>
<p>Now we will style the list items. If you have items in your menu that aren't linked then this is where you would add any extra formatting for those. Most of the time everything in a menu is linked so all we need to do for our menu is tell it to display our items horizontally.</p>
<pre>
<span class="text">/* list elements */</span>
#menu li
{
	display: inline; <span class="text">/* make it horizontal */</span>
}</pre>
<h3>Our Links</h3>
<p>Let's style our links. This is where we put in formatting like the color of our links &#8211; text decorations &#8211; and anything else you want. The padding here is important and is used to give extra space around the words &#8211; without it the menu would take the height of just slightly more than the text. The a:visited is added to make the links stay the same color even if the user has already visited a link.</p>
<pre>
<span class="text">/* style our links */</span>
#menu li a:link, #menu li a:visited
{
	float: left; <span class="text">/* line things up */</span>
	color: #ffffff; <span class="text">/* the color of our linked items */</span>
	padding: 10px 10px; <span class="text">/* spread it out */</span>
	text-decoration: none; <span class="text">/* no underline */</span><span class="text">/* white border to the right of link</span>
	*/
	border-right: 1px solid #ffffff;
}</pre>
<h3>Link Hover</h3>
<p>Now we format how the link will look when our mouse hovers over it.</p>
<pre>
<span class="text">/* style link hover */</span>
<span class="text">/* .active_link class - optional -</span>
styles the current pages link */
#menu li a:hover, #menu li a:active, #menu .active_link
{
	text-decoration: none; <span class="text">/* no underline */</span>
<span class="text">	/* color to change to when we hover over link */</span>
	background: #009900;
}</pre>
<h3>Clear The Left Margin</h3>
<p>We had float: left above so we need to clear out the left margin so the rest of our page items will fall under our menu instead of to the right of it.</p>
<pre>
<span class="text">/* optional - but a good class to have in every stylesheet */</span>
<span class="text">/* we had float:left; above so in order to clear out the</span>
left margin and allow elements on our page to start under
our menu we should clear the left margin after we creat the menu
*/
.clearLeft
{
	clear: left;
}</pre>
<h3>The HTML</h3>
<p>Open a new HTML file and add a link to our style sheet somewhere within the &lt;head&gt;&lt;/head&gt; tags.</p>
<pre>
&lt;head&gt;
&lt;link href="sytle.css" rel="stylesheet" type="text/css"
media="screen" / &gt;
&lt;/head&gt;</pre>
<p>Within the &lt;body&gt; tags we will setup our menu. Remember we are using an unordered list for our menu.</p>
<pre><span class="text">&lt;!-- use an unordered list --&gt;</span>
&lt;ul id="menu"&gt;
	<span class="text">&lt;!-- each link goes in a list element --&gt;
	&lt;!-- class active_link would be moved to the link of
		whatever page you are on --&gt;
	&lt;!-- so if you if this was the About Us page you would
		move the class="active_link"
		within the About Us a href --&gt;</span>
	&lt;li&gt;&lt;a href="csshzmenu.html" class="active_link"&gt;<span class="text">Home</span>&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href="#"&gt;<span class="text">About Us</span>&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href="#"&gt;<span class="text">Link 3</span>&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href="#"&gt;<span class="text">Link 4</span>&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
<span class="text">&lt;-- clear out left margin -
       see stylesheet for more info --&gt;</span>
&lt;div class="clearLeft"&gt;&lt;/div&gt;</pre>
<p>There you have it &#8211; customize it to your liking and add it to your site. Here are the files for download (right-click save as)<br />
<a href="http://freeyourdesign.com/images/files/hzmenu/csshzmenu.html">THE HTML</a><br />
<a href="http://freeyourdesign.com/images/files/hzmenu/style.css">THE CSS</a></p>
<img src="http://freeyourdesign.com/?ak_action=api_record_view&id=23&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://freeyourdesign.com/css/css-horizontal-menu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Resources &#8211; Photoshop Tips, Tricks, and Tutorials</title>
		<link>http://freeyourdesign.com/resources/resources-photoshop-tips-tricks-and-tutorials/</link>
		<comments>http://freeyourdesign.com/resources/resources-photoshop-tips-tricks-and-tutorials/#comments</comments>
		<pubDate>Sat, 09 Feb 2008 15:16:25 +0000</pubDate>
		<dc:creator>fyd</dc:creator>
				<category><![CDATA[resources]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://freeyourdesign.com/resources/resources-photoshop-tips-tricks-and-tutorials/</guid>
		<description><![CDATA[16 Photoshop resources including tips, tricks, and tutorials &#8211; for the beginner all the way up to the advanced Phothshop user. New To Photoshop Just learning Photoshop? Opening the program and seeing all the different options can be very daunting to a beginner. Here are a few resources I found that should be very useful [...]]]></description>
			<content:encoded><![CDATA[<p>16 Photoshop resources including tips, tricks, and tutorials &#8211; for the beginner all the way up to the advanced Phothshop user.</p>
<h3 style="border-bottom: 1px solid #000000; margin-top: 40px">New To Photoshop</h3>
<p>Just learning Photoshop? Opening the program and seeing all the different options can be very daunting to a beginner. Here are a few resources I found that should be very useful to anyone new to Photoshop, upgrading to a newer version, or someone who just wants to better understand the basics.</p>
<p><span id="more-21"></span></p>
<p><strong><a href="http://www.freewebs.com/scottsphotoshopart/photoshopintrotutorial.htm">Photoshop: An Introduction</a></strong><br />
This tutorial goes into the user interface of Photoshop CS2 in great detail. It is laid out very nicely. They breakdown pretty much every aspect and there are multiple screenshots &#8211; some are even color-coded to match with a description below the image. If you are new to Photoshop this one is a must.<br />
<a href="http://www.freewebs.com/scottsphotoshopart/photoshopintrotutorial.htm"><img src="http://freeyourdesign.com/images/pttt/photoshop_intro.gif" alt="photoshop" /></a></p>
<p><strong><a href="http://tutorials.watchandlearnphotoshop.com/tutorials/ps/cs2preview1.html">Creating a New Document</a></strong><br />
Creating a new document might sound like a no-brainer, but there are many options when creating a new file in Phothshop. This video tutorial will help you learn all about it.<br />
<a href="http://tutorials.watchandlearnphotoshop.com/tutorials/ps/cs2preview1.html"><img src="http://freeyourdesign.com/images/pttt/new_doc.gif" alt="new doc" /></a></p>
<p><strong><a href="http://www.jeremyshuback.com/PhotoshopTutorial.html">Photoshop Crash Course</a></strong><br />
Long tutorial &#8211; claims it will take just under 4 hours to get through &#8211; lots of images and good information. "The hope of this tutorial is to get you up and running in photoshop in less then four hour's time. It assumes no prior photoshop knowledge but an eagerness to learn." Definitely worth a look.<br />
<a href="http://www.jeremyshuback.com/PhotoshopTutorial.html"><img src="http://freeyourdesign.com/images/pttt/crash_course.gif" alt="crash course" /></a></p>
<p><strong><a href="http://www.photoshopsupport.com/tutorials/jennifer/tips-beginners.html">Photoshop Tips and Tricks for Beginners</a></strong><br />
Good list of tips and tricks for people who are new to Photoshop.<br />
<a href="http://www.photoshopsupport.com/tutorials/jennifer/tips-beginners.html"><img src="http://freeyourdesign.com/images/pttt/tips4big.gif" alt="tips" /></a></p>
<p><strong><a href="http://www.photoshopessentials.com/basics/layer-shortcuts/">Photoshop Layers Essential Power Shortcuts</a></strong><br />
Learn how to work with layers in Phothshop CS2. Plenty of tips and tricks for the beginner or any level of user.<br />
<a href="http://www.photoshopessentials.com/basics/layer-shortcuts/"><img src="http://freeyourdesign.com/images/pttt/layers.gif" alt="layers" /></a></p>
<h3 style="border-bottom: 1px solid #000000; margin-top: 40px">Tool Specific Tips and Tutorials</h3>
<p><strong><a href="http://tutorials.watchandlearnphotoshop.com/tutorials/ps/707penextract.html">Extracting with the Pen Tool</a></strong><br />
Video tutorial showing how to accurately extract images from a background.<br />
<a href="http://tutorials.watchandlearnphotoshop.com/tutorials/ps/707penextract.html"><img src="http://freeyourdesign.com/images/pttt/pen_tool.gif" alt="pen tool" /></a></p>
<p><strong><a href="http://www.tutorialstream.com/tutorials/photoshop/overview-on-the-gradient-tool/">Overview on the Gradient Tool</a></strong><br />
In depth look at the gradient tool and how it is used.<br />
<a href="http://www.tutorialstream.com/tutorials/photoshop/overview-on-the-gradient-tool/"><img src="http://freeyourdesign.com/images/pttt/gradient.gif" alt="gradient tool" /></a></p>
<p><strong><a href="http://www.pixeladdiction.com/bb/articles.php?action=viewarticle&amp;artid=16">Mastering Layer Mask</a></strong><br />
Learn the power of layer masks in Photoshop.<br />
<a href="http://www.pixeladdiction.com/bb/articles.php?action=viewarticle&amp;artid=16"><img src="http://freeyourdesign.com/images/pttt/layermask.gif" alt="layer mask tool" /></a></p>
<p><strong><a href="http://www.heathrowe.com/tuts/typetricks.asp">Type Tool: Tips and Tricks</a></strong><br />
Learn about the Type tool in Photoshop.<br />
<a href="http://www.heathrowe.com/tuts/typetricks.asp"><img src="http://freeyourdesign.com/images/pttt/typetool.gif" alt="type tool" /></a></p>
<p><strong><a href="http://www.photoshopsupport.com/tutorials/cian/custom-shapes-layer-styles.html">Custom Shapes and Layer Styles</a></strong><br />
Get more out of your custom shapes with these tips.<br />
<a href="http://www.photoshopsupport.com/tutorials/cian/custom-shapes-layer-styles.html"><img src="http://freeyourdesign.com/images/pttt/shapes.gif" alt="shape tool" /></a></p>
<h3 style="border-bottom: 1px solid #000000; margin-top: 40px">Other Tips, Tricks, and Tutorials</h3>
<p><strong><a href="http://abduzeedo.com/how-improve-your-photoshop-skills">How to Imporve your Photoshop Skill</a></strong><br />
10 Tips to help you get better at Photoshop.<br />
<a href="http://abduzeedo.com/how-improve-your-photoshop-skills"><img src="http://freeyourdesign.com/images/pttt/imporve.gif" alt="improve" /></a></p>
<p><strong><a href="http://www.nobledesktop.com/shortcuts-photoshopcs2-pc.html">Photoshop CS2 Keyboard Shortcuts &#8211; PC</a></strong><br />
A list of keyboard shortcuts to help you work quicker.<br />
<a href="http://www.nobledesktop.com/shortcuts-photoshopcs2-pc.html"><img src="http://freeyourdesign.com/images/pttt/shortcuts.gif" alt="shortcuts" /></a></p>
<p><strong><a href="http://www.photoshopstar.com/effects/add-texture-to-improve-artwork/">Add Stock Textures to Images for extra Oomph</a></strong><br />
Nice tutorial showing you how to setup a scene in Photoshop and add a texture to make it pop.<br />
<a href="http://www.photoshopstar.com/effects/add-texture-to-improve-artwork/"><img src="http://freeyourdesign.com/images/pttt/texture.gif" alt="texture tip" /></a></p>
<p><strong><a href="http://psdtuts.com/text-effects-tutorials/a-slick-supernatural-text-effect/">A Slick Supernatural Text Effect</a></strong><br />
"In this tutorial we'll be creating a smokey night effect on text to give it an eerie supernatural sort of feel. It's a good exercise in using the Wave distortion filter&#8230;"<br />
<a href="http://psdtuts.com/text-effects-tutorials/a-slick-supernatural-text-effect/"><img src="http://freeyourdesign.com/images/pttt/slicktext.gif" alt="photoshop text" /></a></p>
<p><strong><a href="http://www.gomediazine.com/tutorials/badass-bling-effect-in-photoshop/">Bling Effect in Photoshop</a></strong><br />
Sweet gold bling effect in Photoshop.<br />
<a href="http://www.gomediazine.com/tutorials/badass-bling-effect-in-photoshop/"><img src="http://freeyourdesign.com/images/pttt/bling.gif" alt="photoshop bling" /></a></p>
<p><strong><a href="http://photoshopforall.com/?p=3">Puzzle Effect</a></strong><br />
Apply a cool puzzle looking effect to a photograph or image.<br />
<a href="http://photoshopforall.com/?p=3"><img src="http://freeyourdesign.com/images/pttt/puzzle.gif" alt="puzzle effect" /></a></p>
<img src="http://freeyourdesign.com/?ak_action=api_record_view&id=21&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://freeyourdesign.com/resources/resources-photoshop-tips-tricks-and-tutorials/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Photoshop Tutorial &#8211; Valentines Day Header</title>
		<link>http://freeyourdesign.com/photoshop/photoshop-tutorial-valentines-day-header/</link>
		<comments>http://freeyourdesign.com/photoshop/photoshop-tutorial-valentines-day-header/#comments</comments>
		<pubDate>Wed, 06 Feb 2008 12:35:36 +0000</pubDate>
		<dc:creator>fyd</dc:creator>
				<category><![CDATA[photoshop]]></category>
		<category><![CDATA[photoshop-tutorial]]></category>
		<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://freeyourdesign.com/photoshop/photoshop-tutorial-valentines-day-header/</guid>
		<description><![CDATA[Valentine's Day is just around the corner &#8211; why not dress your Web site up with a new header. So, let's go through how to make a pretty new Valentine's Day header. A Quick Pattern For Later Open a new document &#8211; 5px X 5px Zoom all the way in. Make a new layer. Grab [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://freeyourdesign.com/photoshop/photoshop-tutorial-valentines-day-header/"><img src="http://freeyourdesign.com/images/vday/intro.gif" alt="intro" /></a><br />
Valentine's Day is just around the corner &#8211; why not dress your Web site up with a new header. So, let's go through how to make a pretty new Valentine's Day header.</p>
<p><span id="more-20"></span></p>
<h3>A Quick Pattern For Later</h3>
<p><img src="http://freeyourdesign.com/images/vday/pattern.gif" alt="pattern" class="left" /><br />
Open a new document &#8211; <strong>5px</strong> X <strong>5px</strong></p>
<p>Zoom all the way in.</p>
<p>Make a <strong>new layer</strong>.</p>
<p>Grab the <strong>Pencil Tool</strong> and make it <strong>1px</strong> in <strong>size</strong> and <strong>color</strong> to <strong>black</strong>.</p>
<p>Go <strong>diagonal</strong> from the <strong>upper left corner</strong> to the<strong> lower right corner</strong> &#8211; you should have <strong>five</strong> brush marks.</p>
<p>Click the <strong>eye</strong> next to the <strong>Background layer</strong> to turn it off.</p>
<p>Go to <strong>Edit-&gt;Define Pattern&#8230;</strong> Name it <strong>lines</strong> and click <strong>OK</strong>.</p>
<h3>Getting Started</h3>
<p>First off, open a new document in Photoshop. I made mine <strong>768px</strong> X <strong>150px</strong>.</p>
<p>Once it opens go ahead and make a <strong>new layer</strong> and name it <strong>bg</strong>.</p>
<h3>The Background</h3>
<p>First, we will setup our colors. For the <strong>Foreground</strong> color use <strong>light red</strong> and for the <strong>Background</strong> color use <strong>dark red</strong>.</p>
<p>Grab the <strong>Rounded Rectangle</strong> Tool (it might be under the Rectangle Tool)<img src="http://freeyourdesign.com/images/vday/rrtool.gif" alt="rrtool" class="right" /> and draw out a rounded rectangle that fits inside our document. Make it come pretty close to each edge &#8211; if you don't get it exact we can adjust it in a minute.</p>
<p>Now, <strong>right-click</strong> and pick <strong>Make Selection&#8230;</strong> make sure <strong>Feather Radius</strong> is <strong>0</strong> and click OK.</p>
<p>If you need to adjust your selection go to <strong>Select-&gt;Transform Selection</strong> and you will be able to move and resize it. Once you have it where you need it press enter.</p>
<p>Grab the <strong>Gradient Tool</strong> (shortcut 'g') and with our rounded rectangle still selected start at the <strong>top</strong> of our document and click and pull to the <strong>bottom</strong> of our document. The lighter red should be at the top of our rectangle.</p>
<p>Now, <strong>double-click</strong> on the <strong>bg</strong> layer to add a Layer Style.</p>
<p>Add a <strong>Stroke</strong> &#8211; change the color to <strong>black</strong> and the <strong>size</strong> to <strong>2</strong>.</p>
<p><a href="http://freeyourdesign.com/images/vday/rrfill2.gif" target="_blank"><img src="http://freeyourdesign.com/images/vday/rrfill1.gif" alt="rrfill" /></a></p>
<h3>Add The Lines Pattern</h3>
<p><strong>Duplicate</strong> the <strong>bg</strong> layer and name the new layer <strong>lines</strong>.</p>
<p><strong>Double click</strong> on the <strong>lines</strong> layer and <strong>turn off the stroke</strong> by unchecking it.</p>
<p><strong>Left-click</strong> on the <strong>little image</strong> beside the <strong>lines</strong> layer to make it our selection.</p>
<p>Go to <strong>Edit-&gt;Fill&#8230;</strong> change <strong>Use: to Pattern</strong> and for <strong>Custom Pattern:</strong> pick our<strong> lines pattern</strong> we made earlier. Click <strong>OK</strong>.</p>
<p>Set the <strong>Opacity</strong> to<strong> 30%</strong>.</p>
<p><img src="http://freeyourdesign.com/images/vday/lmask.gif" alt="lmask" class="right" />Now, we are going to add a layer mask. Click on the <strong>Layer Mask</strong> icon at the <strong>bottom</strong> of the <strong>Layers Pallet</strong>.</p>
<p>Grab the <strong>Gradient</strong> tool &#8211; set the <strong>Foreground Color</strong> to <strong>black </strong>and the <strong>Background Color</strong> to <strong>35% gray</strong>. Start in the <strong>bottom left corner</strong> and drag up to the <strong>upper right corner</strong>. And we are done with that part.</p>
<p><a href="http://freeyourdesign.com/images/vday/rrlines2.gif" target="_blank"><img src="http://freeyourdesign.com/images/vday/rrlines1.gif" alt="rrlines" /></a></p>
<p><strong>Note: If you still have the rounded rectangle area selected you can ctrl+d to deselect it.</strong></p>
<h3>Let's Add Some Text</h3>
<p>Grab the <strong>Text Tool</strong> (shortcut 't') &#8211; Change the <strong>Options</strong> to <strong>Monotype Corsiva</strong> at <strong>48pt</strong> (or whatever text style you want)</p>
<p>Type out <strong>Happy</strong> and <strong>exit</strong> the <strong>Text Too</strong>l.</p>
<p>Then type out <strong>Valentine's Day</strong> below it.</p>
<p>I tilted mine up a little <strong>ctrl+t</strong> to <strong>transform</strong> the text.</p>
<p>Add a <strong>stroke</strong> to each layer by <strong>double-clicking</strong> on it and <strong>selecting stroke</strong> &#8211; change the <strong>color </strong>to <strong>black </strong>and the <strong>size </strong>to <strong>1</strong>.</p>
<p><img src="http://freeyourdesign.com/images/vday/text.gif" alt="text" /></p>
<p><strong>Duplicate </strong>the <strong>Happy </strong>and <strong>Valentine's Day</strong> text <strong>layers</strong>.</p>
<p><strong>Select both</strong> of the layers by holding down the <strong>shift</strong> key and <strong>clicking</strong> on the one that is <strong>not highlighted</strong>.</p>
<p><strong>Right-click</strong> on either layer and select <strong>Rasterize Type</strong>.</p>
<p><strong>Right-click</strong> again and select <strong>Merge Layers</strong> &#8211; rename the merged layer to<strong> reflection</strong>.</p>
<p>Now, we need to <strong>flip </strong>the <strong>reflection </strong>layer over. Go to <strong>Edit-&gt;Transform-&gt;Flip Vertically</strong>.</p>
<p>With the <strong>Move Tool</strong> (shortcut 'v') hold down <strong>shift</strong> and move the reflection text down.</p>
<p><strong>Ctrl+t</strong> and move and rotate the text to <strong>line up</strong> correctly.</p>
<p>Add a <strong>Layer Mask</strong> to the <strong>reflection </strong>layer. Use the <strong>Gradient Tool</strong> (the colors should be the same as the last layer mask we made) and use the image as a guide to make the gradient.<br />
<img src="http://freeyourdesign.com/images/vday/gmask.gif" alt="gmask" /></p>
<p><img src="http://freeyourdesign.com/images/vday/reflect.gif" alt="reflection" /></p>
<h3>A Heart</h3>
<p>Create a <strong>new layer</strong> and name it <strong>heart</strong>.</p>
<p>Use the <strong>Custom Shape Tool</strong> (under the rounded rectangle we used earlier).</p>
<p>Change <strong>Shape:</strong> to one of the <strong>Hearts</strong>.</p>
<p>Drag out a heart shape to your liking.</p>
<p><strong>Click </strong>on the <strong>Paths </strong>tab in the <strong>Layers Pallet</strong>.</p>
<p><strong>Right-click</strong> on <strong>Work Path</strong> and select <strong>Make Selection&#8230;</strong> click OK.</p>
<p><strong>Fill</strong> it with a red color or a gradient &#8211; it's up to you.</p>
<p><strong>Double-click</strong> on the <strong>heart </strong>layer and add a <strong>stroke </strong>- <strong>color black size 1</strong>.</p>
<p>While we are in the Layer Style options. Give the heart a <strong>Bevel and Emboss</strong> &#8211; change the <strong>Style:</strong> to <strong>Inner Bevel</strong> the <strong>Technique:</strong> to<strong> Smooth</strong> and change <strong>Soften:</strong> to <strong>10</strong> now click OK.</p>
<p>There you have a nice header for Valentine's Day.<br />
<a href="http://freeyourdesign.com/images/vday/finish1.gif" target="_blank"><img src="http://freeyourdesign.com/images/vday/finish1a.gif" alt="finish" /></a></p>
<h3>Extra</h3>
<p>Add a ribbon look to the header.</p>
<p>Make a <strong>new layer</strong> above the <strong>lines </strong>layer &#8211; name it <strong>ribbonLong</strong>.</p>
<p>Take the <strong>Rectangle Marque</strong> (shortcut 'm') and drag out a rectangle the <strong>width</strong> of the image in the center make it about <strong>50px</strong> or so tall.</p>
<p><strong>Fill </strong>it with a <strong>dark red</strong> and give it a <strong>stroke color black size 2.</strong></p>
<p>Make a <strong>new layer</strong> name it <strong>ribbonTall</strong>. Do the same thing only make this rectangle go up and down at the center of the image. Give it a fill of dark red and the same stroke.</p>
<p>Now, <strong>ctrl+click</strong> on the little image beside the <strong>bg </strong>layer.</p>
<p><strong>ctrl+shift+i</strong> to <strong>invert </strong>the selection.</p>
<p><strong>Click </strong>on the <strong>ribbonLong</strong> and hit the <strong>delete </strong>key then click on <strong>ribbonTall </strong>and do the same.</p>
<p>Grab the <strong>Burn Tool</strong> &#8211; make the<strong> brush</strong> size about <strong>50px</strong> and the<strong> Exposure: 35%</strong>.</p>
<p><strong>Burn </strong>along all the <strong>edges </strong>of each rectangle &#8211; a little <strong>extra </strong>at the ends.</p>
<p><a href="http://freeyourdesign.com/images/vday/finish.gif" target="_blank"><img src="http://freeyourdesign.com/images/vday/finisha.gif" alt="finish" /></a></p>
<img src="http://freeyourdesign.com/?ak_action=api_record_view&id=20&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://freeyourdesign.com/photoshop/photoshop-tutorial-valentines-day-header/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

