<?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>Webdevtuts &#187; Tutorial</title>
	<atom:link href="http://www.webdevtuts.net/tag/tutorial/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.webdevtuts.net</link>
	<description>Making tutorials fun and easy!</description>
	<lastBuildDate>Mon, 23 Jan 2012 11:36:02 +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>How to remove category from wordpress url structure</title>
		<link>http://www.webdevtuts.net/php/how-to-remove-category-from-wordpress-url-structure/</link>
		<comments>http://www.webdevtuts.net/php/how-to-remove-category-from-wordpress-url-structure/#comments</comments>
		<pubDate>Fri, 09 Sep 2011 16:31:08 +0000</pubDate>
		<dc:creator>Marcell Purham</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[wordpress remove category from url]]></category>
		<category><![CDATA[wordpress rewrite url]]></category>
		<category><![CDATA[wordpress snippet]]></category>

		<guid isPermaLink="false">http://www.webdevtuts.net/?p=2954</guid>
		<description><![CDATA[There are many WordPress blog owner out there who do not pay close attention to the structure of their urls. If you&#8217;re a avid WordPress user then you may have notice that WordPress allows you to specify custom permalink structure &#8230; <a href="http://www.webdevtuts.net/php/how-to-remove-category-from-wordpress-url-structure/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>There are many WordPress blog owner out there who do not pay close attention to the structure of their urls. If you&#8217;re a avid WordPress user then you may have notice that WordPress allows you to specify custom permalink structure for your urls. I am not sure what most blog owners use but I mostly think everyone used the:</p>
<pre class="brush:php">/%category%/%postname%/</pre>
<p>If you&#8217;re using the above structure from your permalinks then you may have noticed that wordpress adds category into your email.</p>
<p><strong>Example:</strong></p>
<pre class="brush:php">http://www.yoursite.com/category/postname</pre>
<p>You would like the url to look like this.</p>
<p><strong>Example:</strong></p>
<pre class="brush:php">http://www.yoursite.com/postname</pre>
<p>This can be achieved using wordpress. Add the following code below to your functions.php file.</p>
<pre class="brush:php">add_filter('user_trailingslashit', 'remcat_function');
function remcat_function($link) {
    return str_replace("/category/", "/", $link);
}

add_action('init', 'remcat_flush_rules');
function remcat_flush_rules() {
    global $wp_rewrite;
    $wp_rewrite-&gt;flush_rules();
}

add_filter('generate_rewrite_rules', 'remcat_rewrite');
function remcat_rewrite($wp_rewrite) {
    $new_rules = array('(.+)/page/(.+)/?' =&gt; 'index.php?category_name='.$wp_rewrite-&gt;preg_index(1).'&amp;paged='.$wp_rewrite-&gt;preg_index(2));
    $wp_rewrite-&gt;rules = $new_rules + $wp_rewrite-&gt;rules;
}</pre>
<p>The code above tells WordPress that any url that is using the word category to remove category and rewrite the url without the category. This method is a cleaner approach then editing the .htaccess file since some WordPress owners have no experience editing the .htaccess file.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdevtuts.net/php/how-to-remove-category-from-wordpress-url-structure/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Create an impressive videographer website portfolio layout in photoshop</title>
		<link>http://www.webdevtuts.net/photoshop/create-an-impressive-videographer-website-portfolio-layout-in-photoshop/</link>
		<comments>http://www.webdevtuts.net/photoshop/create-an-impressive-videographer-website-portfolio-layout-in-photoshop/#comments</comments>
		<pubDate>Mon, 01 Nov 2010 01:39:24 +0000</pubDate>
		<dc:creator>Marcell Purham</dc:creator>
				<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[filmer]]></category>
		<category><![CDATA[how to create a portfolio]]></category>
		<category><![CDATA[photoshop web design]]></category>
		<category><![CDATA[portfolio design tutorial]]></category>
		<category><![CDATA[portfolio layout tutorial]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[videographer]]></category>
		<category><![CDATA[videographer website portfolio]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web design tutorial]]></category>
		<category><![CDATA[web layout]]></category>
		<category><![CDATA[website design]]></category>
		<category><![CDATA[website design tutorial]]></category>

		<guid isPermaLink="false">http://www.webdevtuts.net/?p=1986</guid>
		<description><![CDATA[Today I have a new type of website layout tutorial for you all. In today's tutorial I will be teaching you all how to create a videographer portfolio website layout. Check out the techniques i used in this tutorial and see what you come up with.  <a href="http://www.webdevtuts.net/photoshop/create-an-impressive-videographer-website-portfolio-layout-in-photoshop/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Today I have a new type of website layout tutorial for you all. In today&#8217;s tutorial I will be teaching you all how to create a videographer portfolio website layout. Check out the techniques i used in this tutorial and see what you come up with.</p>
<div class="block_dload">
<a class="dload" href="https://s3.amazonaws.com/webdevtuts/uploads/2010/videographer/videography.zip" title="Download" target="_blank">Download</a> <a class="demo" href="https://s3.amazonaws.com/webdevtuts/uploads/2010/videographer/final.jpg" title="demonstration" target="_blank">Final Layout</a>
</div>
<blockquote><h2>Things yous will need.</h2>
<ul>
<li><a href="http://windowfonts.com/fonts/amienne-bold.html" target="_blank">Amienne Font</a></li>
<li><a href="http://www.bittbox.com/illustrator/how-to-make-a-perfect-seamless-vector-pattern" target="_blank">Dots tutorial(Optional)</a></li>
</ul>
</blockquote>
<h2>Step 1</h2>
<p>Create new document 1360px x 800px 72dpi. Background Color #000(Black)<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/videographer/1.jpg" alt="Videographer website portfolio"/></p>
<p>Note: Turn on your photoshop ruler(PX!).</p>
<h2>Step 2</h2>
<p>Now drag your guide lines to 200px on the left side and 1160px on the right side(Exact place). That should leave 200px on both sides.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/videographer/2.jpg" alt="Videographer website portfolio"/></p>
<h2>Step 3</h2>
<p>Select the rectangle tool and create a rectangle box for your nav. Then right click on the rectangle layer>>blending options>> Gradient overlay, double<br />
click on the gradient bar <b>Left color:</b> #131313, <b>right color:</b> #343434. Now select the stroke option and make a 1px inside line, color #000000.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/videographer/3.jpg" alt="Videographer website portfolio"/></p>
<h2>Step 4</h2>
<p>Now select the type tool, font: Amienne, size: 51px and type out a word for your logo.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/videographer/4.jpg" alt="Videographer website portfolio"/></p>
<p>Right click on the logo layer>>blending options>>drop shadow. <b>blend mode:</b> multiply, <b>opacity:</b> 75, <b>angle:</b>120, <b>distance:</b> 0, <b>spread:</b> 0, <b>size:</b> 5.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/videographer/4-1.jpg" alt="Videographer website portfolio"/></p>
<p>Select the inner shadow checkbox now. <b>blend mode:</b> multiply, <b>opacity:</b> 75, <b>angle:</b>120, <b>distance:</b> 0, <b>spread:</b> 0, <b>size:</b> 5.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/videographer/4-2.jpg" alt="Videographer website portfolio"/></p>
<p>Select the color overlay. <b>color:</b> #ffffff. now select the gradient overlay check box. <b>blend mode:</b> normal, <b>opacity:</b> 100, <b>gradient:</b> Left color:#000000, Right color:#ffffff, <b>style:</b> linear, <b>angle:</b> 90, <b>scale:</b> 100.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/videographer/4-3.jpg" alt="Videographer website portfolio"/></p>
<p>Then select the stroke check box. <b>size:</b> 1, <b>opacity:</b> 100, <b>position:</b> outside, <b>blend mode:</b> normal, <b>opacity:</b> 100, <b>color:</b> #000000.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/videographer/4-4.jpg" alt="Videographer website portfolio"/></p>
<h2>Step 5</h2>
<p>Select the type tool, font: Amienne bold, color: #ffffff, size: 28px. Now write out the your portfolio items. After you have written out your portfolio items highlight the home option and change the color to #e4d640.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/videographer/5.jpg" alt="Videographer website portfolio"/></p>
<h2>Step 6</h2>
<p>Now select the rectangle tool then create a box for the bio. Then apply a gradient overlay to the box, left color: #000000, right color: #2a2a2a then you should have a faded box.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/videographer/6.jpg" alt="Videographer website portfolio"/></p>
<p>Select the custom shape tool color: #e4d640 and select the tile2 pattern. Stretch the tile so it fits within the box then change the opacity to 4% so that it is barley seen.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/videographer/6-1.jpg" alt="Videographer website portfolio"/></p>
<p>select the type tool, font: Amienne, size: 55px and type out your name. For the stars I used a separate type tool and created them separately on both sides. After you have your name create right click on the layer>>blending options>>gradient overlay. Left color: #c6bd2a, Right color:#ffed53. Now select the stroke check box>> 1px #000000. Apply the same option to your stars.<br />
<img class="aligncenter"src="https://s3.amazonaws.com/webdevtuts/uploads/2010/videographer/6-2.jpg" alt="Videographer website portfolio"/></p>
<h2>Step 7</h2>
<p>Select the type tool, font: Arial, size: 12px, color:#ffffff and write a bio. I used gibberish text(Lorem Ispum).Then select the rectangle tool and create a scroll box and arrow to the right side of your text. Then apply a 1px stroke #000000 to your arrow and scroll bar.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/videographer/7.jpg" alt="Videographer website portfolio"/></p>
<h2>Step 8</h2>
<p>Create or a find a image about the same size as your bio area. I used an image from Google.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/videographer/8.jpg" alt="Videographer website portfolio"/></p>
<h2>Step 9</h2>
<p>Now lets create our portfolio items. Create 3 new portfolio items. width:320px height:260px. Then select the custom shape tool and select the triangle and create a sideways triangle for our play button. Then change the opacity 50%.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/videographer/9.jpg" alt="Videographer website portfolio"/></p>
<h2>Step 10</h2>
<p>now select the rectangle tool color #000000 and create a rectangle box for your footer. Then apply a gradient to it, left color:#080808, right color:#313131. Then duplicate the logo and re size it to 12px and write your copyright text. Then pick some of your favorite social icons and place them to the right of your footer. Finally drag in your background. Right click on the layer>>blending options>>pattern overlay and select the dots pattern. Make sure it is scale to 1%. Now you&#8217;re done.<br />
<a href="https://s3.amazonaws.com/webdevtuts/uploads/2010/videographer/final.jpg" target="_blank"><img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/videographer/10.jpg" alt="Videographer website portfolio"/></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdevtuts.net/photoshop/create-an-impressive-videographer-website-portfolio-layout-in-photoshop/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Create a nice elegant radio station logo in photoshop</title>
		<link>http://www.webdevtuts.net/photoshop/create-a-nice-elegant-radio-station-logo-in-photoshop/</link>
		<comments>http://www.webdevtuts.net/photoshop/create-a-nice-elegant-radio-station-logo-in-photoshop/#comments</comments>
		<pubDate>Fri, 10 Sep 2010 04:30:05 +0000</pubDate>
		<dc:creator>Marcell Purham</dc:creator>
				<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[how to create a logo]]></category>
		<category><![CDATA[how to create a logo in photoshop]]></category>
		<category><![CDATA[how to create logo]]></category>
		<category><![CDATA[logo]]></category>
		<category><![CDATA[logo design]]></category>
		<category><![CDATA[logo tutorial]]></category>
		<category><![CDATA[photoshop logo]]></category>
		<category><![CDATA[photoshop logo tutorial]]></category>
		<category><![CDATA[radio]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://www.webdevtuts.net/?p=1681</guid>
		<description><![CDATA[If you're new to the design world then you might believe logos are very hard to create when really a logo can be anything you would like it to be. In this tutorial today I will teach you all how 'to create a simple but elegant logo in Photoshop. enjoy   <a href="http://www.webdevtuts.net/photoshop/create-a-nice-elegant-radio-station-logo-in-photoshop/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re new to the design world then you might believe logos are very hard to create when really a logo can be anything you would like it to be. In this tutorial today I will teach you all how &#8216;to create a simple but elegant logo in Photoshop. enjoy  </p>
<div class="block_dload">
<a class="dload" href="https://s3.amazonaws.com/webdevtuts/uploads/2010/logo2/logo.zip" title="Download" target="_blank">Download</a> <a class="demo" href="https://s3.amazonaws.com/webdevtuts/uploads/2010/logo2/final.jpg" title="demonstration" target="_blank">Final</a>
</div>
<blockquote><p>
Before you begin this tutorial please download the font and vinyl records that we&#8217;ll later use in this tutorial.<br />
<a href="http://www.fontemple.com/free-download/759-AvantGarde-Demi.html" title="AvantGarde-Demi Font" target="_blank"> AvantGarde-Demi Font</a><br />
<a href="http://officialpsds.com/Vinyl-record2-PSD20747.html" title="Vinyl Record" target="_blank">Vinyl Record</a></p></blockquote>
<h2>Step 1</h2>
<p>Create a new document (w)800px x (h)500px background #11d0ff<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/logo2/1.jpg" alt="New Document"/></p>
<h2>Step 2</h2>
<p>Select the type tool <b>font:</b> AvantGarde-Demi, <b>color:</b> ffffff, <b>size:</b>150px, and write out the word LOOP.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/logo2/2.jpg" alt="Select font"/></p>
<p>Now select the character panel or go to window>>character and a panel with character options should appear. Now Highlight your text then change the tracking from 0 to -140.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/logo2/2-1.jpg" alt="Set font tracking"/></p>
<h2>Step 3</h2>
<p>Now right click on your text layer>>blending options>>drop shadow. <b>blend mode:</b>multiply, <b>opacity:</b> 75, <b>angle:</b> 120, <b>distance:</b>0, <b>spread:</b>15, <b>size:</b>7.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/logo2/3.jpg" alt="drop shadow photoshop"/></p>
<p>Select the Bevel and Emboss option now. <b>style:</b>inner bevel, <b>technique:</b>chisel hard, <b>depth:</b>21, <b>direction:</b>up, <b>size:</b>27, <b>soften:</b>5, SHADING &#8211;> <b>angle:</b>120, <b>attitude:</b>30, <b>highlight mode:</b>screen color:ffffff, <b>opacity:</b>75, <b>shadow mode:</b>mutiply color:000000, <b>opacity:</b>75, then press ok.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/logo2/3-1.jpg" alt="photoshop settings"/></p>
<p><img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/logo2/ex.jpg" alt="photoshop text"/></p>
<blockquote><p>
To resize an image press CTRL+ALT+T on windows or CMD+ALT+T on mac then press click + SHIFT and drag it down to proper size.
</p></blockquote>
<h2>Step 4</h2>
<p>Now drag in the vinyl record you&#8217;ve downloaded at the beginning of this tutorial and re-size it. Then duplicate the record and place them inside of the two OO&#8217;s.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/logo2/4.jpg" alt="Vinayl recored"/></p>
<h2>Step 5</h2>
<p>Select the type tool <b>font:</b> AvantGarde-Demi, <b>color:</b> 000000, <b>size:</b>36px, and write out the word FM.<br />
<a href="https://s3.amazonaws.com/webdevtuts/uploads/2010/logo2/final.jpg" target="_blank" title="View Larger Version"><img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/logo2/5.jpg" alt="FM Radio"/></a></p>
<p>You are now finished. As you can see a logo can be anything you like it to be but try to get creative. We could of done much more to this logo to make it more detailed or complex but I wanted you guys to get the hang of creating simple but elegant logos. Hope you&#8217;ve all learn something.  </p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdevtuts.net/photoshop/create-a-nice-elegant-radio-station-logo-in-photoshop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blue Print Layout: Converting a PSD to HTML Tutorial</title>
		<link>http://www.webdevtuts.net/css/blue-print-layout-converting-a-psd-to-html-tutorial/</link>
		<comments>http://www.webdevtuts.net/css/blue-print-layout-converting-a-psd-to-html-tutorial/#comments</comments>
		<pubDate>Mon, 09 Aug 2010 20:43:56 +0000</pubDate>
		<dc:creator>Marcell Purham</dc:creator>
				<category><![CDATA[Css]]></category>
		<category><![CDATA[create website from scratch]]></category>
		<category><![CDATA[photoshop to html tutorial]]></category>
		<category><![CDATA[psd to html]]></category>
		<category><![CDATA[psd to html tutorial]]></category>
		<category><![CDATA[psd to xhtml]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[web design tutorial]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[website layout tutorial]]></category>

		<guid isPermaLink="false">http://www.webdevtuts.net/?p=1596</guid>
		<description><![CDATA[A while back I did a tutorial called <a href="" title="Photoshop Website layout tutorial">Create a rocking blue print website layout in photoshop</a> which basically explains how to create a website layout in photoshop. Today I am going to teach you all how to take a photoshop document and convert it to HTML or an actual website.  enjoy    <a href="http://www.webdevtuts.net/css/blue-print-layout-converting-a-psd-to-html-tutorial/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>A while back I did a tutorial called <a title="Photoshop Website layout tutorial" href="/photoshop-2/create-a-rocking-blue-print-web-layout/" target="_blank">Create a rocking blue print website layout in photoshop</a> which basically explains how to create a website layout in photoshop. Today I am going to teach you all how to take a photoshop document and convert it to HTML or an actual website.  enjoy!</p>
<div class="block_dload"><a class="dload" title="Download" href="http://webdevtuts.s3.amazonaws.com/uploads/2010/blueprint/blueprintwebsite.rar" target="_blank">Download</a> <a class="demo" title="demonstration" href="http://www.demo.webdevtuts.net/blue-print%20website/" target="_blank">Demo</a></div>
<h1>The HTML Markup</h1>
<h2>Step 1</h2>
<p>Download the blue print PSD then Open Photoshop. Usually people used the slice tool and slice the entire layout fast but I like to crop everything which is the slow way. So if you&#8217;re familiar with or feel better slicing your layout then you can look over over this step. As for the rest of you take a look at the crop diagram I&#8217;ve created and crop each of the items in the picture. I have included labels by each one.<br />
<a title="Layout Slicing" href="https://s3.amazonaws.com/webdevtuts/uploads/2010/blueprint/cropdiagram.jpg" target="_blank"><img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/blueprint/20.jpg" alt="Crop Diagram" /></a></p>
<h2>Step 2</h2>
<p>Now we&#8217;re going to begin coding our blue print layout. Open your HTML text editor or WYSIWYG editor and lets begin. The first thing we&#8217;re going to do is add in our doctype and setup our<br />
main site structure. copy the code below inside your HTML document and I will explain after.</p>
<pre class="brush:php">&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
&lt;html xmlns="http://www.w3.org/1999/xhtml"&gt;

&lt;head&gt;
&lt;meta content="text/html; charset=utf-8" http-equiv="Content-Type" /&gt;
&lt;title&gt;Blue Print Website&lt;/title&gt;
&lt;link rel="stylesheet" href="style.css" type="text/css"/&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;/body&gt;</pre>
<p>The code below is the main structure of our website. When first creating a website it is very important that you have the basis HTML tags included in the document such as the head, title, and body tags.</p>
<h2>Step 3</h2>
<p>Now we&#8217;re going to create our header. Below I have created a div with in #header and inside the header will be our logo.</p>
<pre class="brush:php">
&lt;div id="header"&gt;
&lt;div id="logo"&gt;&lt;a href="#"&gt;Blue Print&lt;/a&gt;&lt;/div&gt;&lt;!--end logo--&gt;
&lt;/div&gt;&lt;!--end header--&gt;
</pre>
<p><img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/blueprint/3.jpg" alt="Logo wrap" /></p>
<h2>Step 4</h2>
<p>Next we&#8217;re going to add the HTML for our container and top section menu and search bar. We will end the container tag at the end of our document.</p>
<pre class="brush:php">
&lt;div id="container"&gt;

&lt;div id="menu"&gt;
&lt;ul&gt;
	&lt;li&gt;&lt;a href="#"&gt;Home&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href="#"&gt;Blog&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href="#"&gt;Design&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href="#"&gt;Tutorials&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href="#"&gt;Freebies&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href="#"&gt;Submit&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;span&gt;
&lt;form name="search-form" id="searchform" method="get" action=""&gt;
  &lt;table width="300" border="1" cellpadding="5"&gt;
    &lt;tr&gt;
      &lt;td&gt;
        &lt;input type="hidden" name="dff_view" value="grid"&gt;
        &lt;input type="text" name="dff_keyword" size="30" maxlength="50"&gt;&lt;input id="submit-btn" type="submit" value="Submit" style="padding:8px 10px 10px 10px; height:35px; margin-left:5px;"&gt;
      &lt;/td&gt;
    &lt;/tr&gt;
  &lt;/table&gt;
&lt;/form&gt;
&lt;/span&gt;
&lt;/div&gt;&lt;!--end menu--&gt;

&lt;div class="clear"&gt;&lt;/div&gt;
</pre>
<p><img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/blueprint/4.jpg" alt="Top Section header" /></p>
<h2>Step 5</h2>
<p>Right below the above code insert the code below. The code below is our wraps for the content.</p>
<pre class="brush:php">
&lt;div id="inside-container"&gt;
&lt;div id="content"&gt;
</pre>
<p>After the content wrap let&#8217;s create our post area with the thumbnails. Copy and paste the code below after the content wraps.</p>
<pre class="brush:php">
&lt;div class="post"&gt;
	&lt;img src="images/thumb.jpg" alt="thumbnail"/&gt;

	&lt;h2&gt;&lt;a href=""&gt;5 Astonshing lighting effects made using Photoshop&lt;/a&gt;&lt;/h2&gt;

		&lt;div class="post-info"&gt;&lt;p&gt;Posted in &lt;a href=""&gt;Design&lt;/a&gt;, &lt;a href=""&gt;Tutorials&lt;/a&gt;, on 12.01.2009 by &lt;a href=""&gt;Marcell&lt;/a&gt;&lt;/p&gt;&lt;/a&gt;&lt;/div&gt;

		&lt;p&gt;Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et d
	olore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation .&lt;/p&gt;

	&lt;div class="more"&gt;&lt;a href=""&gt;Read More&lt;/a&gt;&lt;/div&gt;&lt;!--end more--&gt;

&lt;/div&gt;&lt;!--end post--&gt;

&lt;div class="divide"&gt;&lt;/div&gt;
&lt;div class="clear"&gt;&lt;/div&gt;
</pre>
<p>Copy and paste the code above 4 more times. This will give us our blog section. After you have copied and pasted the code 4 times place this code after the last clear div.</p>
<pre class="brush:php">
&lt;/div&gt;&lt;!--content--&gt;
</pre>
<p><img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/blueprint/12.jpg" alt="Post Area" /></p>
<h2>Step 6</h2>
<p>Now we&#8217;re going to create our sidebar HTML code. Copy and paste the code below after the end of the content div(After the step above).</p>
<pre class="brush:php">
&lt;div id="sidebar"&gt;
&lt;/div&gt;&lt;!--end sidebar--&gt;
</pre>
<p>Since we have our sidebar ready it time to insert our widgets or shall I say sidebar content.</p>
<pre class="brush:php">
&lt;div class="widget"&gt;
&lt;h2&gt;Subscribe&lt;/h2&gt;
	&lt;ul id="social"&gt;
		&lt;li class="rss"&gt;&lt;a href="#"&gt;&lt;img src="images/rss.png" alt="rss"/&gt;&lt;/a&gt;&lt;/li&gt;
		&lt;li class="twitter"&gt;&lt;a href="#"&gt;&lt;img src="images/twitter.png" alt="Twitter"/&gt;&lt;/a&gt;&lt;/li&gt;
		&lt;li class="facebook"&gt;&lt;a href="#"&gt;&lt;img src="images/facebook.png" alt="facebook"/&gt;&lt;/a&gt;&lt;/li&gt;
		&lt;li class="flickr"&gt;&lt;a href="#"&gt;&lt;img src="images/flickr.png" alt="flickr"/&gt;&lt;/a&gt;&lt;/li&gt;
	&lt;/ul&gt;
&lt;/div&gt;&lt;!--end widget--&gt;

&lt;div class="widget"&gt;
&lt;h2&gt;Sponsors&lt;/h2&gt;
	&lt;ul id="adverts"&gt;
		&lt;li&gt;&lt;a href="#"&gt;&lt;img src="images/advert.jpg" alt="advert"/&gt;&lt;/a&gt;&lt;/li&gt;
		&lt;li&gt;&lt;a href="#"&gt;&lt;img src="images/advert.jpg" alt="advert"/&gt;&lt;/a&gt;&lt;/li&gt;
		&lt;li&gt;&lt;a href="#"&gt;&lt;img src="images/advert.jpg" alt="advert"/&gt;&lt;/a&gt;&lt;/li&gt;
		&lt;li&gt;&lt;a href="#"&gt;&lt;img src="images/advert.jpg" alt="advert"/&gt;&lt;/a&gt;&lt;/li&gt;
	&lt;/ul&gt;
&lt;/div&gt;&lt;!--end widget--&gt;

&lt;div class="widget"&gt;
&lt;h2&gt;Popular Posts&lt;/h2&gt;
	&lt;ul&gt;
		&lt;li&gt;&lt;a href="#"&gt;10 WordPress tutorials that will help you better understand wordpress &lt;/a&gt;&lt;/li&gt;
		&lt;li&gt;&lt;a href="#"&gt;Create an amazing typography poster using adobe photoshop &lt;/a&gt;&lt;/li&gt;
		&lt;li&gt;&lt;a href="#"&gt;15 Articles best showing you how to create your very own wordpress theme option &lt;/a&gt;&lt;/li&gt;
		&lt;li&gt;&lt;a href="#"&gt;Freelancing vs The 9-5: Should you quit your day job to freelance&lt;/a&gt;&lt;/li&gt;
		&lt;li&gt;&lt;a href="#"&gt;PSD to wordpress Series: Part 2 Converting the wordpress theme&lt;/a&gt;&lt;/li&gt;
	&lt;/ul&gt;
&lt;/div&gt;&lt;!--end widget--&gt;
</pre>
<h2>Step 7</h2>
<p>Next we&#8217;re going to close the containers.</p>
<pre class="brush:php">
&lt;div class="clear"&gt;&lt;/div&gt;
&lt;/div&gt;&lt;!--end inside-container--&gt;
&lt;/div&gt;&lt;!--end container--&gt;
</pre>
<h2>Step 8</h2>
<p>Last step of Inserting our HTML markup is adding the footer.</p>
<pre class="brush:php">
&lt;div id="footer"&gt;
&lt;p&gt;Copyright 2010 to Webdevtuts. All Rights Reserved.&lt;span&gt;&lt;a href="#header"&gt;Top&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/div&gt;&lt;!--end footer--&gt;
</pre>
<p><img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/blueprint/15.jpg" alt="Footer Unstyled" /></p>
<h1>The Css a.k.a Styling of our webpage</h1>
<p>So now that we have our HTML Markup language completed we will now begin styling our web page. I did not explain each markup code above but will do in the css below so have no worries.</p>
<h2>Step 9</h2>
<p>First we&#8217;re going to style our body, links and paragraphs.</p>
<pre class="brush:css">
/*
Blue-Print Theme by Marcell Purham
Webdevtuts.net
*/

@import url("css/reset.css");

body {
	background: #152a5b url(images/bg.jpg) top center no-repeat;
	font-family: 'arial';
}

.clear {
	clear:both;
}

p {
	line-height:20px;
	font-size:12px;
}

a {
	text-decoration:none;
	color:#383838;
}

a:hover {
	color:#6a6a6a;
}
</pre>
<p><img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/blueprint/9.jpg" alt="Style Body" /></p>
<ul>
<li><strong>Import url</strong> &#8211; Use for css reset. Tells css to look for reset.css and the css folder</li>
<li><strong>body</strong> &#8211; I&#8217;ve added a background color to the body then from the huge image I cropped I used css to call the image then told it<br />
to position the image in the top-center of the screen with no repeat.</li>
<li><strong>Clear</strong> &#8211; This is used to clear all floats. so if you remember from the HTML document we&#8217;ve included a lot of clear divs.</li>
<li><strong>Paragraph</strong> &#8211; For the paragraph tag I&#8217;ve gave it a line-height of 20px(spacing) and a font size of 12px which is what we need for this layout</li>
<li><strong>a &amp; a hover</strong> &#8211; The A tag is the href(links) tag used to link content. I gave it a decoration of none and applied a color to it. For the hover I just simply<br />
applied a color to it so people would know its a link.</li>
</ul>
<h2>Step 10</h2>
<p>Next we&#8217;re going to style our logo and menu area. Copy &amp; paste the code below into your css document and I will explain.</p>
<pre class="brush:css">

#header {
	width:960px;
	margin:0 auto;
}

#logo a {
	background: url(images/logo.png);
	width:384px;
	height:94px;
	display:block;
	text-indent:-9999px;
	margin:30px 10px 10px 0;
}

#menu {
	width:910px;
	float:left;
	background: url(images/grid-pattern.jpg);
	padding:15px;
	margin:10px 0 15px 0;
}

#menu li {
	float:left;
}

#menu li a {
	padding:5px 15px 5px 15px;
	float:left;
	text-decoration:none;
	font-size:16px;
	font-weight:bold;
	color:#383838;
	border-right:2px solid #383838;
	text-transform:uppercase;
	margin-top:5px;
}

#menu span {
	float:right;
}

