<?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>Last Webdesigner a blog about Web Design &#187; tutorial</title>
	<atom:link href="http://lastwebdesigner.com/tag/tutorial/feed" rel="self" type="application/rss+xml" />
	<link>http://lastwebdesigner.com</link>
	<description>Resources for web designers</description>
	<lastBuildDate>Wed, 19 Aug 2009 10:19:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Simple animated menu with jquery</title>
		<link>http://lastwebdesigner.com/jquery/simple-animated-menu-with-jquery.html</link>
		<comments>http://lastwebdesigner.com/jquery/simple-animated-menu-with-jquery.html#comments</comments>
		<pubDate>Wed, 10 Jun 2009 13:50:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Jquery]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[downloads]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://lastwebdesigner.com/?p=173</guid>
		<description><![CDATA[Jquery is, of course, one the best( or the best) JavaScript framework actually. With jquery we can create amazing effects on the web pages, writing some few lines of codes, and you don&#8217;t need to be an experienced web programmer. In this post I will show you how to create a nice and simple vertical [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p><a title="jquery" href="http://docs.jquery.com/Downloading_jQuery"><strong>Jquery</strong></a> is, of course, one the best( or the best) JavaScript framework actually.</p>
<p>With <strong>jquery</strong> we can create amazing effects on the web pages, <span style="text-decoration: underline;">writing some few lines of codes, and you don&#8217;t need to be an experienced web programmer.<br />
</span></p>
<p>In this post I will show you how to create a nice and <strong>simple vertical menu with css and jquery</strong>, writing few lines of  code. <span id="more-173"></span></p>
<p>You can see the final result at <a title="animated menu with jquery" href="http://lastwebdesigner.freewebhostx.com/simple-jquery-menu/">this page</a>, and you can download the complete source code with example from here.<br />
First, <a title="jquery" href="http://docs.jquery.com/Downloading_jQuery">download <strong>jquery</strong> from the <strong>official site</strong>,</a> and after link it to your document. I&#8217;ve chooses to put the source code, for the css style and the javascript-jquery, in another file, you can put all in one if you want, IMHO I think is always better to separate it, it&#8217;s your choose.<br />
Create the page and links the javascript file it&#8217;s really easy, how I suppose you know :</p>
<blockquote><p><strong>&lt;link href=&#8221;style.css&#8221; rel=&#8221;stylesheet&#8221; type=&#8221;text/css&#8221;/&gt;<br />
&lt;script src=&#8221;js/jquery.js&#8221; type=&#8221;text/javascript&#8221;&gt;&lt;/script&gt;<br />
&lt;script src=&#8221;js/menu.js&#8221; type=&#8221;text/javascript&#8221;&gt;&lt;/script&gt;</strong></p></blockquote>
<p>After I&#8217;ve created a simple page structure, with the menu,like the &#8220;semantic&#8221; want,  is  in a  list, in this case unordered :</p>
<blockquote><p><strong>&lt;div id=&#8221;navigation&#8221;&gt;<br />
&lt;ul&gt;<br />
&lt;li&gt;&lt;a href=&#8221;#&#8221;&gt;Home&lt;/a&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;a href=&#8221;#&#8221;&gt;Freebies&lt;/a&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;a href=&#8221;#&#8221;&gt;Tutorials&lt;/a&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;a href=&#8221;#&#8221;&gt;Downloads&lt;/a&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;a href=&#8221;#&#8221;&gt;Contact&lt;/a&gt;&lt;/li&gt;<br />
&lt;/ul&gt;<br />
&lt;/div&gt;</strong></p></blockquote>
<h3>Now  style the menu :</h3>
<blockquote><p><strong>#navigation{<br />
width: 200px;<br />
}<br />
#navigation ul{<br />
list-style: none;<br />
}<br />
#navigation ul li{<br />
height: 30px;<br />
border-bottom: 1px dotted #ccc;<br />
}<br />
#navigation ul li a{<br />
text-indent: 20px;<br />
padding: 5px 0;<br />
display: block;<br />
height: 20px;<br />
text-decoration: none;<br />
color: #434343;<br />
background-image: url(bull.png);<br />
background-repeat: no-repeat;<br />
background-position: 5px 6px ;<br />
}<br />
#navigation ul li a:hover{<br />
background-color: #8E8963;<br />
background-image: url(bull.png);<br />
background-repeat: no-repeat;<br />
background-position: 15px 6px ;<br />
color: white;<br />
}</strong></p></blockquote>
<p>What I&#8217;ve done here? Simply :</p>
<p>give to a menu a fixed with, styling the<strong> li </strong>and the <strong>link </strong> , give to a link a <span style="text-decoration: underline;">background image</span> <strong>(background-image: url(bull.png)</strong>; ) and when the mouse is over  (<span style="text-decoration: underline;"><strong>a:hover</strong></span>) , change the background color (not the image) and the <strong>link color.</strong></p>
<p>Another thing to note is that I&#8217;ve used the <strong>backround-position property </strong>for the image, so with this I can move the image around  changing the values of the position (X and Y axis) and make this appear aligned with the text.</p>
<p>With <strong>Jquery</strong> I will &#8220;<strong>move</strong>&#8221; and <span style="text-decoration: underline;">animate</span> the<span style="text-decoration: underline;"> link on the right</span> when the <strong>mouse is over,</strong> so I need to move the image too, and for the reason that I&#8217;ve used the image like background and no like image in the html code, I need to move that when the link will animated, maybe using directly the image in the code the effect will come better, you can try at your own.</p>
<p>Ok now we can go to our <strong>javascript</strong> and write the <strong>jquery</strong>-code . Create a new js file and call &#8220;<strong>menu.js&#8221;</strong>, write this simple code :</p>
<blockquote><p><strong>$(document).ready(function(){<br />
var Duration = 150; //time in milliseconds</strong></p>
<p><strong>$(&#8216;#navigation ul li a&#8217;).hover(function() {<br />
$(this).animate({ paddingLeft: &#8217;20px&#8217; }, Duration);<br />
}, function() {<br />
$(this).animate({ paddingLeft: &#8217;0px&#8217; }, Duration);<br />
});</strong></p>
<p><strong>});</strong></p></blockquote>
<p>OK  let me explain this code:</p>
<p>The first thing is to tell to <strong>jquery</strong> that, when the <strong>DOM</strong> <span style="text-decoration: underline;">is loaded</span> ( this is rally important)  :</p>
<blockquote><p><strong>$(document).ready(function(){<br />
});</strong></p></blockquote>
<p>This is the first thing that you <span style="text-decoration: underline;">must learn</span> about <strong>Jquery</strong>, with this piece of code, you will tell to <strong>Jquery</strong> this :  &#8220;do the instruction only when the entire document is loaded&#8221;.</p>
<p>This is great and really usefull because  you don&#8217;t have to put any &#8220;behavioral&#8221; markup in the HTML, and this is the reason why you can separate every <strong>Javascript</strong> from the document.</p>
<p>After I&#8217;ve created the function that must be executed when the DOM is ready :</p>
<blockquote><p><strong>var Duration = 150; //time in milliseconds</strong></p>
<p><strong>$(&#8216;#navigation ul li a&#8217;).hover(function() {<br />
$(this).animate({ paddingLeft: &#8217;20px&#8217; }, Duration);<br />
}, function() {<br />
$(this).animate({ paddingLeft: &#8217;0px&#8217; }, Duration);<br />
});</strong></p></blockquote>
<p>And it&#8217;s all! What it means this? I will try to explain in a simple words :</p>
<p>With the <strong>$()</strong>, you can get every element of the <strong>DOM</strong>, an it is like the <strong>documentGetElement</strong> in the normal javascript.</p>
<p>So I Want that ,when the mouse is over the tag li inside the navigation div, start the animation effect, so I&#8217;ll &#8220;take&#8221; this element with the dollar function</p>
<blockquote><p><strong>$(&#8216;#navigation ul li a&#8217;)</strong></p></blockquote>
<p><span style="text-decoration: underline;">This is the second important thing you must learn on Jquery. <img src='http://lastwebdesigner.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' title="Simple animated menu with jquery" /> </span></p>
<p>And finally, I&#8217;ve used the animation on the menu, using the <strong>animate function </strong>of <strong>jquery</strong>, really simple to use, in this case I gave<span style="text-decoration: underline;"><strong> 20px at padding-left css property</strong></span> to make that the text &#8220;move&#8221; on the right side .</p>
<blockquote><p><strong>$(this).animate({ paddingLeft: &#8217;20px&#8217; }, Duration);</strong></p></blockquote>
<p>The<strong> $(this)</strong> refer to the element that we are using, animate is the <strong>jquery</strong> function (following the link you can learn more about this function) and <strong>Duration</strong> is the duration of the time, I&#8217;ve used a starting variable to give a value <strong>(var Duration = 150; ).</strong></p>
<p>The rest of the code is another function to  ensure that the link returns at the original position.</p>
<blockquote><p><strong>,function() {<br />
$(this).animate({ paddingLeft: &#8217;0px&#8217; }, Duration);<br />
});</strong></p></blockquote>
<p>Conclusion : <strong>Jquery</strong> is the best<span style="text-decoration: underline;"> framework that I&#8217;ve ever used</span>, is simple, easy to learn and make the web designer&#8217;s life really easy, although you are not a experienced programmer.</p>
<p>Here the link relativies to <strong>jquery</strong> and maybe utils for this simple tutorial :</p>
<p><a title="jquery" href="http://docs.jquery.com/Downloading_jQuery"><strong>Download Jquery</strong></a></p>
<p><a title="learn jquery" href="http://www.learningjquery.com/"><strong>Learn Jquery</strong></a></p>
<p><strong><a title="animate function" href="http://docs.jquery.com/Effects/animate#paramsdurationeasingcallback">The animate function of jquery</a><br />
</strong></p>
<h4>Well you can see the final results here :</h4>
<blockquote><p><a title="simple jquery menu" href="http://lastwebdesigner.freewebhostx.com/simple-jquery-menu/"><strong>Simple menu with Jquery.</strong></a></p></blockquote>
<p><a class="download" title="jquery simple menu" href="http://lastwebdesigner.com/downloads/jquery-simple-menu.zip">Download jquery simple menu with example :</a><br />
<h3 class="related-title">This posts may be interesting too</h3>
<ul class="related_post">
<li><a href="http://lastwebdesigner.com/jquery/how-to-send-a-mail-with-php-ajax-and-jquery-in-facebook-style.html" title="How to send a mail with php ajax and jquery in facebook style">How to send a mail with php ajax and jquery in facebook style</a></li>
<li><a href="http://lastwebdesigner.com/photoshop/create-a-badge-20-with-photoshop.html" title="Create a badge 2.0 with Photoshop">Create a badge 2.0 with Photoshop</a></li>
<li><a href="http://lastwebdesigner.com/photoshop/create-a-fire-text-with-photoshop.html" title="Create a fire text with Photoshop">Create a fire text with Photoshop</a></li>
<li><a href="http://lastwebdesigner.com/web-design/last-mac-editors-collection.html" title="Last Mac editors collection.">Last Mac editors collection.</a></li>
<li><a href="http://lastwebdesigner.com/photoshop/rain-effect-with-photoshop-in-6-steps.html" title="Rain effect with photoshop in 6 steps">Rain effect with photoshop in 6 steps</a></li>
</ul>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://lastwebdesigner.com/jquery/simple-animated-menu-with-jquery.html/feed</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Create a badge 2.0 with Photoshop</title>
		<link>http://lastwebdesigner.com/photoshop/create-a-badge-20-with-photoshop.html</link>
		<comments>http://lastwebdesigner.com/photoshop/create-a-badge-20-with-photoshop.html#comments</comments>
		<pubDate>Sat, 23 May 2009 17:11:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[photoshop tutorials]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[web 2.0]]></category>

		<guid isPermaLink="false">http://lastwebdesigner.com/?p=129</guid>
		<description><![CDATA[Well &#8230; after the tutorial to make fire text with photoshop, In this tutorial I&#8217;ll show you how to make a badge with Photoshop. The are is a tipical graphic elements of the web 2.0, a lots of site use the badge. Usually I see that are used a lots in the Header of the [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Well &#8230; after the<a title="fire text photoshop" href="http://lastwebdesigner.com/photoshop/create-a-fire-text-with-photoshop.html"><strong> tutorial to make fire text with photoshop</strong></a>, In this tutorial I&#8217;ll show you how to<span style="text-decoration: underline;"><strong> make a badge with Photoshop. </strong></span></p>
<p>The are is a tipical graphic  elements of the<strong> web 2.0,</strong> a lots of site use the badge. Usually I see that are used a lots in the Header of the pages, some in the logos, with reflection text, anyway, this give to your<strong> website a little touch of 2.0.</strong></p>
<p>If you don&#8217;t want to make your own badge but you want something like  &#8220;download and  use&#8221;, you can  <a title="badge 2.0 photoshop from dezinerfolio" href="http://www.dezinerfolio.com/2007/04/23/web-20-badges-free-download?page=11"> download a fantastic badge sets, psd source included, from Dezinerfolio,</a> a great blog with a lots of<strong> free resource</strong>, one of my favorite blog.<span id="more-129"></span></p>
<p>Open <strong>Photoshop</strong> and create a a new document 300*300 px with blank background.</p>
<p>From the Tools Palette, choose the Polygon tool, and use these settings :</p>
<div id="attachment_130" class="wp-caption alignnone" style="width: 310px"><a rel="lightbox" href="http://lastwebdesigner.com/wp-content/uploads/2009/05/16.jpg"><img class="size-medium wp-image-130 img-post" title="16" src="http://lastwebdesigner.com/wp-content/uploads/2009/05/16-300x187.jpg" alt="badge 2.0" width="300" height="187" /></a><p class="wp-caption-text">badge 2.0</p></div>
<p>Now draw the badge usig #dc0b0b like first color now you have this :</p>
<div id="attachment_131" class="wp-caption alignnone" style="width: 310px"><a rel="lightbox" href="http://lastwebdesigner.com/wp-content/uploads/2009/05/21.jpg"><img class="size-full wp-image-131 img-post" title="21" src="http://lastwebdesigner.com/wp-content/uploads/2009/05/21.jpg" alt="badge" width="300" height="300" /></a><p class="wp-caption-text">badge</p></div>
<p>Now go to blending options (right click on the layer in the layers window) and use these settings :</p>
<blockquote><p><strong>Drop shadow opacity 50% , distance 5 spread 0 size 15</strong></p>
<p><strong>Bevel and emboss size 2  soften 0 direction up<br />
</strong></p>
<p><strong>stroke size 5 position inside color #FFFFFF</strong></p></blockquote>
<p>And this should the result :</p>
<div id="attachment_132" class="wp-caption alignnone" style="width: 310px"><a rel="lightbox" href="http://lastwebdesigner.com/wp-content/uploads/2009/05/31.jpg"><img class="size-full wp-image-132 img-post" title="31" src="http://lastwebdesigner.com/wp-content/uploads/2009/05/31.jpg" alt="badge settings" width="300" height="300" /></a><p class="wp-caption-text">badge settings</p></div>
<p>Now we need to create the blur on the top of the badge.  With the elliptical marquee tool, make a selection in the top left corner of the badge and create a new layer from the layer menu :</p>
<p><a rel="lightbox" href="http://lastwebdesigner.com/wp-content/uploads/2009/05/42.jpg"><img class="alignnone size-full wp-image-134 img-post" title="42" src="http://lastwebdesigner.com/wp-content/uploads/2009/05/42.jpg" alt="42 Create a badge 2.0 with Photoshop" width="366" height="330" /></a></p>
<p>Switch the<strong> main color to white</strong> and select the<strong> gradient tools </strong>and from the <strong>gradient color menu </strong>choose <strong>foreground to transparent </strong>and<strong><span style="text-decoration: underline;"> trace a line from the top left corner to the bottom right corner of the badge, </span></strong>after deselect all, ctrl +d and apple+d in mac, go to the <strong>layers window</strong> and low the <strong>opacity to 35%</strong> and  <strong>fill to 75%,</strong> this should be the results :</p>
<div id="attachment_135" class="wp-caption alignnone" style="width: 310px"><a rel="lightbox" href="http://lastwebdesigner.com/wp-content/uploads/2009/05/51.jpg"><img class="size-full wp-image-135 img-post" title="51" src="http://lastwebdesigner.com/wp-content/uploads/2009/05/51.jpg" alt="badge" width="300" height="300" /></a><p class="wp-caption-text">badge</p></div>
<p>Finally you can personalize the badge on your way :</p>
<div id="attachment_136" class="wp-caption alignnone" style="width: 310px"><a href="http://lastwebdesigner.com/wp-content/uploads/2009/05/final1.jpg" rel="lightbox[129]"><img class="size-full wp-image-136 img-post" title="final1" src="http://lastwebdesigner.com/wp-content/uploads/2009/05/final1.jpg" alt="badge 2.0 with photoshop" width="300" height="300" /></a><p class="wp-caption-text">badge 2.0 with photoshop</p></div>
<p>Enjoy!</p>
<p> <img src='http://lastwebdesigner.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' title="Create a badge 2.0 with Photoshop" /><br />
<h3 class="related-title">This posts may be interesting too</h3>
<ul class="related_post">
<li><a href="http://lastwebdesigner.com/photoshop/create-a-fire-text-with-photoshop.html" title="Create a fire text with Photoshop">Create a fire text with Photoshop</a></li>
<li><a href="http://lastwebdesigner.com/photoshop/text-reflection-with-photoshop.html" title="Text reflection with photoshop">Text reflection with photoshop</a></li>
<li><a href="http://lastwebdesigner.com/photoshop/rain-effect-with-photoshop-in-6-steps.html" title="Rain effect with photoshop in 6 steps">Rain effect with photoshop in 6 steps</a></li>
<li><a href="http://lastwebdesigner.com/jquery/how-to-send-a-mail-with-php-ajax-and-jquery-in-facebook-style.html" title="How to send a mail with php ajax and jquery in facebook style">How to send a mail with php ajax and jquery in facebook style</a></li>
<li><a href="http://lastwebdesigner.com/jquery/simple-animated-menu-with-jquery.html" title="Simple animated menu with jquery">Simple animated menu with jquery</a></li>
</ul>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://lastwebdesigner.com/photoshop/create-a-badge-20-with-photoshop.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Create a fire text with Photoshop</title>
		<link>http://lastwebdesigner.com/photoshop/create-a-fire-text-with-photoshop.html</link>
		<comments>http://lastwebdesigner.com/photoshop/create-a-fire-text-with-photoshop.html#comments</comments>
		<pubDate>Sat, 23 May 2009 10:27:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[photoshop tutorials]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[web 2.0]]></category>

		<guid isPermaLink="false">http://lastwebdesigner.com/?p=102</guid>
		<description><![CDATA[With this tutorial I want to show you how to create a text on fire using photoshop. First of all open your photoshop and create a new document 400 *400 pixel. with a black background and white text on. I&#8217;ve used the fonts Impact and a font size of 36px , but you can use [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>With this tutorial I want to show you how to create a text on fire using photoshop. First of all open your <strong>photoshop and create a new  document 400 *400 pixel. with a black background and white text on.</strong> I&#8217;ve used  the fonts <strong>Impact</strong> and a font size of <strong>36px</strong> , but you can use another fonts or dimension. ok let&#8217;s go now and create the fire text!</p>
<p>Write your text using white color for the text.<span id="more-102"></span></p>
<div id="attachment_111" class="wp-caption alignnone" style="width: 410px"><a rel="lightbox" href="http://lastwebdesigner.com/wp-content/uploads/2009/05/1.jpg"><img class="size-full wp-image-111 img-post" title="1" src="http://lastwebdesigner.com/wp-content/uploads/2009/05/1.jpg" alt="text on fire" width="400" height="400" /></a><p class="wp-caption-text">text on fire</p></div>
<p>Now duplicate the text layer from the menu<strong> layer &#8211; duplicate layer.</strong> Now go on the level window and <strong><span style="text-decoration: underline;">deselect the original layer,</span></strong> so we can see only the new duplicated layer, like this :</p>
<div id="attachment_109" class="wp-caption alignnone" style="width: 226px"><a rel="lightbox" href="http://lastwebdesigner.com/wp-content/uploads/2009/05/2.jpg"><img class="size-full wp-image-109 img-post" title="2" src="http://lastwebdesigner.com/wp-content/uploads/2009/05/2.jpg" alt="hide original text layer" width="216" height="360" /></a><p class="wp-caption-text">hide original text layer</p></div>
<p>Now go on <strong>layer menu </strong>and select : <strong>merge visible</strong>, so we will have only two layers, the original text and another layer from the background and the copied layer, <span style="text-decoration: underline;">this last is the layer were we will work on.</span></p>
<div id="attachment_110" class="wp-caption alignnone" style="width: 230px"><a rel="lightbox" href="http://lastwebdesigner.com/wp-content/uploads/2009/05/3.jpg"><img class="size-full wp-image-110 img-post" title="3" src="http://lastwebdesigner.com/wp-content/uploads/2009/05/3.jpg" alt="merge visible layer" width="220" height="321" /></a><p class="wp-caption-text">merge visible layer</p></div>
<p>Now rotate the canvas using the menu : <strong>Image &#8211; image rotation &#8211; 90 º CCW.</strong></p>
<div id="attachment_112" class="wp-caption alignnone" style="width: 410px"><a rel="lightbox" href="http://lastwebdesigner.com/wp-content/uploads/2009/05/4.jpg"><img class="size-full wp-image-112 img-post" title="4" src="http://lastwebdesigner.com/wp-content/uploads/2009/05/4.jpg" alt="rotate canvas " width="400" height="400" /></a><p class="wp-caption-text">rotate canvas </p></div>
<p>Now is time to use the <strong>Photoshop</strong> <strong>filters</strong>. <strong>Go to Filter -Stylize &#8211; Wind </strong>and apply this settings :</p>
<div id="attachment_113" class="wp-caption alignnone" style="width: 344px"><a rel="lightbox" href="http://lastwebdesigner.com/wp-content/uploads/2009/05/5.jpg"><img class="size-full wp-image-113 img-post" title="5" src="http://lastwebdesigner.com/wp-content/uploads/2009/05/5.jpg" alt="wind filter photoshop" width="334" height="463" /></a><p class="wp-caption-text">wind filter photoshop</p></div>
<p>Reapply the filter another 2 times, with<strong> ctrl+f </strong>or<strong> command +f </strong>if you are using a Mac, until you will have an image like this :</p>
<div id="attachment_114" class="wp-caption alignnone" style="width: 410px"><a rel="lightbox" href="http://lastwebdesigner.com/wp-content/uploads/2009/05/6.jpg"><img class="size-full wp-image-114 img-post" title="6" src="http://lastwebdesigner.com/wp-content/uploads/2009/05/6.jpg" alt="the wind filter" width="400" height="400" /></a><p class="wp-caption-text">the wind filter</p></div>
<p>Now rotate again the image,  on<strong> 90º CW </strong>to reput the text on original position and apply the <strong>Filter blur &#8211; Gaussian blur </strong> with a<strong> radius of 1.5,</strong> or more it depend how do you want the fire effect), here the settings of the<strong> blur filter :</strong></p>
<div id="attachment_115" class="wp-caption alignnone" style="width: 348px"><a rel="lightbox" href="http://lastwebdesigner.com/wp-content/uploads/2009/05/7.jpg"><img class="size-full wp-image-115 img-post" title="7" src="http://lastwebdesigner.com/wp-content/uploads/2009/05/7.jpg" alt="blur filter settings" width="338" height="336" /></a><p class="wp-caption-text">blur filter settings</p></div>
<p><strong>Apply this filter another time and we have this image :</strong></p>
<div id="attachment_116" class="wp-caption alignnone" style="width: 410px"><a rel="lightbox" href="http://lastwebdesigner.com/wp-content/uploads/2009/05/8.jpg"><img class="size-full wp-image-116 img-post" title="8" src="http://lastwebdesigner.com/wp-content/uploads/2009/05/8.jpg" alt="blur filter photoshop" width="400" height="400" /></a><p class="wp-caption-text">blur filter photoshop</p></div>
<p>Now it&#8217;s coming the more personalized part .. So we&#8217;re going to use the<strong> liquify Filter,</strong> the results depend on your &#8220;hands&#8221; , this effect is to make the <strong>Flames</strong>, so use the filter at better, you can learn something <a title="liquify filter" href="http://photoshopcontest.com/tutorials/25/the-liquify-filter.html">about this filter at this links.</a> This is my image with the flames.</p>
<div id="attachment_121" class="wp-caption alignnone" style="width: 410px"><a rel="lightbox" href="http://lastwebdesigner.com/wp-content/uploads/2009/05/91.jpg"><img class="size-full wp-image-121 img-post" title="91" src="http://lastwebdesigner.com/wp-content/uploads/2009/05/91.jpg" alt="flames" width="400" height="400" /></a><p class="wp-caption-text">flames</p></div>
<p>Now go to the menu :<strong> image &#8211; Hue/Saturation </strong>and apply this settings <span style="text-decoration: underline;">(remember to click on colorize)</span>:</p>
<div id="attachment_118" class="wp-caption alignnone" style="width: 474px"><a rel="lightbox" href="http://lastwebdesigner.com/wp-content/uploads/2009/05/10.jpg"><img class="size-full wp-image-118 img-post" title="10" src="http://lastwebdesigner.com/wp-content/uploads/2009/05/10.jpg" alt="hue settings" width="464" height="369" /></a><p class="wp-caption-text">hue settings</p></div>
<p>The results will be something like this :</p>
<div id="attachment_119" class="wp-caption alignnone" style="width: 410px"><a rel="lightbox" href="http://lastwebdesigner.com/wp-content/uploads/2009/05/11.jpg"><img class="size-full wp-image-119 img-post" title="11" src="http://lastwebdesigner.com/wp-content/uploads/2009/05/11.jpg" alt="text fire hue settings" width="400" height="400" /></a><p class="wp-caption-text">text fire hue settings</p></div>
<p>Now duplicate the level and , in the new level, reapply the<strong> HUE/SATURATION</strong> but this time <span style="text-decoration: underline;">without  click on colorize</span> and use these settings :</p>
<div id="attachment_120" class="wp-caption alignnone" style="width: 471px"><a rel="lightbox" href="http://lastwebdesigner.com/wp-content/uploads/2009/05/12.jpg"><img class="size-full wp-image-120 img-post" title="12" src="http://lastwebdesigner.com/wp-content/uploads/2009/05/12.jpg" alt="hue/saturation" width="461" height="366" /></a><p class="wp-caption-text">hue/saturation</p></div>
<p>Now with this new level selected go in the <strong>window levels</strong> and choose , from the select menu,<strong>Color Dodge </strong>(always with the background copy selected).</p>
<div id="attachment_122" class="wp-caption alignnone" style="width: 262px"><a rel="lightbox" href="http://lastwebdesigner.com/wp-content/uploads/2009/05/13.jpg"><img class="size-full wp-image-122 img-post" title="13" src="http://lastwebdesigner.com/wp-content/uploads/2009/05/13.jpg" alt="merge levels" width="252" height="456" /></a><p class="wp-caption-text">merge levels</p></div>
<p>You will have an images like this</p>
<div id="attachment_123" class="wp-caption alignnone" style="width: 410px"><a rel="lightbox" href="http://lastwebdesigner.com/wp-content/uploads/2009/05/14.jpg"><img class="size-full wp-image-123 img-post" title="14" src="http://lastwebdesigner.com/wp-content/uploads/2009/05/14.jpg" alt="fire" width="400" height="400" /></a><p class="wp-caption-text">fire</p></div>
<p>Now show the original text layer, and  go to <strong>blending options </strong>( right click directly form the layer window and choose blending options), and apply a <strong>gradient</strong> (I&#8217;ve used grey to black) and <strong>outer glow</strong> and<strong> inner glow,</strong> better if you use <strong>yellow</strong> like color for this last<strong> inner and outglow</strong>. Finally you will have something like this :</p>
<div id="attachment_124" class="wp-caption alignnone" style="width: 410px"><a rel="lightbox" href="http://lastwebdesigner.com/wp-content/uploads/2009/05/15.jpg"><img class="size-full wp-image-124 img-post" title="15" src="http://lastwebdesigner.com/wp-content/uploads/2009/05/15.jpg" alt="fire text photoshop" width="400" height="400" /></a><p class="wp-caption-text">fire text photoshop</p></div>
<p><strong>And this is the fire text!</strong></p>
<p>But we can do something better now. We can make this text <strong>more web 2.0,</strong> adding some nice effect used today in web 2.0.</p>
<p>For example a <strong>reflection</strong> and create something like this :</p>
<div id="attachment_125" class="wp-caption alignnone" style="width: 410px"><a rel="lightbox" href="http://lastwebdesigner.com/wp-content/uploads/2009/05/final.jpg"><img class="size-full wp-image-125 img-post" title="final" src="http://lastwebdesigner.com/wp-content/uploads/2009/05/final.jpg" alt="fire text 2.0" width="400" height="400" /></a><p class="wp-caption-text">fire text 2.0</p></div>
<p>On the next tutorial I will explain how to create this reflection effects.</p>
<p>Hasta Luego!<br />
<h3 class="related-title">This posts may be interesting too</h3>
<ul class="related_post">
<li><a href="http://lastwebdesigner.com/photoshop/create-a-badge-20-with-photoshop.html" title="Create a badge 2.0 with Photoshop">Create a badge 2.0 with Photoshop</a></li>
<li><a href="http://lastwebdesigner.com/photoshop/text-reflection-with-photoshop.html" title="Text reflection with photoshop">Text reflection with photoshop</a></li>
<li><a href="http://lastwebdesigner.com/photoshop/rain-effect-with-photoshop-in-6-steps.html" title="Rain effect with photoshop in 6 steps">Rain effect with photoshop in 6 steps</a></li>
<li><a href="http://lastwebdesigner.com/jquery/how-to-send-a-mail-with-php-ajax-and-jquery-in-facebook-style.html" title="How to send a mail with php ajax and jquery in facebook style">How to send a mail with php ajax and jquery in facebook style</a></li>
<li><a href="http://lastwebdesigner.com/jquery/simple-animated-menu-with-jquery.html" title="Simple animated menu with jquery">Simple animated menu with jquery</a></li>
</ul>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://lastwebdesigner.com/photoshop/create-a-fire-text-with-photoshop.html/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Rain effect with photoshop in 6 steps</title>
		<link>http://lastwebdesigner.com/photoshop/rain-effect-with-photoshop-in-6-steps.html</link>
		<comments>http://lastwebdesigner.com/photoshop/rain-effect-with-photoshop-in-6-steps.html#comments</comments>
		<pubDate>Sun, 26 Apr 2009 21:56:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[effect]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://lastwebdesigner.com/?p=1</guid>
		<description><![CDATA[Here we are! This is my first post on my blog! I want to start with a simple tutorial for Photoshop, how to manipulate the weather and add rain to a sunny day on the beach. So&#8230; Let&#8217;s start with my first post on lastwebdesigner.com. This is a simple tutorial on how to make a [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Here we are! This is my <strong>first post </strong>on my blog!</p>
<p>I want to start with a simple<strong> tutorial for Photoshop</strong>, how to manipulate  the <strong>weather</strong> and  add <strong>rain</strong> to a sunny day on the beach.<br />
So&#8230; Let&#8217;s start with my first post on lastwebdesigner.com. <img src='http://lastwebdesigner.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' title="Rain effect with photoshop in 6 steps" /><br />
This is a <strong>simple tutorial </strong>on how to make a<strong> <span style="text-decoration: underline;">rain effect </span></strong><span style="text-decoration: underline;">on a </span><strong><span style="text-decoration: underline;">photo</span></strong>, in<strong><span style="text-decoration: underline;"> 6 simple step,</span></strong> using <a title="tutorial photoshop" href="http://lastwebdesigner.com/category/photoshop"><strong>Photoshop</strong></a>.<span id="more-1"></span><br />
First of all, we need a <strong>Photo</strong> to use and modify, I&#8217;ve used this :</p>
<div id="attachment_25" class="wp-caption alignnone" style="width: 310px"><a class="lightbox" href="http://lastwebdesigner.com/wp-content/uploads/2009/04/rain1.jpg" rel="lightbox[1]"><img class="size-medium wp-image-25 img-post img-post" title="rain1" src="http://lastwebdesigner.com/wp-content/uploads/2009/04/rain1-300x225.jpg" alt="rain effect photoshop" width="300" height="225" /></a><p class="wp-caption-text">rain effect photoshop</p></div>
<p>Open this photo with photoshop.</p>
<blockquote>
<h3>1. Create a new layer : Menu  layer -&gt; new layer from the menu :</h3>
</blockquote>
<div id="attachment_13" class="wp-caption alignnone" style="width: 225px"><a rel="lightbox" href="http://lastwebdesigner.com/wp-content/uploads/2009/04/1.jpg"><img class="size-full wp-image-13 img-post" title="1" src="http://lastwebdesigner.com/wp-content/uploads/2009/04/1.jpg" alt="Create a new layer with Photoshop" width="215" height="480" /></a><p class="wp-caption-text">Create a new layer with Photoshop</p></div>
<blockquote>
<h3>2.  Filter &#8211; Render &#8211; Clouds</h3>
</blockquote>
<div id="attachment_14" class="wp-caption alignnone" style="width: 310px"><strong><a rel="lightbox" href="http://lastwebdesigner.com/wp-content/uploads/2009/04/2.jpg"><img class="size-medium wp-image-14" title="2" src="http://lastwebdesigner.com/wp-content/uploads/2009/04/2-300x187.jpg" alt="Add clouds filter" width="300" height="187" /></a></strong><p class="wp-caption-text">Add clouds filter</p></div>
<blockquote>
<h3>3. Change the  opacity  to 65%.</h3>
</blockquote>
<div id="attachment_15" class="wp-caption alignnone" style="width: 233px"><a rel="lightbox" href="http://lastwebdesigner.com/wp-content/uploads/2009/04/3.jpg"><img class="size-full wp-image-15 img-post" title="3" src="http://lastwebdesigner.com/wp-content/uploads/2009/04/3.jpg" alt="Low the opacity level" width="223" height="74" /></a><p class="wp-caption-text">Low the opacity level</p></div>
<blockquote>
<h3>4. Filter &#8211; Noise &#8211; Add noise, using this parameters :</h3>
</blockquote>
<div id="attachment_16" class="wp-caption alignnone" style="width: 310px"><a rel="lightbox" href="http://lastwebdesigner.com/wp-content/uploads/2009/04/4.jpg"><img class="size-medium wp-image-16 img-post" title="4" src="http://lastwebdesigner.com/wp-content/uploads/2009/04/4-300x258.jpg" alt="add noise filter" width="300" height="258" /></a><p class="wp-caption-text">add noise filter</p></div>
<blockquote>
<h3>5. Filter &#8211; blur &#8211; motion blur and use this settings :</h3>
</blockquote>
<div id="attachment_18" class="wp-caption alignnone" style="width: 310px"><a rel="lightbox" href="http://lastwebdesigner.com/wp-content/uploads/2009/04/51.jpg"><img class="size-medium wp-image-18 img-post" title="51" src="http://lastwebdesigner.com/wp-content/uploads/2009/04/51-300x250.jpg" alt="add motion blur filter" width="300" height="250" /></a><p class="wp-caption-text">add motion blur filter</p></div>
<blockquote>
<h3><strong>6. Finally, from the select menu on the left of the levels window choose &#8220;overlay&#8221;.</strong></h3>
</blockquote>
<p><div id="attachment_24" class="wp-caption alignnone" style="width: 310px"><strong><a rel="lightbox" href="http://lastwebdesigner.com/wp-content/uploads/2009/04/final1.jpg"><img class="size-medium wp-image-24 img-post" title="final1" src="http://lastwebdesigner.com/wp-content/uploads/2009/04/final1-300x225.jpg" alt="rain effect photoshop" width="300" height="225" /></a></strong><p class="wp-caption-text">rain effect photoshop</p></div><br />
<h3 class="related-title">This posts may be interesting too</h3>
<ul class="related_post">
<li><a href="http://lastwebdesigner.com/photoshop/create-a-badge-20-with-photoshop.html" title="Create a badge 2.0 with Photoshop">Create a badge 2.0 with Photoshop</a></li>
<li><a href="http://lastwebdesigner.com/photoshop/create-a-fire-text-with-photoshop.html" title="Create a fire text with Photoshop">Create a fire text with Photoshop</a></li>
<li><a href="http://lastwebdesigner.com/jquery/simple-animated-menu-with-jquery.html" title="Simple animated menu with jquery">Simple animated menu with jquery</a></li>
<li><a href="http://lastwebdesigner.com/photoshop/text-reflection-with-photoshop.html" title="Text reflection with photoshop">Text reflection with photoshop</a></li>
</ul>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://lastwebdesigner.com/photoshop/rain-effect-with-photoshop-in-6-steps.html/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>