#searchform input {
	height:25px;
	background:#383838;
	border:none;
	color:#fff;
	padding:5px;
}

#submit-btn  label{
	width:50px;
	display:block;
}

#container {
	width:940px;
	margin:0 auto;
	background:#6b6a6a;
	padding:10px;
}
</pre>
<ul>
<li><strong>Logo</strong> &#8211; For our logo image since I&#8217;ve cropped it I called it using css in the image folder then applied the exact height and width to the css so it knows the exact size of the<br />
logo.</li>
<li><strong>Header</strong> &#8211; For the header I gave it a width of 960px then centered it using the good ol margin 0 method.</li>
<li><strong>Menu</strong> &#8211; For the menu I floated the menu to the left and gave it a width of 910px. Then I added a padding of 15px. For the menu li tags I just basically change the<br />
font size, color, and padding.</li>
<li><strong>Searchform</strong> &#8211; For the search form I Used the &#8220;O DON&#8217;T I JUST LOVE TABLES&#8221; method. So the search form is created using tables but styled using css. I basically gave it a height<br />
added some padding and style the submit button</li>
<li><strong>Container</strong> &#8211; The container is what holds the content so I&#8217;ve created a container 940px then centered it and gave it the grey background color.</li>
</ul>
<p><img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/blueprint/10.jpg" alt="Header Style" /></p>
<h2>Step 11</h2>
<p>Now we&#8217;re going to style our inside container, content and post area(Blog area). Copy and paste the code below into your css.</p>
<pre class="brush:css">
#inside-container {
	background:url(images/grid-pattern.jpg.);
	padding:10px;
}

#content {
	width:590px;
	float:left;
	background:#6b6a6a;
	padding:10px;
}

.post {
	float:left;
	margin-bottom:15px;
	border-bottom:1px solid #7d7b7b;
	padding-bottom:10px;
}

.post img {
	float:left;
	padding:5px 10px 5px 0;
}

.post h2 a {
	font-size:20px;
	font-weight:bold;
	color:#383838;
}

.post-info {
	background:url(images/post-info-pattern.jpg);
	padding:5px;
	margin: 5px 0 5px 215px;
}

.more a{
	float:right;
	text-decoration:none;
	background:#7d7b7b;
	padding:10px;
	font-size:12px;
	color:#383838;
}

.more a:hover {
	background:#989797;
}
</pre>
<ul>
<li><strong>Inside Container</strong> &#8211; The inside container is what holds the content and sidebar area. For the inside container I did not need to specify a width considering I&#8217;ve already<br />
added a container with an width to our css. So I just applied a padding to it.</li>
<li><strong>Content</strong> &#8211; For the content div I applied a width of 590px and added a padding of 15px(padding:<em>Space inside. So 15px on every side</em>) to the content div. Then I finally<br />
floated it to the left side of the container.</li>
<li><strong>Post</strong> &#8211; The post area is the area with our thumbnail, author information, excerpt and read more link. For the post area I&#8217;ve floated everything to the left then styled each individual class that was included in the HTML such as Images, links, text and etc.</li>
</ul>
<h2>Step 12</h2>
<p>Now we&#8217;re going to style our sidebar and widgets area. Copy and paste the code below into your css.</p>
<pre class="brush:css">

#sidebar {
	width:300px;
	float:right;
}
.widget {
	margin-bottom:15px;
	clear:both;
	list-style-image:url("images/arrow.png");
}
.widget h2 {
	background:#383838;
	color:#fff;
	font-weight:bold;
	font-size:20px;
	padding:10px;
	margin-bottom:10px;
}

.widget ul li a {
	background: url(images/arrow.png) left top no-repeat;
	padding-left: 20px;
	margin-bottom: 10px;
	font-size:12px;
	line-height:20px;
	display:inline-block;
}

#social li {
	float:left;
}

#social li a{
	display:inline;
	float:left;
	background:none;
	padding-left:0;
	margin-left:10px;
}

#adverts li {
	float:left;
	margin-bottom:10px;
}

#adverts li a{
	display:inline-block;
	float:left;
	margin-bottom:10px;
	background:none;
}
</pre>
<ul>
<li><strong>Sidebar</strong> &#8211; For the sidebar I gave it a width of 300px and floated it to the right side of the page.</li>
<li><strong>Widget</strong> &#8211; For the widget area I gave it a margin bottom of 15px which gives each widget a space of 15px. Then I style the widgets list using css and<br />
the arrow image that we cropped earlier in this tutorial.</li>
<li><strong>Social</strong> &#8211; For the social Icons I&#8217;ve floated each item to the left and gave them a margin-left of 10px.</li>
<li><strong>Advertisements</strong> &#8211; For the advertisement I floated each item to the left and told the css to display them as inline block.</li>
</ul>
<p><img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/blueprint/17.jpg" alt="Content Styled" /></p>
<h2>Step 13</h2>
<p>For the last and final part of our css will be the footer. Copy and paste the code below into your css.</p>
<pre class="brush:css">
#footer {
	width:940px;
	margin:0 auto;
	padding:10px 10px 10px 0;
	color:#6b6a6a;
}

#footer span {
	float:right;
}
</pre>
<ul>
<li><strong>Footer</strong> &#8211; For the footer I gave it a width of 940px then added padding. I also told the footer that any paragraph text should be #6b6a6a(grey). I finally added a span to float to the right and take users back to the top page.</li>
</ul>
<p><img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/blueprint/18.jpg" alt="footer styled" /></p>
<p>CONGRATULATIONS You have finished the Blue Print PSD to HMTL tutorial. I know I did not get in depth with this tutorial but from what I have explain should give you all a hint of how to create your very own HTML website layout. I also think the best way to learn is to experience and play with the code. SO take a look at my code and relook at this tutorial and you should have no problem creating your very own website. If you guys would like to see this template converted to wordpress 3.0 just ask below and I may consider it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdevtuts.net/css/blue-print-layout-converting-a-psd-to-html-tutorial/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Create a clean elegant glass like typography wallpaper in photoshop</title>
		<link>http://www.webdevtuts.net/photoshop/create-a-clean-elegant-glass-like-typography-wallpaper-in-photoshop/</link>
		<comments>http://www.webdevtuts.net/photoshop/create-a-clean-elegant-glass-like-typography-wallpaper-in-photoshop/#comments</comments>
		<pubDate>Fri, 16 Jul 2010 21:44:13 +0000</pubDate>
		<dc:creator>Marcell Purham</dc:creator>
				<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[glass]]></category>
		<category><![CDATA[instructions]]></category>
		<category><![CDATA[photoshop glass effect tutorial]]></category>
		<category><![CDATA[photoshop tutorial]]></category>
		<category><![CDATA[text effect]]></category>
		<category><![CDATA[text effect tutorial]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[typography]]></category>
		<category><![CDATA[typography wallpaper]]></category>
		<category><![CDATA[typogrpahy wallpaper tutorial]]></category>

		<guid isPermaLink="false">http://www.webdevtuts.net/?p=1532</guid>
		<description><![CDATA[So I was messing around and photoshop and decided that I needed a tutorial for you Webdevians and came up with something that you all might love. In this tutorial I will show you how to create a very simple but clean glass like typography wallpaper. This tutorial should take no longer then 5-10 minutes so if you have the time why not give it a shot.  <a href="http://www.webdevtuts.net/photoshop/create-a-clean-elegant-glass-like-typography-wallpaper-in-photoshop/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>So I was messing around and Photoshop and decided that I needed a tutorial for you Webdevians and came up with something that you all might love. In this tutorial I will show you how to create a very simple but clean glass like typography wallpaper. This tutorial should take no longer then 5-10 minutes so if you have the time why not give it a shot. </p>
<div class="block_dload">
<a class="dload" href="https://s3.amazonaws.com/webdevtuts/uploads/2010/typoglass/Typography.rar" title="Download" target="_blank">Download</a> <a class="demo" href="https://s3.amazonaws.com/webdevtuts/uploads/2010/typoglass/donebig.jpg" title="demonstration" target="_blank">Final</a>
</div>
<blockquote>
<h2>Things you need</h2>
<ul>
<li><a href="http://www.fonts2u.com/sansserifexbflfcond.font?comments=1#comments" title="Font For tutorial" target="_blank">sansserifexbflfcond Font</a></li>
</ul>
</blockquote>
<h2>Step 1</h2>
<p>Create a new document width:1000px x height:631px background #000000<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/typoglass/1.newdoc.jpg" alt="Create a New Document" title="Create a New Document"></p>
<h2>Step 2</h2>
<p>Select the type tool <b>font:</b>sansserifexbflfcond(medium), <b>size:</b>200px, <b>color:</b>#ff9700, smooth. Now select the Character Panel or go to Window>>Character and change the text Tracking to -60(Text tracking goes from left to right). Then write a word that you would like to use. I&#8217;ve chosen Webdevtuts.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/typoglass/2.createtext.jpg" alt="write your own words" title="Write your own words"></p>
<p>Double click on the text layer or right click>>blending options. Select <b>color overlay</b> and change the color to #1b1b1b. Then select <b>stroke</b>, <b>size:</b> 1, <b>position:</b> outside, <b>blend mode:</b>normal, <b>opacity:</b>100, <b>fill type:</b>color, <b>color;</b> #b4b4b4<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/typoglass/2-2.createtext.jpg" alt="Write own words settings" title="Write own words settings"></p>
<p><img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/typoglass/2.example1.jpg" alt="Example1" title="Example 1"></p>
<h2>Step 3</h2>
<p>Duplicate the text layer then right click>>blending options. Now click on <b>gradient options</b>. <b>blendmode</b>normal, <b>opacity:</b>100, <b>Gradient</b>(Double click on the gradient bar, <b>left color:</b>#adadad, <b>right color:</b>#ffffff), <b>style:</b>linear, <b>angle:</b>90, <b>scale:</b>100<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/typoglass/3.dupset.jpg" alt="Duplicate Text" title="Duplicate Text"></p>
<p><img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/typoglass/example2.jpg" alt="Example2" title="Example 2"></p>
<h2>Step 4</h2>
<p>Select the rounded rectangle tool <b>color:</b>#5f5f5f then draw a circle under your typography.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/typoglass/4.circle.jpg" alt="Create Circle" title="Create a Circle"></p>
<p>Then go to Filter>>blur>>Guassian blur 90px.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/typoglass/4-2.circleblur.jpg" alt="guassian blur" title="Guassian Blur"></p>
<h2>Step 5</h2>
<p>Select the rounded rectangle tool <b>color:</b>#151515 and draw a rectangle under your text(Make sure it goes into the black on both sides). Then go to Filter>>blur>>Guassian blur 5px.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/typoglass/5.shadow.jpg" alt="shadow" title="shadow"></p>
<h2>Step 6</h2>
<p>Duplicate the text layer then create a new group then add the text layer to the group. Right click on the group>>merge group. Go to Edit>>transform>>Flip Vertical. Then drag the vertical text downward until its under the original text.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/typoglass/6.duptext.jpg" alt="Duplicate Text" title="duplicate Text"></p>
<p>Now select the rounded blur eraser tool and erase the bottom text until you have that reflection look. Might take of couple of tries but you&#8217;ll get it.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/typoglass/6-2.textflect.jpg" alt="reflection" title="Text Reflection"></p>
<h2>Step 7</h2>
<p>Select the rounded rectangle tool color: #ffffff, and create a circle on top of your text leaving some of the bottom area untouched.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/typoglass/7.circletop.jpg" alt="Circle" title="Circle On top of text"></p>
<p>Now change the layer opacity to 10%.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/typoglass/7.layeropacity.jpg" alt="Opacity" title="Change Layer Opacity"></p>
<h2>Step 8</h2>
<p>Select the custom shape tool>>Triangle and create a triangle over the text. Try to have it so the triangle is within the glow with just did in the previous step.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/typoglass/7.layeropacity.jpg" alt="Triangle" title="Triangle"></p>
<p>Now go to filter>>blur>>Guassian blur. Set the blur to 80. Then change the layer opacity to 80. You&#8217;re now done and should have a nice elegant glass looking text typography.<br />
<a href="https://s3.amazonaws.com/webdevtuts/uploads/2010/typoglass/donebig.jpg" target="_blank" title="Finish Glass Typography Text"><img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/typoglass/done.jpg"/></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdevtuts.net/photoshop/create-a-clean-elegant-glass-like-typography-wallpaper-in-photoshop/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Create a simple logo in photoshop</title>
		<link>http://www.webdevtuts.net/photoshop/create-a-simple-logo-in-photoshop/</link>
		<comments>http://www.webdevtuts.net/photoshop/create-a-simple-logo-in-photoshop/#comments</comments>
		<pubDate>Fri, 11 Jun 2010 05:43:53 +0000</pubDate>
		<dc:creator>Marcell Purham</dc:creator>
				<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[beginners]]></category>
		<category><![CDATA[easy]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[how to create a logo]]></category>
		<category><![CDATA[logo]]></category>
		<category><![CDATA[photoshop beginner logo tutorial]]></category>
		<category><![CDATA[photoshop logo tutorial]]></category>
		<category><![CDATA[photoshop text effect]]></category>
		<category><![CDATA[text effect tutorial]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://www.webdevtuts.net/?p=1321</guid>
		<description><![CDATA[Well We're going to do things a bit different today. I know there are many designers out there wondering how they can create a logo in photoshop. Today we're going to be using are creative minds and create a simple and fast logo in photoshop. No Sketching, enjoy. <a href="http://www.webdevtuts.net/photoshop/create-a-simple-logo-in-photoshop/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Designing or creating a logo can sometime be extremely stressful if you let it get to you. When it comes to the creation of logo&#8217;s many designers like to sketch them out then bring them into illustrator and finish the job. Well We&#8217;re going to do things a bit different today. I know there are many designers out there wondering how they can create a logo in photoshop. Today we&#8217;re going to be using are creative minds and create a simple and fast logo in photoshop. No Sketching, enjoy. </p>
<div class="block_dload">
<a class="dload" href="https://s3.amazonaws.com/webdevtuts/uploads/2009/07/downloads/Logo.rar" title="Download" target="_blank">Download</a> <a class="demo" href="https://s3.amazonaws.com/webdevtuts/uploads/2010/logotut/final.jpg" title="demonstration" target="_blank">Final</a>
</div>
<blockquote><h3>Things You Need</h3>
<ul>
<li><a href="http://www.dafont.com/airstream.font" target="_blank">Airstream Font</a></li>
</ul>
</blockquote>
<h2>Step 1</h2>
<p>Create a new document 1000px x 72px. Background color:#0096ff.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/logotut/1.new.jpg" alt="Logo"/></p>
<h2>Step 2</h2>
<p>Select the blur brush tool <b>color:</b>#61beff and create a circle blur above our background layer. You should have glow look if done correctly.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/logotut/2.blur.jpg" alt="blur"/></p>
<h2>Step 3</h2>
<p>Select the type tool <b>size:</b>200px, <b>Text:</b>Airstream, color:</b>#ffffff, and create the word Eclipse. Then go to Window>>Character and change to settings below.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/logotut/3.create.jpg" alt="create"/></p>
<h2>Step 4</h2>
<p>Duplicate the text layer and change the color to #000000. Then move text downward left to give it that eclipse look.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/logotut/4.movetext.jpg" alt="move text"/></p>
<h2>Step 5</h2>
<p>Now this is where the neatness comes in or shall I say the great effect of out logo. Select the black text layer and change the color from black to #61beff. Text should now blend in with background.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/logotut/5.blend.jpg" alt="blend"/></p>
<h2>Step 6</h2>
<p>Select the type tool <b>size:</b>30px, <b>Text:</b>Airstream, <b>color:</b>#fff, and create the word Solar. Then add the word to the top upper left of the Eclipse text.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/logotut/6.solar.jpg" alt="solar"/></p>
<h2>Step 7</h2>
<p>Select the rounded rectangle tool <b>color:</b>#fffff and create a circle.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/logotut/7.circle.jpg" alt="circle"/></p>
<p>Duplicate the layer and change the circle color to #61beff. Move it down leftward. Click image below to enlarge!<br />
<a href="http://webdevtuts.s3.amazonaws.com/wp-content/uploads/2010/logotut/logo.jpg" target="_blank"><img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/logotut/final.jpg" alt="secondary color"/></a></p>
<p>You are now done! I know this tutorial was quite simple but you should have an basic understanding of how creating a logo.</p>
<h2>Beyond This tutorial</h2>
<p>If you would like there are many things you could do with this logo or any logo you create. I just change the backgrounds and dropped the shadow on some but there were a ton of other things I could of done with this. So be creative and don&#8217;t just settle for your first idea.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/logotut/creative1.jpg" alt="extra logo"><br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/logotut/creative2.jpg" alt="extra logo"><br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/logotut/creative3.jpg" alt="extra logo"></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdevtuts.net/photoshop/create-a-simple-logo-in-photoshop/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Create a simple but creative graphic typography wallpaper design</title>
		<link>http://www.webdevtuts.net/photoshop/create-a-simple-but-creative-graphic-typography-wallpaper-design/</link>
		<comments>http://www.webdevtuts.net/photoshop/create-a-simple-but-creative-graphic-typography-wallpaper-design/#comments</comments>
		<pubDate>Thu, 22 Apr 2010 04:55:16 +0000</pubDate>
		<dc:creator>Marcell Purham</dc:creator>
				<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[graphic]]></category>
		<category><![CDATA[graphic design]]></category>
		<category><![CDATA[graphic design poster]]></category>
		<category><![CDATA[photoshop wallpaper tutorial]]></category>
		<category><![CDATA[text effect tutorial]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[typography wallpaper]]></category>
		<category><![CDATA[typography wallpaper tutorial]]></category>
		<category><![CDATA[wallpaper]]></category>

		<guid isPermaLink="false">http://www.webdevtuts.net/?p=1108</guid>
		<description><![CDATA[In this tutorial we will be creating a very simple but creative typography wallpaper using photoshop.  <a href="http://www.webdevtuts.net/photoshop/create-a-simple-but-creative-graphic-typography-wallpaper-design/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>There are many creative individuals who are wanting to become graphic designers everyday. Well today is your lucky day! In this tutorial we will be creating a very simple but creative typography wallpaper using photoshop. </p>
<div class="block_dload">
<a class="dload" href="https://s3.amazonaws.com/webdevtuts/uploads/2009/07/downloads/Webdevtuts(TYPOGRAPHY).rar" title="Download" target="_blank">Download</a> <a class="demo" href="https://s3.amazonaws.com/webdevtuts/uploads/2010/04/final.jpg" title="demonstration" target="_blank">Final</a>
</div>
<h3>Things you will need</h3>
<ul>
<li><a href="https://s3.amazonaws.com/webdevtuts/uploads/2010/04/brain.jpg" target="_blank">Brain</a></li>
<li><a href="https://s3.amazonaws.com/webdevtuts/uploads/2010/04/old_paper.jpg" target="_blank">Old paper</a></li>
<li><a href="http://www.fontemple.com/free-download/759-AvantGarde-Demi.html" target="_blank">AvantGarde-Demi font</a></li>
</ul>
<h2>Step 1</h2>
<p>Create new document 1200px x 800px 72dpi. Background Color #efdcb4<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/typo/1.newdoc.jpg" alt="Create new document"/></p>
<h2>Step 2</h2>
<p>Now import or drag the old paper image onto your photoshop canvas.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/typo/2.dragpaper.jpg" alt="drag paper"/></p>
<p>Now go to Filter>>Lighting effect>> <b>Style:</b> soft omni, <b>Light type:</b>Omni,<b>intensity:</b>39, <b>Gloss:</b>-41, <b>Material:</b>-36, <b>Exposure:</b>-8, <b>Ambience:</b>-44, and <b>Texture Channel:</b>none.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/typo/2.paperlight.jpg" alt="paper light"/></p>
<p>Repeat 3-4 times.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/typo/2.paperdone.jpg" alt="paper done"></p>
<h2>Step 3</h2>
<p>Select the type tool <b>font:</b> AvantGarde-Demi, <b>Size:</b>150px, Smooth, <b>color:</b>#4d1a1b and create the word one.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/typo/3.oneword.jpg" alt="oneword"/></p>
<h2>Step 4</h2>
<p>Select the type tool again <b>Size:</b>220px, <b>color:</b>#2b2b2b and create the word Mind. After you have created the word Mind make sure the M connects to E using the move tool. Zoom in if needed.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/typo/4.mind.jpg" alt="mind"/></p>
<h2>Step 5</h2>
<p>Select the type tool <b>Size:</b>35px, <b>color:</b>#ffffff, <b>opacity:</b>50%, and create the word to. Place word right below mind.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/typo/5.toword.jpg" alt="toword"/></p>
<h2>Step 6</h2>
<p>Select the type tool <b>Size:</b>150px, <b>color:</b>#2b2b2b, and create the word Create. Place word to left under the word to(Hope that was not confusing).<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/typo/6.create.jpg" alt="create"/></p>
<h2>Step 7</h2>
<p>Select the type tool <b>Size:</b>200px, <b>color:</b>#381414, and create the word Designs. Place word to bottom right of canvas.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/typo/7.designs.jpg" alt="designs"/></p>
<h2>Step 8</h2>
<p>Select the rectangle tool <b>Color:</b>#4d1a1b, and create a rectangle from the O in ONE to the top of the canvas.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/typo/8.rectop.jpg" alt="rectop"/></p>
<h2>Step 9</h2>
<p>Select the rectangle tool <b>color:</b>#2b2b2b, and create a rectangle from the D in Mind to the right of the canvas.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/typo/9.recside.jpg" alt="recside"/></p>
<p>Right click on rectangle layer>>blending options>>gradient overlay. <b>blendmode:</b>normal, <b>opacity:</b>100, <b>Style:</b>linear,<br />
<b>Angle:</b>0, and <b>Scale:</b>100%.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/typo/9.recsidegrad.jpg" alt="recsidegrad"/></p>
<p>Double click on graident bar. <b>Left color:</b>#2b2b2b, <b>Right color:</b>#191919.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/typo/9.recsidegradbar.jpg" alt="recsidegradbar"/></p>
<h2>Step 10</h2>
<p>Select the rectangle tool <b>color:</b>#381414, and create a rectangle from the D in Designs to the left of the canvas.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/typo/10.recleft.jpg" alt="recleft"/></p>
<p>Right click on rectangle layer>>blending options>>gradient overlay. <b>blendmode:</b>normal, <b>opacity:</b>100, <b>Style:</b>linear,<br />
<b>Angle:</b>0, and <b>Scale:</b>100%.</p>
<p>Double click on graident bar. <b>Left color:</b>#2b2b2b, <b>Right color:</b>#191919 then press ok.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/typo/10.recleftdone.jpg" alt="recleftdone"/></p>
<h2>Step 11</h2>
<p>Now we&#8217;re going to create multiple words. Select the type tool <b>font:</b> AvantGarde-Demi, <b>Size:</b>35px, Smooth, <b>color:</b>#4d1a1b, <b>opacity</b>50% and create the following words. <b>Thought</b>, <b>Graphic</b>, and <b>Astonishing</b>. Place words similar to image below.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/typo/11.subwords.jpg" alt="subwords"/></p>
<h2>Step 12</h2>
<p>Select the vertical type tool(Hold down right click to see vertical option) <b>font:</b> AvantGarde-Demi, <b>Size:</b>20px, Smooth, <b>color:</b>#fff and create the word you.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/typo/12.youword.jpg" alt="youword"/></p>
<p>Right click on the you layer>>blending options>>inner shadow. <b>Blend mode:</b>multiply, <b>Opacity:</b>75%, <b>Angle:</b>120, <b>Distance:</b>0, <b>Choke:</b>0, <b>Size:</b>5.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/typo/12.youinner.jpg" alt="youinner"/></p>
<p>Then select color overlay and change color to #411718.</p>
<h2>Step 13</h2>
<p>Select the type tool <b>font:</b> AvantGarde-Demi, <b>Size:</b>35px, Smooth, <b>color:</b>#fff and create the word Control.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/typo/13.control.jpg" alt="control"/></p>
<p>Right click on the you layer>>blending options>>inner shadow. <b>Blend mode:</b>multiply, <b>Opacity:</b>75%, <b>Angle:</b>120, <b>Distance:</b>0, <b>Choke:</b>0, <b>Size:</b>5. Then select color overlay and change color to #464242.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/typo/13.controldone.jpg" alt="controldone"></p>
<h2>Step 14</h2>
<p>Select the type tool <b>font:</b> AvantGarde-Demi, <b>Size:</b>35px, Smooth, <b>color:</b>#fff and create the word Your.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/typo/14.yourword.jpg" alt="yourword"/></p>
<p>Right click on the you layer>>blending options>>inner shadow. <b>Blend mode:</b>multiply, <b>Opacity:</b>75%, <b>Angle:</b>120, <b>Distance:</b>0, <b>Choke:</b>0, <b>Size:</b>5. Then select color overlay and change color to #2d1010.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/typo/14.yourworddone.jpg" alt="yourworddone"></p>
<h2>Step 15</h2>
<p>Now import/drag brain image onto canvas.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/typo/15.brain.jpg" alt="brain"/></p>
<p>Select the magic eraser tool and erase the black areas. It&#8217;s ok if there&#8217;s a little bit of black showing after use of magic eraser tool.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/typo/15.brainerase.jpg" alt="brainerase"/></p>
<p>Now change layer from normal to darken. Should be located to the left of the layer opacity option. Then change the layer opacity to 50%.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/typo/15.brainblend.jpg" alt="brain blend"/></p>
<h2>Step 16</h2>
<p>Now this is an extra step. If you&#8217;re satisfied with the top results then you&#8217;re done but if you would like to do this last step then lets do it. First thing first, group all of the typography words into one group then right click on folder to merge group.  Select the eraser tool but use some fancy brushes to erase. I think I may have used grudge paint brushes.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/typo/16.extra.jpg" alt="extra"/></p>
<p>Then group all rectangle layers into one group and right click on group folder to merge group. Now select the same brush tool you have used and erase some of the edges. After you have done that you should have a simple but nice typography wallpaper.<br />
<a href="https://s3.amazonaws.com/webdevtuts/uploads/2010/04/final.jpg" target="_blank"><img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/typo/16.done.jpg" alt="done"/></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdevtuts.net/photoshop/create-a-simple-but-creative-graphic-typography-wallpaper-design/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Create an astonishing soccer desktop wallpaper using photoshop</title>
		<link>http://www.webdevtuts.net/photoshop/create-an-astonishing-soccer-desktop-wallpaper-using-photoshop/</link>
		<comments>http://www.webdevtuts.net/photoshop/create-an-astonishing-soccer-desktop-wallpaper-using-photoshop/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 05:29:40 +0000</pubDate>
		<dc:creator>Marcell Purham</dc:creator>
				<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[astonishing]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[photoshop soccer poster]]></category>
		<category><![CDATA[photoshop wallpaper tutorial]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[wallpaper]]></category>
		<category><![CDATA[wallpaper photoshop tutorial]]></category>
		<category><![CDATA[wallpaper tutorial]]></category>
		<category><![CDATA[world cup tutorial]]></category>

		<guid isPermaLink="false">http://www.webdevtuts.net/?p=1012</guid>
		<description><![CDATA[Photoshop is a very hard program to use if you're unfamiliar with it. I know many people are not photoshop savvy and have trouble creating things in photoshop. In this tutorial we will be creating a very simple but nice look desktop wallpaper. <a href="http://www.webdevtuts.net/photoshop/create-an-astonishing-soccer-desktop-wallpaper-using-photoshop/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Photoshop is a very hard program to use if you&#8217;re unfamiliar with it. I know many people are not photoshop savvy and have trouble creating things in photoshop. In this tutorial we will be creating a very simple but nice look desktop wallpaper.</p>
<div class="block_dload">
<a class="dload" href="https://s3.amazonaws.com/webdevtuts/uploads/2009/07/downloads/soccer-wallpaper(webdevtuts).rar" title="Download" target="_blank">Download</a> <a class="demo" href="https://s3.amazonaws.com/webdevtuts/uploads/2010/03/soccer.jpg" title="demonstration" target="_blank">Final</a>
</div>
<p>Before we begin you will need the files below:</p>
<ul>
<li><a href="https://s3.amazonaws.com/webdevtuts/uploads/2010/03/grass_pattern.jpg" target="_blank">Grass Pattern</a></li>
<li><a href="http://www.officialpsds.com/Soccer-players-PSD25981.html" target="_blank">Soccer Players</a></li>
</ul>
<h2>Step 1</h2>
<p>Create a new document 1280px x 1000px.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/soccer/1.new-document.jpg" alt="New Document"/></p>
<h2>Step 2</h2>
<p>Now we&#8217;re going to create our grass background. Right click on the background layer>>blending options>>Pattern overlay and load or choose the grass pattern that you&#8217;ve downloaded.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/soccer/2.grasspattern.jpg" alt="pattern grass"/></p>
<p>Now go to Filter>>Render>>lighting effect<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/soccer/2.lightingeffect.jpg" alt="Lighting Effect"/></p>
<p><b>Style:</b> Triple Spotlight, <b>Light Type:</b> Spotlight, <b>Intensity:</b> 35, <b>Focus:</b>100 , <b>Gloss:</b>0 , <b>Material:</b>69 , <b>Exposure:</b>65 , <b>Ambience:</b>13 , and <b>Texture Channel:</b>none.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/soccer/2.lightingeffectsetting.jpg" alt="Lighting Effect settings"/></p>
<p><img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/soccer/preview1.jpg" alt="Preview 1"/></p>
<h2>Step 3</h2>
<p>Next thing we are going to be doing is creating the actual soccer lines for our feilds. Select the rectangle tool, color:ffffff and create a nice big rectangle across the grass leaving space around the rectangle.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/soccer/3.rectangle.jpg" alt="rectangle"/></p>
<p>Now change the layer <b>opacity</b> to 10% and layer <b>fill</b> to 0. Then right click on the rectangle layer>>blending options>>stroke>> <b>size:</b>3px, <b>position:</b>inside, <b>blend mode:</b>normal, <b>opacity:</b>100, <b>Fill Type:</b>color, #ffffff<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/soccer/3.rectanglesettings.jpg" alt="rectangle settings"/></p>
<p>You should now have a rectangle box for the soccer field.  </p>
<h2>Step 4</h2>
<p>Now we&#8217;re going to be doing the same steps for the rest of the boxes on the field. Create a another rectangle box, color:#fffff. Now change the layer <b>opacity</b> to 10% and layer <b>fill</b> to 0. Then right click on the rectangle layer>>blending options>>stroke>> <b>size:</b>3px, <b>position:</b>inside, <b>blend mode:</b>normal, <b>opacity:</b>100, <b>Fill Type:</b>color, #ffffff<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/soccer/4.rectanglebig.jpg" alt="rectangle big"/></p>
<p>Create another rectangle inside of the one we&#8217;ve just created color:#ffffff. Now change the layer <b>opacity</b> to 10% and layer <b>fill</b> to 0. Then right click on the rectangle layer>>blending options>>stroke>> <b>size:</b>3px, <b>position:</b>inside, <b>blend mode:</b>normal, <b>opacity:</b>100, <b>Fill Type:</b>color, #ffffff<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/soccer/4.rectangleinner.jpg" alt="rectangle inner"/></p>
<p>Now select the rounded rectangle tool color:#ffffff and create a small circle at the top of our rectangle.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/soccer/4.smallcircle.jpg" alt="small circle"/></p>
<p>Now change the layer <b>opacity</b> to 10% and layer <b>fill</b> to 0. Then right click on the rectangle layer>>blending options>>stroke>> <b>size:</b>3px, <b>position:</b>inside, <b>blend mode:</b>normal, <b>opacity:</b>100, <b>Fill Type:</b>color, #ffffff. Then select the eraser tool(square brush) and just drag it down half of the circle leaving the upper half untouched.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/soccer/4.circleearse.jpg" alt="circle erase"/></p>
<h2>Step 5</h2>
<p>Group all the layers we&#8217;ve just created for our soccer field lines except of the big rectangle. Then right click on the group and duplicate it. After you have duplicated the group go to Edit>>Transform>>flip horizontal.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/soccer/5.duplicate.jpg" alt="duplicate"/></p>
<h2>Step 6</h2>
<p>Now lets create our center field marks. Select the rounded rectangle tool color:#fffff, then create a circle in the middle of the field. Now change the layer <b>opacity</b> to 10% and layer <b>fill</b> to 0. Then right click on the rectangle layer>>blending options>>stroke>> <b>size:</b>3px, <b>position:</b>inside, <b>blend mode:</b>normal, <b>opacity:</b>100, <b>Fill Type:</b>color, #ffffff. Then select the line tool color:#ffffff, and hold <b>Shift+drag</b> to create a perfectly straight line going down the middle of the feild. Change the opacity on the straight line to 10%. You should now have something like the image below.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/soccer/6.centerfeild.jpg" alt="center field"/></p>
<h2>Step 7</h2>
<p>Select the type tool, <b>font:</b> Arial,bold <b>size</b> 200px, smooth. Create a fancy text you would like to use. I used Webdevtuts for the example. Then change the text opacity to 30%.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/soccer/7.webdev.jpg" alt="text layer"/></p>
<p>Right click on the text layer>>blending options>>drop shadow. <b>blend mode:</b>multiply, <b>opacity:</b>100, <b>angle:</b>120, <b>distance:</b>5, <b>spread:</b>65, <b>size:</b>5,<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/soccer/7.dropshadow.jpg" alt="drop shadow"/></p>
<p>Now select inner shadow. <b>blend mode:</b>multiply, <b>opacity:</b>100, <b>angle:</b>120, <b>distance:</b>0, <b>spread:</b>0, <b>size:</b>35,<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/soccer/7.innershadow.jpg" alt="inner shadow"/></p>
<p>Now select Bevel &#038; Emboss. <b>style:</b>inner bevel, <b>technique:</b>smooth, <b>depth:</b>205, <b>direction:</b>up, <b>size:</b>174, <b>soften:</b>16.<br />
<b>angle:</b>120, <b>altitude:</b>30, <b>highlight mode:</b>screen color:#dbdbdb, <b>opacity:</b>75, <b>shadow mode:</b>multiply color:#64781c, <b>opacity:75</b><br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/soccer/7.bevel.jpg" alt="Bevel"/></p>
<p>Now select pattern overlay. Choose the grass pattern again that we used for our background.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/soccer/7.pattern.jpg" alt="pattern"/></p>
<p>Now select stroke. <b>size:</b>1, <b>position:</b>outside, <b>angle:</b>120, <b>blend mode:</b>normal, <b>opacity:</b>100, <b>color:</b>#000000.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/soccer/7.stroke.jpg" alt="stroke"/></p>
<p>You should now have something like this.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/soccer/preview2.jpg" alt="preview 2"/></p>
<h2>Step 8</h2>
<p>Select the elispe tool, color:#fffff and create a circle in the middle of our field. Then change layer filter to exclusion(by default it should say normal) opacity: 70% and fill to 8%.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/soccer/8.spotlight.jpg" alt="spotlight"/></p>
<h2>Step 9</h2>
<p>Now lets add our soccer players. Drag or insert the soccer players. Players might be to big at first but just resize them to the appropriate fixture.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/soccer/9.players.jpg" alt="players"/></p>
<h2>Step 10</h2>
<p>Duplicate the Webdevtuts text layer then change the text to game time and resize it to 100px. Right click on the text layer>>blending options>>drop shadow. <b>blend mode:</b>multiply, <b>opacity:</b>100, <b>angle:</b>120, <b>distance:</b>5, <b>spread:</b>65, <b>size:</b>5,<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/soccer/7.webdev.jpg" alt="drop shadow2"/></p>
<p>Now select gradient overlay. <b>blend mode:</b> normal, <b>gradient:</b> left color#858585, right color, #000000, <b>style:</b>linear, <b>angle:</b>90, <b>scale:</b>100. Then click ok then you&#8217;re finish. You<br />
have created your very own soccer theme wallpaper. If you follow this tutorial I would love to see other outcome.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/soccer/10.grad2.jpg" alt="grad 2"/></p>
<p>Here is the final image <a href="https://s3.amazonaws.com/webdevtuts/uploads/2010/03/soccer.jpg"><img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/soccer/final.jpg" alt="final"/></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdevtuts.net/photoshop/create-an-astonishing-soccer-desktop-wallpaper-using-photoshop/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Create a nice clean blog Layout in photoshop</title>
		<link>http://www.webdevtuts.net/photoshop/create-a-nice-clean-blog-layout-in-photoshop/</link>
		<comments>http://www.webdevtuts.net/photoshop/create-a-nice-clean-blog-layout-in-photoshop/#comments</comments>
		<pubDate>Thu, 18 Feb 2010 05:20:38 +0000</pubDate>
		<dc:creator>Marcell Purham</dc:creator>
				<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[blog design photoshop]]></category>
		<category><![CDATA[blog website design tutorial]]></category>
		<category><![CDATA[clean user interface]]></category>
		<category><![CDATA[layout]]></category>
		<category><![CDATA[photoshop web design]]></category>
		<category><![CDATA[photoshop web layout]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[website layout tutorial]]></category>

		<guid isPermaLink="false">http://www.webdevtuts.net/?p=957</guid>
		<description><![CDATA[In this tutorial you will learn how to create a high quality blog layout for your website using photoshop. What are you waiting for go enhance your skills by following this tutorial. <a href="http://www.webdevtuts.net/photoshop/create-a-nice-clean-blog-layout-in-photoshop/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>In this tutorial you will learn how to create a high quality blog layout for your website using photoshop. What are you waiting for go enhance your skills by following this tutorial.</p>
<div class="block_dload">
<a class="dload" href="https://s3.amazonaws.com/webdevtuts/uploads/2009/07/downloads/bloglayout.zip" title="Download" target="_blank">Download</a> <a class="demo" href="https://s3.amazonaws.com/webdevtuts/uploads/2010/layoutt/bloglayout.jpg" title="demonstration" target="_blank">Final</a>
</div>
<h2>Step 1</h2>
<p>Create a new a document <b>Width:</b>960px x <b>Height:</b> 1200px, <b>color:</b>#313131<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/layoutt/new-document.jpg" alt="new document"/></p>
<h2>Step 2</h2>
<p>Now were going to give our website a little space. First things first, make sure you have your ruler turned on then add a guide line to 0px and 960px.<br />
<b>Note:</b> To insert a guide line just select the move tool and click on the grid and drag it.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/layoutt/guide-lines.jpg" alt="guide lines"/></p>
<p>Now press <b>CTRL+ALT+C</b> for windows or <b>CMD+ALT+C</b> for Mac. Now you should see a Canvas size box. This is how we&#8217;re going to give our document more room for our website. Select the left arrow and change the width from 960px to 1160px then press ok.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/layoutt/left-arrow.jpg" alt="left-arrow"/></p>
<p>Now repeat the last step but select the right arrow and change the width from 1160px to 1360px then press ok. Now you should have 960px in the middle<br />
of your document.</p>
<p><b>Note:</b> If your document is white or any other color on either side just select the paint bucket tool and change it to the background color</p>
<p><img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/layoutt/2sides.jpg" alt="2sides"/></p>
<h2>Step 3</h2>
<p>Now were going to create a navigation menu. Select the rounded rectangle tool, 5px radius, color:#1c1b1b and draw a rounded rectangle from 0px to 960px. If you&#8217;re lost just just draw the rectangle from guide line to guide line.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/layoutt/nab-bg.jpg" alt="nav-bg"/></p>
<h2>Step 4</h2>
<p>Keep the rounded rectangle tool selected just change the color:#515151, and draw another rounded rectangle slightly over the menu background.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/layoutt/wrap-bg.jpg" alt="wrap-bg"/></p>
<h2>Step 5</h2>
<p>Now create a rounded rectangle box <b>color:</b>#fff. Make sure you leave 15px on both sides of the rectangle.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/layoutt/main-bg.jpg" alt="main-bg"/></p>
<h2>Step 6</h2>
<p>Now create another rounded rectangle for our sidebar. Leave a little space at the top for out logo. There is 15px space in between elements.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/layoutt/side-bg.jpg" alt="side-bg"/></p>
<h2>Step 7</h2>
<p>Ok so now that the layout is basically there we will start with adding out menu navigation links. Select the type tool, Arial, Bold, 14px, sharp, color:#686868. Then type out the correct menu links. To get the single line text just double click when you have the type tool selected. Then after you have the text entered create another rounded rectangle color #000 for our rollover.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/layoutt/menu-links.jpg" alt="menu-links"/></p>
<h2>Step 8</h2>
<p>Now were going to make our logo. Select the type tool color:#fff, Arial, Bold, 36px, sharp. Now write out a custom name for your blog.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/layoutt/text-logo.jpg" alt="text-logo"/></p>
<p>Now right click on the text layer>>Blending options>>Inner shadow <b>Blendmode:</b>multiply, <b>Opacity:</b>75, <b>Angle:</b>120, <b>Distance</b>0, <b>Choke:</b>0, <b>Size:</b>5.<br />
<mg class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/layoutt/8.innershadow.jpg" alt="inner shadow"/></p>
<p>Then select the color overlay check box and change the color to #3f3f3f. You should now have a letterpress logo effect.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/layoutt/logopress.jpg" alt="logopress"/></p>
<p>Select the type tool color:#fff, Arial, regular, 10px, sharp. Then write out a sub heading. For the letterpress symbol all that is needed is to duplicate the letterpress text layer and select any symbol from the custom symbol panel. Photoshop will ask you if you would like to rasterize layer and simply click yes then insert your symbol. Your final logo should look exactly like this or similar to the one below<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/layoutt/8.logopressfinal.jpg" alt="logopressfinal"/></p>
<h2>Step 9</h2>
<p>Select the rectangle tool color:#313131, then create a rectangle box for our featured slider. Leave 15px on each side and the top.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/layoutt/9.featured-slider.jpg" alt="featured slider"/></p>
<p>Now find any image you would like and lets insert it over our slider background leaving 5px around the entire image.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/layoutt/9.picborder.jpg" alt="picborder"/> </p>
<p>Select the rectangle tool color:#313131, and create a rectangle just a bit above our image then change the opacity to 50%.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/layoutt/9.opacity.jpg" alt="opacity"/></p>
<p>Now select the type tool color:#ffffff, Arial, Bold, 18px, Sharp then create a generic post heading.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/layoutt/9.heading.jpg" alt="heading"/></p>
<h2>Step 10</h2>
<p>Now we&#8217;re going to create our blog post. I will only demonstrate 1 blog post because after you have one completed you can duplicate the rest. Select the rectangle tool color:#313131, then create a rectangle box.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/layoutt/10.box.jpg" alt="box"/></p>
<p>Right click on the box layer>>blending options>>gradient overlay. <b>Blendmode:</b>Normal, <b>Opacity:</b>100, <b>Style:</b>Linear, <b>Angel:</b>90, <b>Scale:</b>100.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/layoutt/10.gradset.jpg" alt="gradset"/></p>
<p>Now double click on the gradient bar>> <b>Left Color:</b>#e9e9e9, <b>Right Color:</b>#ffffff.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/layoutt/10.gradcolor.jpg" alt="gradcolor"/></p>
<p>You should have something like the image below.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/layoutt/10.preview1.jpg" alt="preview1"/></p>
<p>Now we will add a thumbnail image to our design. You can use any image just make sure you leave 5px around the entire image. Try to make height similar to mine.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/layoutt/10.thumb.jpg" alt="thumb"/></p>
<p>Select the type tool color:#313131, Arial, Bold, 14px, Sharp then create a generic post title.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/layoutt/10.title.jpg" alt="title"/></p>
<p>Select the type tool color:#515151, Arial, Regular, 12px, Sharp then create a generic post information heading. Link color:#cc4343.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/layoutt/10.post-info.jpg" alt="post info"/></p>
<p>Select the type tool color:#515151, Arial, Regular, 12px, Sharp then create a generic excerpt(Little information about the post). Link color:#313131(&#8211;>Read More<--).<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/layoutt/10.excerpt.jpg" alt="excerpt"/></p>
<p>For our final step select the type tool color:#515151, Arial, Regular, 12px, Sharp then create some post tags. Link color:#cc4343.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/layoutt/10.tags.jpg" alt="tags"/></p>
<h2>Step 11</h2>
<p>Now that we have our 1 of the posts completed we can now duplicate the other 4. Group all the layers for the post into one folder then right click on the folder and <b>duplicate group</b>. You can then change titles and thumbnails images if you would like. It makes it seem more like a live website preview.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/layoutt/11.blog-4.jpg" alt="blog 4"/></p>
<h2>Step 12</h2>
<p>Now we will work on the sidebar. Before we begin working on the sidebar make sure you leave 15px on the sides and top of the sidebar. Google search or create 4 images 125px x 125px for our ad spots. Then place the ads into the sidebar.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/layoutt/12.ads.jpg" alt="ads"/></p>
<h2>Step 13</h2>
<p>Select the rectangle tool color:#ededed then create a rectangle box for our popular post widget.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/layoutt/13.pop-bg.jpg" alt="pop-bg"/></p>
<p>Select the type tool color:#515151, Arial, Regular, 20px, Sharp then create a POPULAR POST heading.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/layoutt/13.pop-head.jpg" alt="pop-head"/></p>
<p>Select the type tool color:#606060, Arial, Regular, 20px, Sharp then create some generic post title headings. Make sure they are all cap so that<br />
they look the same as the images below. The highlighted color:#2c2c2c.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/layoutt/13.pop-title.jpg" alt="pop-title"/></p>
<h2>Step 14</h2>
<p>For our final step we we now create the footer text. Select the type tool color:#515151, Arial, Regular, 12px, Sharp then create your footer text. All<br />
text below in image below was used on one line.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/layoutt/14.footertext.jpg" alt="footertext"/></p>
<p>You&#8217;re now done! Your final layout should look like the image below(Click to enlarge)</p>
<p><a href="https://s3.amazonaws.com/webdevtuts/uploads/2010/layoutt/bloglayout.jpg"><img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/layoutt/bloglayout.jpg" alt="final image" width="550" height="600"/></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdevtuts.net/photoshop/create-a-nice-clean-blog-layout-in-photoshop/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Create an awesome user friendly button in photoshop</title>
		<link>http://www.webdevtuts.net/photoshop/create-an-awesome-user-friendly-button-in-photoshop/</link>
		<comments>http://www.webdevtuts.net/photoshop/create-an-awesome-user-friendly-button-in-photoshop/#comments</comments>
		<pubDate>Sat, 30 Jan 2010 21:27:22 +0000</pubDate>
		<dc:creator>Marcell Purham</dc:creator>
				<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[beginners]]></category>
		<category><![CDATA[button]]></category>
		<category><![CDATA[photoshop web button tutorial]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[user friendly web button]]></category>
		<category><![CDATA[web 2.0]]></category>
		<category><![CDATA[web button tutorial]]></category>

		<guid isPermaLink="false">http://www.webdevtuts.net/?p=910</guid>
		<description><![CDATA[Whenever creating buttons us designers often just use a gradient. But doesn't that get old sometime? In this tutorial you will learn how to create a user friendly button using some pretty simple photoshop techniques.   <a href="http://www.webdevtuts.net/photoshop/create-an-awesome-user-friendly-button-in-photoshop/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Whenever creating buttons us designers often just use a gradient. But doesn&#8217;t that get old sometime? In this tutorial you will learn how to create a user friendly button using some pretty simple photoshop techniques. </p>
<div class="block_dload">
<a class="dload" href="https://s3.amazonaws.com/Webdevtuts/uploads/2009/07/downloads/buttons.zip" title="Download" target="_blank">Download</a> <a class="demo" href="https://s3.amazonaws.com/Webdevtuts/uploads/2010/button/final-extra.jpg" title="demonstration" target="_blank">Final</a>
</div>
<p>Create a New Document. It can be any size.</p>
<h2>Step 1</h2>
<p>Select the rounded rectangle tool, <strong>radius:</strong> 5px, <strong>color:</strong>#1f1f1f and draw a rectangle in the middle of your canvas.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/Webdevtuts/uploads/2010/button/1.round.jpg" alt="rounded rectangle" /></p>
<p>Right click on button layer&gt;&gt;blending options&gt;&gt;gradient overlay. <strong>Blend mode:</strong>normal, <strong>Opacity:</strong>100%, <strong>Style:</strong>linear, <strong>Angle</strong>90, <strong>Scale:</strong>54%.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/Webdevtuts/uploads/2010/button/1-2.graidentset.jpg" alt="Gradient settings" /></p>
<p>Now double click on the gradient bar. <strong>Left Color:</strong>#1f1f1f, <strong>Right Color:</strong>#343434.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/Webdevtuts/uploads/2010/button/1-3-gradientbar.jpg" alt="gradient bar" /></p>
<p><img class="aligncenter" src="https://s3.amazonaws.com/Webdevtuts/uploads/2010/button/pre1.jpg" alt="Example 1" /></p>
<h2>Step 2</h2>
<p>Now were going to give our button a little of pop out technique. Ok so you know the first rectangle layer we&#8217;ve created, we are going to take that layer and duplicate it 2 times. After you have duplicated it 2 times you should now have 3 buttons in total. First Rectangle will be the gradient we&#8217;ve created in the beginning of this tutorial and the second 2 buttons will be changed from gradients to a 1 solid color.</p>
<p><strong>Note:</strong> To change a layer from a gradient to 1 solid color all you would have to do is right click on the layer&gt;&gt;blending options&gt;&gt;and unselect the gradient overlay box. Then select the<br />
color check box and change the color without making a new button over again.</p>
<p><strong>First rectangle:</strong> Gradient<br />
<strong>Middle Rectangle:</strong> #3D3D3D<br />
<strong>Last Rectangle:</strong> #343434</p>
<p><img class="aligncenter" src="https://s3.amazonaws.com/Webdevtuts/uploads/2010/button/2.layout.jpg" alt="layout" /></p>
<p>Now that you have all 3 buttons made with the proper colors we will now make them them close to one another. Zoom in and select the move tool. Now drag the two layers close to the gradient layer. You should now see a little pop out. If you can not then it might be because of the white canvas.</p>
<p><img class="aligncenter" src="https://s3.amazonaws.com/Webdevtuts/uploads/2010/button/2.layoutclose.jpg" alt="Layout closer" /></p>
<p><img class="aligncenter" src="https://s3.amazonaws.com/Webdevtuts/uploads/2010/button/pre2.jpg" alt="Example 2" /></p>
<h2>Step 3</h2>
<p>Now we will add our little gloss inside of the button. Select the rounded rectangle tool, <strong>color:</strong>#ffffff. Now draw a rectangle at the top of the button and change the <b>opacity</b> to 1%, and <b>fill</b> to 10%.</p>
<p><img class="aligncenter" src="https://s3.amazonaws.com/Webdevtuts/uploads/2010/button/3.insidewhite.jpg" alt="white layer" /></p>
<p><img class="aligncenter" src="https://s3.amazonaws.com/Webdevtuts/uploads/2010/button/3.after.jpg" alt="After" /></p>
<h2>Step 4</h2>
<p>Select the type tool <strong>color:</strong> #4b4b4b, <strong>font size:</strong>30px arial. Right click on the text layer&gt;&gt;blending options&gt;&gt;Inner shadow. <strong>blend mode:</strong> multiply, <strong>distance</strong> 0, <strong>choke:</strong> 0 , <strong>size:</strong> 5<br />
<img class="aligncenter" src="https://s3.amazonaws.com/Webdevtuts/uploads/2010/button/4.innershadow.jpg" alt="inner shadow" /></p>
<p>Now select the color overlay check box and change the color to #333333.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/Webdevtuts/uploads/2010/button/4.ex.jpg" alt="inner shadow after" /></p>
<h2>Step 5</h2>
<p>Select the type tool <strong>color:</strong> #4b4b4b, <strong>font size:</strong>12px arial. Right click on the text layer&gt;&gt;blending options&gt;&gt;Inner shadow. <strong>blend mode:</strong> multiply, <strong>opacity:</strong> 75%, <strong>angle:</strong> 120, <strong>distance</strong> 5, <strong>choke:</strong> 0 , <strong>size:</strong> 5<br />
<img class="aligncenter" src="https://s3.amazonaws.com/Webdevtuts/uploads/2010/button/5.innerset.jpg" alt="inner set" /></p>
<p>Now select the color overlay check box and change the color to #ffffff. And you should now have a nice looking button.</p>
<p><b>Note:</b> Click to Enlarge!</p>
<p><a href="https://s3.amazonaws.com/Webdevtuts/uploads/2010/button/5.button.jpg" target="_blank"><img class="aligncenter" src="https://s3.amazonaws.com/Webdevtuts/uploads/2010/button/5.button.jpg" alt="finish" width="550" height="200" /></a></p>
<p>You can change the colors of these buttons very easy without creating new buttons. Just change the gradients and background colors and you will be good to go.</p>
<p><b>Note:</b> Click to Enlarge!<br />
<a href="https://s3.amazonaws.com/Webdevtuts/uploads/2010/button/final-extra.jpg" target="_blank"><img class="aligncenter" src="https://s3.amazonaws.com/Webdevtuts/uploads/2010/button/final-extra.jpg" alt="button examples" width="550" height="200" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdevtuts.net/photoshop/create-an-awesome-user-friendly-button-in-photoshop/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced
Content Delivery Network via Amazon Web Services: S3: webdevtuts.s3.amazonaws.com

Served from: www.webdevtuts.net @ 2012-02-04 03:13:00 -->
