<?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>Designers Chair</title>
	<atom:link href="http://www.designers-chair.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.designers-chair.com</link>
	<description>photoshop tutorials, html css tutorials</description>
	<lastBuildDate>Sat, 05 Dec 2009 22:18:20 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Facebook picture tagging system</title>
		<link>http://www.designers-chair.com/2009/03/facebook-picture-tagging-system/</link>
		<comments>http://www.designers-chair.com/2009/03/facebook-picture-tagging-system/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 07:59:28 +0000</pubDate>
		<dc:creator>Designers Chair</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[facebook]]></category>

		<guid isPermaLink="false">http://www.designers-chair.com/?p=278</guid>
		<description><![CDATA[Create Facebook-like picture tagging system using only CSS.

Facebook might look minimalistic on the outside but it&#8217;s a beast from the inside. I don&#8217;t know how they did their &#8220;cross over a person to see his name&#8221; tagging system but i&#8217;m going to show you how to fake it. Who knows, maybe they use the same [...]]]></description>
			<content:encoded><![CDATA[<p>Create Facebook-like picture tagging system using only CSS.<span id="more-278"></span></p>
<pre><a href="http://www.designers-chair.com/download/css/CSS - facebook image tag (www.designers-chair.com).rar" target="_blank"><img class="alignleft" style="border: 0pt none;" title="Source" src="http://www.designers-chair.com/images/css/Source.jpg" alt="" width="187" height="62" /></a><a href="http://www.designers-chair.com/demo/facebook_image_tag/" target="_blank"><img class="alignright" style="border: 0pt none;" title="Demo" src="http://www.designers-chair.com/images/css/Demo.jpg" alt="" width="270" height="62" /></a></pre>
<p>Facebook might look minimalistic on the outside but it&#8217;s a beast from the inside. I don&#8217;t know how they did their &#8220;cross over a person to see his name&#8221; tagging system but i&#8217;m going to show you how to fake it. Who knows, maybe they use the same technique (yeah right).<br />
<script type="text/javascript"><!--
google_ad_client = "pub-9392223937717562";
/* Link_na_pocetku */
google_ad_slot = "0581975753";
google_ad_width = 468;
google_ad_height = 15;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p style="font-family:arial;color:#282828;font-size:24px"><strong>Step 1</strong></p>
<p>First let&#8217;s create <em>index.html</em> and folders <em>style</em> and <em>images</em>. Inside of <em>style</em> folder put your CSS file (name it <em>style.css</em>) and put your image inside off <em>images</em> folder. I will use this picture named <em>foto.jpg</em>.</p>
<p>Open <em>index.html</em> and write down the basic HTML code.</p>
<pre>&lt;html&gt;
&lt;head&gt;
&lt;title&gt;Facebook picture tagging system | Designers-Chair.com&lt;/title&gt;
&lt;link href="style/style.css" rel="stylesheet" type="text/css" /&gt;
&lt;/head&gt;
&lt;body&gt;

&lt;/body&gt;
&lt;/html&gt;</pre>
<p>We are going to use HTML tags <strong>dl</strong> and <strong>dd</strong> so if you aren&#8217;t familiar with them i recommend you google it up.</p>
<p style="font-family:arial;color:#282828;font-size:24px"><strong>Step 2</strong></p>
<p>Add the following code to the <strong>body</strong> of your HTML file.</p>
<pre>...
&lt;dl id="heads"&gt;
&lt;dd id="JaneDoe"&gt;&lt;a href="link"&gt;&lt;span&gt;Jane Doe&lt;/span&gt;&lt;/a&gt;&lt;/dd&gt;
&lt;dd id="LucyLiu"&gt;&lt;a href="link"&gt;&lt;span&gt;Lucy Liu&lt;/span&gt;&lt;/a&gt;&lt;/dd&gt;
&lt;dd id="JackBauer"&gt;&lt;a href="link"&gt;&lt;span&gt;Jack Bauer&lt;/span&gt;&lt;/a&gt;&lt;/dd&gt;
&lt;dd id="JohnSmith"&gt;&lt;a href="link"&gt;&lt;span&gt;John Smith&lt;/span&gt;&lt;/a&gt;&lt;/dd&gt;
&lt;/dl&gt;
...</pre>
<p>OK, that&#8217;s it for our <em>index.html</em> file. It&#8217;s all CSS from now on. Just to explain few things first. The <strong>&lt;dl&gt; tag</strong> defines a definition list. In our case that&#8217;s <strong>heads</strong>.</p>
<pre>&lt;dl id="heads"&gt;
...
&lt;/dl&gt;</pre>
<p><strong>&lt;dd&gt; tag</strong> describes the item in the list. In our case items are people on the photo.</p>
<pre>&lt;dd id="JaneDoe"&gt;&lt;a href="link"&gt;&lt;span&gt;Jane Doe&lt;/span&gt;&lt;/a&gt;&lt;/dd&gt;</pre>
<p><strong>JaneDoe</strong> is the name of the identificator and <strong>Jane Doe</strong> is the name of the person that will be displayed. Don&#8217;t mix those two! Under <em>href=&#8221;link&#8221;</em> you can put the actual URL of that persons web page. If not put &#8220;#&#8221; instead.</p>
<p style="font-family:arial;color:#282828;font-size:24px"><strong>Step 3</strong></p>
<p>Now CSS. Open <em>style.css</em> and let&#8217;s get started. Set the font to 11px Tahoma and background color to white.</p>
<pre>body{
	font-family: Tahoma;
	font-size: 11px;
	background-color: #FFFFFF;
}</pre>
<p>Remember that <strong>heads</strong> ID in our HTML file? Let&#8217;s define it.</p>
<pre>dl#heads{
	background: url(../images/foto.jpg);
	height: 353px;
	width: 530px;
	position: relative;
}</pre>
<p>Under <em>width</em> and <em>height</em> put the dimensions of your photo. Now we need to define basic properties for our <strong>&lt;dd&gt; tag</strong>. Just some position definitions and that&#8217;s it.</p>
<pre>dd{
margin: 0;
padding: 0;
position: absolute;
}</pre>
<p>Next we &#8220;describe&#8221; the item (person) in the list. I will show you how to do this for one person (in this case the guy on the left, let&#8217;s call him &#8220;John Smith&#8221;) and then you can apply the same procedure for the others.</p>
<p>I hope you have IrfanView, if you don&#8217;t i recommend you install it. This can be done without it but it takes longer. Look at the following photo.</p>
<p><img class="aligncenter" title="X spot" src="http://www.designers-chair.com/images/css/02_facebook/X_spot.jpg" alt="" width="530" height="353" /></p>
<p>You need to find exact location of X and for that i will use IrfanView. Open the foto using IrfanView and select the head of a person like you select multiple icons on desktop. Click on the upper right side of persons head and drag down while holding down the left mouse button. When his head is selected read the following values.</p>
<p><img class="aligncenter" title="IrfanView" src="http://www.designers-chair.com/images/css/02_facebook/IrfanView.jpg" alt="" width="543" height="442" /></p>
<p>This may look confusing but it&#8217;s actually really simple. Now let&#8217;s input the location of X. IrfanView first displays &#8220;left&#8221; value and then &#8220;top&#8221; value.</p>
<pre>dd#JohnSmith{
left: 5px;
top: 5px;
}</pre>
<p>Now the size of the box :</p>
<pre>dd#JohnSmith a{
position: absolute;
width: 128px;
height: 132px;
text-decoration: none;  /*no underline*/
}</pre>
<p>If you refresh your HTML file now you will see that the name &#8220;John Smith&#8221; id displayed under John&#8217;s head. We don&#8217;t need that so let&#8217;s just hide it.</p>
<pre>dd#JohnSmith a span{
display: none;
}</pre>
<p>That&#8217;s it, the text is gone. We need it to display when we move cursor over the invisible box (persons head) so we will use hover function for that.</p>
<pre>dd#JohnSmith a:hover span{
	display: block;
	text-indent: 0;
	vertical-align: top;
	color: #FFFFFF;
	background-color: #282828;
	font-weight: bold;
	position: absolute;
	bottom: 100%;
	margin: 0;
	padding: 5px;
	width: 53px;
}</pre>
<p>Don&#8217;t worry, we are finished. Just to explain the last part.</p>
<p>We set the font color to white (color: #FFFFFF), bold it (font-weight: bold), put it on grey background (background-color: #282828).</p>
<p style="font-family:arial;color:#282828;font-size:24px"><strong>IE 6 fix</strong></p>
<p>IE sucks, right? So we need to add this to our CSS to make it work.</p>
<pre>dd#JohnSmith a:hover{
background: no-repeat;
}</pre>
<p>That&#8217;s it! Hope you have enjoyed this tutorial, leave a comment if you did!<br />
<script type="text/javascript"><!--
google_ad_client = "pub-9392223937717562";
/* Embedani */
google_ad_slot = "9865879433";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.designers-chair.com/2009/03/facebook-picture-tagging-system/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>Artistic black and white photos</title>
		<link>http://www.designers-chair.com/2009/03/artistic-black-and-white-photos/</link>
		<comments>http://www.designers-chair.com/2009/03/artistic-black-and-white-photos/#comments</comments>
		<pubDate>Sat, 07 Mar 2009 13:56:28 +0000</pubDate>
		<dc:creator>Designers Chair</dc:creator>
				<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[black and white]]></category>
		<category><![CDATA[effect]]></category>
		<category><![CDATA[photo]]></category>
		<category><![CDATA[photography]]></category>

		<guid isPermaLink="false">http://www.designers-chair.com/?p=272</guid>
		<description><![CDATA[Create artistic looking black and white photos using any version of Photoshop. Short procedure with great outcome!




Black and white photos sometimes look better than the colored ones. Converting colored photos to black and white is simple but there are few tricks that i&#8217;m going to show you to make them even better.
The easiest way to [...]]]></description>
			<content:encoded><![CDATA[<p>Create artistic looking black and white photos using any version of Photoshop. Short procedure with great outcome!<span id="more-272"></span><br />
<script type="text/javascript"><!--
google_ad_client = "pub-9392223937717562";
/* Link_na_pocetku */
google_ad_slot = "0581975753";
google_ad_width = 468;
google_ad_height = 15;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p>Black and white photos sometimes look better than the colored ones. Converting colored photos to black and white is simple but there are few tricks that i&#8217;m going to show you to make them even better.</p>
<div class="wp-caption aligncenter" style="width: 560px"><img title="Black and white photo before and after" src="http://www.designers-chair.com/images/photoshop/artistic_black_and_white_photos/Black%20and%20white%20photo%20-%20before%20and%20after.jpg" alt="Black and white photo - before and after" width="550" height="402" /><p class="wp-caption-text">Black and white photo - before and after</p></div>
<p>The easiest way to convert your photo to black and white is to go Image &gt; Mode &gt; Grayscale. This is the result :</p>
<p><img class="aligncenter" title="Simple conversion" src="http://www.designers-chair.com/images/photoshop/artistic_black_and_white_photos/step01.jpg" alt="" width="358" height="272" /></p>
<p>Not so good isn&#8217;t it? This is because it&#8217;s plain <strong>color -&gt; black and white</strong> conversion so of course it looks bad. Instead of that use the following metod.</p>
<p style="font-family:arial;color:#282828;font-size:24px"><strong>Step 1</strong></p>
<p>Open your colored photo, press <strong>CRTL+U</strong> or go Image &gt;Adjustments &#8211; Hue/Saturation and reduce saturation to -100.</p>
<p><img class="alignnone" title="Hue/Saturation" src="http://www.designers-chair.com/images/photoshop/artistic_black_and_white_photos/Step01a.jpg" alt="" width="397" height="243" /></p>
<p style="font-family:arial;color:#282828;font-size:24px"><strong>Step 2</strong></p>
<p>Duplicate the layer and name it &#8220;copy&#8221;. Now you have two black and white layers. Select the top one from the menu on the right and go <strong>Image &gt; Adjustments &gt; Brightness/Contrast</strong>. Use the following settings :</p>
<p><img class="alignnone" title="Brightness/Contrast" src="http://www.designers-chair.com/images/photoshop/artistic_black_and_white_photos/Step02.jpg" alt="" width="311" height="112" /></p>
<p style="font-family:arial;color:#282828;font-size:24px"><strong>Step 3</strong></p>
<p>Set <strong>Blend Mode</strong> to <strong>Overlay</strong>.</p>
<p><img class="alignnone" title="Blend mode : Overlay" src="http://www.designers-chair.com/images/photoshop/artistic_black_and_white_photos/Step03.jpg" alt="" width="410" height="85" /></p>
<p>I&#8217;m happy with the result so i will leave it like that. Following steps are optional.</p>
<p style="font-family:arial;color:#282828;font-size:24px"><strong>Step 4</strong></p>
<p>All photographs are different so this settings may not be perfect for your photo. Go <strong>Image &gt; Adjustments &gt; Curves</strong> and play around with the curve.</p>
<p><img class="alignnone" title="Curves" src="http://www.designers-chair.com/images/photoshop/artistic_black_and_white_photos/Step04.jpg" alt="" width="343" height="358" /></p>
<p style="font-family:arial;color:#282828;font-size:24px"><strong>Step 5</strong></p>
<p>If you think that your photo is too sharp or just want to add more &#8220;dreamy&#8221; effect use <strong>Gaussian Blur</strong>. Go <strong>Filter &gt; Blur &gt; Gaussian Blur</strong> and put the radius to 2px.</p>
<p><img class="alignnone" title="Gaussian Blur" src="http://www.designers-chair.com/images/photoshop/artistic_black_and_white_photos/Step05.jpg" alt="" width="316" height="330" /></p>
<p>That&#8217;s it. Now you have a much better looking black and white photo.</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-9392223937717562";
/* Embedani */
google_ad_slot = "9865879433";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.designers-chair.com/2009/03/artistic-black-and-white-photos/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>CSS Image Transparency</title>
		<link>http://www.designers-chair.com/2009/03/css-image-transparency/</link>
		<comments>http://www.designers-chair.com/2009/03/css-image-transparency/#comments</comments>
		<pubDate>Tue, 03 Mar 2009 17:01:50 +0000</pubDate>
		<dc:creator>Designers Chair</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[opacity]]></category>
		<category><![CDATA[transparency]]></category>

		<guid isPermaLink="false">http://www.designers-chair.com/?p=172</guid>
		<description><![CDATA[Learn how to change image transparency (opacity) using only CSS code. Simple but useful technique that you can use to create nice looking gallery or just crossover effect.


Here is how it looks like&#8230;
Changing image opacity (transparency) using css :
  
Image opacity wih different crossover effect (move your cursor over it) :
  
So let&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>Learn how to change image transparency (opacity) using only CSS code. Simple but useful technique that you can use to create nice looking gallery or just crossover effect.<span id="more-172"></span><br />
<script type="text/javascript"><!--
google_ad_client = "pub-9392223937717562";
/* Link_na_pocetku */
google_ad_slot = "0581975753";
google_ad_width = 468;
google_ad_height = 15;
// --></script><br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"></script></p>
<p>Here is how it looks like&#8230;</p>
<p><strong>Changing image opacity (transparency) using css :</strong><br />
<img src="/images/css/image_transparency/DC2.jpg" alt="DC logo" width="145" height="115" /> <img style="opacity:0.7;filter:alpha(opacity=70)" src="/images/css/image_transparency/DC2.jpg" alt="DC logo" width="145" height="115" /> <img style="opacity:0.4;filter:alpha(opacity=40)" src="/images/css/image_transparency/DC2.jpg" alt="DC logo" width="145" height="115" /></p>
<p><strong>Image opacity wih different crossover effect (move your cursor over it) :</strong><br />
<img style="opacity:0.5;filter:alpha(opacity=50)" onmouseover="this.style.opacity=1;this.filters.alpha.opacity=100" onmouseout="this.style.opacity=0.5;this.filters.alpha.opacity=50" src="/images/css/image_transparency/DC2.jpg" alt="DC logo" width="145" height="115" /> <a href="http://www.designers-chair.com/" target="_blank"> <img style="opacity:0.5;filter:alpha(opacity=50);border: 0pt none;" onmouseover="this.style.opacity=1;this.filters.alpha.opacity=100" onmouseout="this.style.opacity=0.4;this.filters.alpha.opacity=40" src="/images/css/image_transparency/DC2.jpg" alt="DC Logo" width="145" height="115" /></a></p>
<p>So let&#8217;s get started. First create a new HTML document (<em>index.html</em>), create folder &#8220;style&#8221; and inside it create our CSS file (<em>style.css</em>).</p>
<p>Our basic HTML file looks like this :</p>
<pre>&lt;html&gt;
&lt;head&gt;
	&lt;title&gt;CSS Image Transparency | Designers-Chair.com&lt;/title&gt;
	&lt;link href="style/style.css" rel="stylesheet" type="text/css"&gt;
&lt;/head&gt;
&lt;body&gt;

&lt;/body&gt;
&lt;/html&gt;</pre>
<p>Tag <em>title</em> defines page name :</p>
<pre>&lt;title&gt;CSS Image Transparency | Designers-Chair.com&lt;/title&gt;</pre>
<p>This is the path to our external CSS file :</p>
<pre>&lt;link href="style/style.css" rel="stylesheet" type="text/css"&gt;</pre>
<p><strong>Body</strong> is empty so nothing will be displayed when we open our HTML file in web browser. Now we are going to display our picture.</p>
<pre>...
&lt;body&gt;
&lt;img src="DClogo.jpg" width="145" height="115" alt="DC Logo"/&gt;
&lt;/body&gt;
...</pre>
<p>Now we see the picture but there is no transparency. Open style.css and add the following code :</p>
<pre>img
{
	opacity:0.5;
	filter:alpha(opacity=50);
}</pre>
<p>Notice how we have two same properties for img tag. This is because Internet Explorer uses <strong>filter:alpha(opacity:x)</strong> function (x = 0-100), but Firefox and Crome use <strong>opacity:x</strong> (x = 0-1). 0 = invisible, 1/100 = 100% visible.</p>
<p>Crossover effect is now easy to do. We just need to add <strong>onmouseover</strong> and <strong>onmouseout</strong>.</p>
<pre>...
&lt;img src="DClogo.jpg" width="145" height="115" alt="DC Logo"
onmouseover="this.style.opacity=1;this.filters.alpha.opacity=100"
onmouseout="this.style.opacity=0.5;this.filters.alpha.opacity=50" /&gt;
...</pre>
<p>You can also use <strong>hover</strong> function (instead of onmouseover, onmouseout) , just add it to style.css. Note that this technique does not work with IE 6 (:hover is supported only on <strong>&lt;a></strong>  elements).</p>
<pre>
img
{
	opacity:0.5;               /*Firefox &#038; Chrome*/
	filter:alpha(opacity=50);   /* IE */

}

img:hover
{
	opacity:1;               /*Firefox &#038; Chrome*/
	filter:alpha(opacity=100);   /* IE */
}
</pre>
<p>That&#8217;s it! Simple but very useful and attractive.</p>
<p><a href="http://www.designers-chair.com/images/css/image_transparency/Image Transparency.rar"><img class="alignright" style="border: 0pt none;" title="Download this project" src="http://www.designers-chair.com/images/css/image_transparency/download.jpg" alt="" width="160" height="40" /></a></p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-9392223937717562";
/* Embedani */
google_ad_slot = "9865879433";
google_ad_width = 468;
google_ad_height = 60;
// --></script><br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.designers-chair.com/2009/03/css-image-transparency/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Design studio web page</title>
		<link>http://www.designers-chair.com/2009/02/design-studio-web-page-layout/</link>
		<comments>http://www.designers-chair.com/2009/02/design-studio-web-page-layout/#comments</comments>
		<pubDate>Thu, 26 Feb 2009 11:38:57 +0000</pubDate>
		<dc:creator>Designers Chair</dc:creator>
				<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[effect]]></category>
		<category><![CDATA[layout]]></category>
		<category><![CDATA[page]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.designers-chair.com/?p=41</guid>
		<description><![CDATA[Learn how to make professional looking design studio web page layout. Step by step tutorial, easy to follow…
In this tutorial we are going to design this web page layout :



Don&#8217;t worry, it&#8217;s not so complicated as it looks. I&#8217;ve uploaded original PSD file so you can download it (at the bottom of the page). It [...]]]></description>
			<content:encoded><![CDATA[<p>Learn how to make professional looking design studio web page layout. Step by step tutorial, easy to follow…</p>
<p><span id="more-41"></span>In this tutorial we are going to design this web page layout :<br />
<script type="text/javascript"><!--
google_ad_client = "pub-9392223937717562";
/* Link_na_pocetku */
google_ad_slot = "0581975753";
google_ad_width = 468;
google_ad_height = 15;
// --></script><br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"></script></p>
<p><img class="alignnone" title="Design studio page layout" src="http://www.designers-chair.com/images/photoshop/Design_studio/finished_design.jpg" alt="" width="570" height="605" /></p>
<p>Don&#8217;t worry, it&#8217;s not so complicated as it looks. I&#8217;ve uploaded original PSD file so you can download it (at the bottom of the page). It will work for Photoshop 7 and above.</p>
<p>Let&#8217;s get started!</p>
<p><strong>01. Step</strong><br />
 Before we get to work we need to decide how are web page is gonna look. So here is the basic concept :</p>
<p><img class="alignnone" title="positions" src="http://www.designers-chair.com/images/photoshop/Design_studio/01. Step - positions.jpg" alt="" width="570" height="605" /></p>
<p>It will be 850px in width.</p>
<p><strong>02. Step</strong><br />
 Create a new document, size 1024&#215;1080, add a new layer (CRTL+SHIFT+N) named &#8220;background&#8221; ,  fill it with any color and under Gradient Overlay in Blending Options apply the following settings :</p>
<p><img class="alignnone" title="Gradient" src="http://www.designers-chair.com/images/photoshop/Design_studio/02. Step - gradient.jpg" alt="" width="413" height="443" /></p>
<p><em>Color Midpoint</em> <strong>must</strong> be closer to the right <em>Color Stop</em>!</p>
<p><strong>03. Step</strong><br />
 Create a new set and name it &#8220;header&#8221;. From now we will work in this &#8220;folder&#8221;.</p>
<p><img class="alignnone" title="New layer set" src="http://www.designers-chair.com/images/photoshop/Design_studio/03. Step - header_set.jpg" alt="" width="211" height="128" /></p>
<p>Using <em>Rounded Rectangle Tool</em> (radius : 5px) draw header. It should be 850&#215;200 px, about 30px from the top. Rasterize it, reduce opacity to 65% and apply these blending options :</p>
<p><img class="alignnone" title="header gradient" src="http://www.designers-chair.com/images/photoshop/Design_studio/03. Step - header_gradient.jpg" alt="" width="420" height="227" /></p>
<p><img class="alignnone" title="header stroke" src="http://www.designers-chair.com/images/photoshop/Design_studio/03. Step - header_stroke.jpg" alt="" width="420" height="282" /></p>
<p>Name it &#8220;header&#8221;.</p>
<p><strong>04. Step</strong><br />
 Create a new layer (still in &#8220;header&#8221; set) and name it &#8220;ref&#8221; (short for reflection). Select <em>Elliptical Marquee Tool</em>, click on point 1 and drag it to point 2 :</p>
<p><img class="alignnone" title="Elliptical tool" src="http://www.designers-chair.com/images/photoshop/Design_studio/04. Step - elliptical.jpg" alt="" width="500" height="120" /></p>
<p>Fill that selection with #FFFFFF, then press <strong>CRTL+D</strong> to deselect it. Click once on the layer &#8220;header&#8221; on the right side (layer box) <strong>while holding CTRL</strong>. Layer &#8220;header&#8221; should be selected now. Press <strong>SHIFT+CRTL+I</strong> or go <em>Select &gt; Inverse</em> to inverse selection. Select layer &#8220;ref&#8221; (just click once on it in the right menu) and press <strong>delete</strong> on your keyboard. Now reduce opacity to 6%.</p>
<p>Your header should now look like this :</p>
<p><img class="alignnone" title="Reflection" src="http://www.designers-chair.com/images/photoshop/Design_studio/04. Step - reflection.jpg" alt="" width="500" height="101" /></p>
<p>Add your logo on the left (i used Sun 1 shape from <em>Custom Shape Tool</em>), write web site name next to it (i used Verdana &#8211; 18pt) and under it short description (Verdana &#8211; 11pt). Logo and site name have <em>Outer Glow</em> on them (color : #FBB1FF).</p>
<p><img class="alignnone" title="Logo and title" src="http://www.designers-chair.com/images/photoshop/Design_studio/04. Step - logo.jpg" alt="" width="500" height="158" /><br />
<script type="text/javascript"><!--
google_ad_client = "pub-9392223937717562";
/* Novi_200x90 */
google_ad_slot = "4124642977";
google_ad_width = 200;
google_ad_height = 90;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p><strong>05. Step</strong><br />
 Layer set &#8220;header&#8221; is now finished. Create a new layer set and name it &#8220;hor_menu&#8221;.<br />
 Using <em>Rounded Rectangle Tool</em> (radius : 5px) draw horizontal menu. It should be 850&#215;35 px, about 20px under the header. Rasterize it, reduce opacity to 50% (name it &#8220;horizontal&#8221;) and apply these blending options :</p>
<p><img class="alignnone" title="gradient" src="http://www.designers-chair.com/images/photoshop/Design_studio/05. Step - menu_gradient.jpg" alt="" width="420" height="227" /></p>
<p><img class="alignnone" title="Menu stroke" src="http://www.designers-chair.com/images/photoshop/Design_studio/05. Step - menu_stroke.jpg" alt="" width="420" height="282" /></p>
<p>It should look like this :</p>
<p><img class="alignnone" title="Menu after" src="http://www.designers-chair.com/images/photoshop/Design_studio/05. Step - menu after.jpg" alt="" width="500" height="233" /></p>
<p>Now click on the layer &#8220;horizontal&#8221; (in the right menu) while holding<strong> CTRL</strong> to load selection.</p>
<p><img class="alignnone" title="Menu selected" src="http://www.designers-chair.com/images/photoshop/Design_studio/05.%20Step%20-%20menu%20selected.jpg" alt="" width="500" height="233" /></p>
<p>Using <em>Rectangular Marquee Tool</em> deselect the lower half of that selection (hold <strong>ALT</strong> key). Create a new layer, name it &#8220;ref&#8221; and fill that selection with #FFFFFF. Reduce opacity to 6%.</p>
<p><img class="alignnone" title="Menu reflection" src="http://www.designers-chair.com/images/photoshop/Design_studio/05. Step - menu_ref.jpg" alt="" width="500" height="233" /></p>
<p>Using <a title="click here to dowload visitor font" href="http://www.dafont.com/visitor.font" target="_blank"><em>Visitor TT2 font</em></a> write the categories of your web page on it (still in &#8220;hor_menu&#8221; layer set). Size 16pt.</p>
<p><img class="alignnone" title="Menu font Visitor TT2" src="http://www.designers-chair.com/images/photoshop/Design_studio/05. Step - menu_font.jpg" alt="" width="500" height="233" /></p>
<p><strong>06. Step</strong><br />
 Now we are going to add some effect to the right. I used free stock picture (credit : <a title="sweetaslemon DA page" href="http://sweetaslemons.deviantart.com/art/Cirular-Light-Textures-112024162" target="_blank">sweetaslemon</a>s). Click <a title="effect01" href="http://www.designers-chair.com/images/photoshop/Design_studio/effect01.jpg" target="_blank"><strong>here</strong></a> to open it and then save it on your hard drive. This effect looks cool and is actually really easy to make. It was created using an application called <a title="Apophysis page" href="http://www.apophysis.org/" target="_blank">Apophysis</a>. I will do a special tutorial on how to make effect like that so be sure to check back in a few days.</p>
<p>Import that effect (JPG file) into your project, set blend mode to <em>Lighten</em> and position it right. Layer &#8220;effect&#8221; needs to be under layer set &#8220;header&#8221; and &#8220;hor_menu&#8221;.</p>
<p><img class="alignnone" title="Effect position" src="http://www.designers-chair.com/images/photoshop/Design_studio/06. Step - effect.jpg" alt="" width="500" height="240" /></p>
<p>Copy layer &#8220;effect01&#8243; and move it above &#8220;hor_menu&#8221; layer set. Make the following selection and then press <strong>delete</strong> (layer &#8220;effect01_copy&#8221; must be selected).</p>
<p><img class="alignnone" title="Delete selection" src="http://www.designers-chair.com/images/photoshop/Design_studio/06. Step - delete_selection.jpg" alt="" width="400" height="326" /></p>
<p>Now it looks like the effect is coming under the &#8220;header&#8221; and above &#8220;hor_menu&#8221;. Next, make following selection using <em>Rectangular Marquee Tool </em>and delete that selection on layers &#8220;effect01&#8243; and &#8220;effect01_copy&#8221;.</p>
<p><img class="alignnone" title="Delete effect" src="http://www.designers-chair.com/images/photoshop/Design_studio/06. Step - delete_second.jpg" alt="" width="400" height="194" /></p>
<p><strong>07. Step</strong><br />
 Create a new layer set and name it body. Using <em>Rounded Rectangle Tool</em> (radius : 5px) draw the body. It should be 600&#215;620 px, about 30px under the horizontal menu. Rasterize it, fill it with #000000, set blend mode to <em>Lighten</em> and under <em>Blending Options</em> make <em>Stroke</em> 1px #595C5F.</p>
<p>On the top we will put some kind of AJAX image rotator that will display best artwork with short description. So using <em>Rounded Rectangle Tool</em> (radius : 5px) draw the shape of the rotator. It should be 565&#215;265. Put some image inside and a short description just for example.</p>
<p><img class="alignnone" title="AJAX rotator" src="http://www.designers-chair.com/images/photoshop/Design_studio/07. Step - AJAX_rotator.jpg" alt="" width="500" height="300" /></p>
<p>Under it using <em>Rounded Rectangle Tool</em> (radius : 5px) draw shape similar to the one below, fill it with any color and apply the following <em>Gradient settings</em> under <em>Blending Mode</em> :</p>
<p><img class="alignnone" title="Phoenix" src="http://www.designers-chair.com/images/photoshop/Design_studio/07. Step - phoneix.jpg" alt="" width="500" height="150" /></p>
<p><img class="alignnone" title="Bar" src="http://www.designers-chair.com/images/photoshop/Design_studio/07. Step - bar.jpg" alt="" width="400" height="250" /></p>
<p>Name that layer &#8220;gray_bar&#8221;. Create reflection for it like you did for horizontal menu, add some text and the body is finished. You can add text container using <em>Rectangular Marquee Tool</em>. Fill it with #323335 and stroke #87888A 1px.</p>
<p><img class="alignnone" title="07 finished" src="http://www.designers-chair.com/images/photoshop/Design_studio/07. Step - finished.jpg" alt="" width="500" height="516" /></p>
<p><strong>08. Step</strong><br />
 Now create a new layer set and name it &#8220;right_column&#8221;. Using <em>Rounded Rectangle Tool</em> (radius : 5px) draw the right column. It should be 240&#215;620 px, about 30px under the horizontal menu. Rasterize it, fill it with #000000, set blend mode to <em>Lighten</em> and under <em>Blending Options</em> make <em>Stroke</em> 1px #595C5F.</p>
<p>Copy the &#8220;gray bar&#8221; from the body layer set, write &#8220;Random artwork&#8221; on it (Visitor TT2 16pt). There you can put thumbnails of your pictures.</p>
<p><img class="alignnone" title="Random art" src="http://www.designers-chair.com/images/photoshop/Design_studio/08. Step - random_art.jpg" alt="" width="359" height="325" /></p>
<p>Add &#8220;Poll&#8221; and the &#8220;Archive&#8221; the same way you did &#8220;random artwork&#8221;.</p>
<p><img class="alignnone" title="Archive" src="http://www.designers-chair.com/images/photoshop/Design_studio/08. Step - archive.jpg" alt="" width="350" height="405" /></p>
<p><strong>09. Step </strong><br />
 Create a new layer set and name it &#8220;footer&#8221;. Using<em> Rounded Rectangle Tool</em> (radius : 5px) the footer. It should be 850&#215;158 px, about 30px under the body. Rasterize it, fill it with any color and apply these blending options :</p>
<p>Gradient :</p>
<p><img class="alignnone" title="Footer gradient" src="http://www.designers-chair.com/images/photoshop/Design_studio/09. Step - footer_grad.jpg" alt="" width="408" height="282" /></p>
<p>Stroke : 1px, opacity : 27%, color : #FFFFFF.</p>
<p><img class="alignnone" title="look" src="http://www.designers-chair.com/images/photoshop/Design_studio/09. Step - look.jpg" alt="" width="500" height="151" /></p>
<p>Using 18px Georgia (#C594C1) write down some months just for example, and under them names of the articles.</p>
<p><img class="alignnone" title="Months" src="http://www.designers-chair.com/images/photoshop/Design_studio/09. Step - months.jpg" alt="" width="500" height="96" /></p>
<p>Using<em> Line Tool</em> draw a straight line under them and put your copyright there. On the right you can add small banner that links to your partners/friends web site.</p>
<p><img class="alignnone" title="Finished" src="http://www.designers-chair.com/images/photoshop/Design_studio/09. Step - finished.jpg" alt="" width="500" height="88" /></p>
<p>That&#8217;s it! Hope you have learned something! Click <a title="Download PSD!" href="http://www.designers-chair.com/images/photoshop/Design_studio/design_studio_layout_DC.rar" target="_blank"><strong>here</strong></a> to download PSD.</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-9392223937717562";
/* Embedani */
google_ad_slot = "9865879433";
google_ad_width = 468;
google_ad_height = 60;
// --></script><br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.designers-chair.com/2009/02/design-studio-web-page-layout/feed/</wfw:commentRss>
		<slash:comments>63</slash:comments>
		</item>
		<item>
		<title>Flash website design 01/02</title>
		<link>http://www.designers-chair.com/2009/02/flash-website-design-part-01/</link>
		<comments>http://www.designers-chair.com/2009/02/flash-website-design-part-01/#comments</comments>
		<pubDate>Fri, 06 Feb 2009 16:57:01 +0000</pubDate>
		<dc:creator>Designers Chair</dc:creator>
				<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[gray]]></category>
		<category><![CDATA[shade]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.designers-chair.com/?p=18</guid>
		<description><![CDATA[First part of tutorial on how to make simple, yet attractive design for Flash website in Photoshop.  




PART 1 (loading page)
In the first part we will make design for our loading screen. Click here to see the final result.
1. Step
Create new document (900&#215;700), create new layer (CTRL+SHIFT+N) and name it &#8220;background&#8221;. Now fill it [...]]]></description>
			<content:encoded><![CDATA[<p>First part of tutorial on how to make simple, yet attractive design for Flash website in Photoshop.  <span id="more-18"></span><br />
<script type="text/javascript"><!--
google_ad_client = "pub-9392223937717562";
/* Link_na_pocetku */
google_ad_slot = "0581975753";
google_ad_width = 468;
google_ad_height = 15;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p><strong>PART 1 (loading page)</strong></p>
<p>In the first part we will make design for our loading screen. Click <a href="http://www.designers-chair.com/images/photoshop/Flash_website/part01/part01_final.jpg">here</a> to see the final result.</p>
<p><strong>1. Step</strong></p>
<p>Create new document (900&#215;700), create new layer (CTRL+SHIFT+N) and name it &#8220;background&#8221;. Now fill it with any color you want. Then right click on that layer and select Blending Options. Apply the following settings :</p>
<p><img class="alignnone" title="Step01_a" src="http://www.designers-chair.com/images/photoshop/Flash_website/part01/Step01_a.jpg" alt="" width="491" height="297" /></p>
<p><img class="alignnone" title="Step01_b" src="http://www.designers-chair.com/images/photoshop/Flash_website/part01/Step01_b.jpg" alt="" width="405" height="235" /></p>
<p><strong>2. Step</strong></p>
<p>Make your foreground color #333333. Then create a new layer and name it &#8220;left&#8221;. Select your brush tool (size 13px) and in brush preset apply following settings :</p>
<p><img class="alignnone" title="Brush01" src="http://www.designers-chair.com/images/photoshop/Flash_website/part01/brush01.jpg" alt="" width="349" height="424" /></p>
<p><img class="alignnone" title="Brush02" src="http://www.designers-chair.com/images/photoshop/Flash_website/part01/brush02.jpg" alt="" width="349" height="424" /> <strong></strong></p>
<p><strong>3. Step</strong></p>
<p>Select <em>Pen Tool</em> and using <em>Paths</em> (not <em>Shape Layers</em>!) click in the left corner of document (point 1), and then in the center of your document (point 2).</p>
<p><img class="alignnone" title="Step03" src="http://www.designers-chair.com/images/photoshop/Flash_website/part01/Step03.jpg" alt="" width="400" height="76" /></p>
<p><img class="alignnone" title="Step03a" src="http://www.designers-chair.com/images/photoshop/Flash_website/part01/Step03a.jpg" alt="" width="400" height="330" /></p>
<p><img class="alignnone" title="Step03b" src="http://www.designers-chair.com/images/photoshop/Flash_website/part01/Step03b.jpg" alt="" width="400" height="330" /> <strong></strong></p>
<p><strong>4. Step</strong></p>
<p>Using <em>Convert Point Tool</em> click on point 1 and drag it to point 2 (see picture below) while holding down left mouse button.</p>
<p><img class="alignleft" title="Step04" src="http://www.designers-chair.com/images/photoshop/Flash_website/part01/Step04.jpg" alt="" width="230" height="106" /> <img class="alignnone" title="Step04b" src="http://www.designers-chair.com/images/photoshop/Flash_website/part01/Step04b.jpg" alt="" width="400" height="301" /> <strong></strong></p>
<p><strong>5. Step</strong></p>
<p>Right click on the path and select<em> Stroke Path</em>. Then select <em>Brush</em> and press OK. Right click the path again and choose <em>Delete Path</em>.</p>
<p><img class="alignnone" title="Step05a" src="http://www.designers-chair.com/images/photoshop/Flash_website/part01/Step05a.jpg" alt="" width="400" height="246" /></p>
<p><img class="alignnone" title="Step05b" src="http://www.designers-chair.com/images/photoshop/Flash_website/part01/Step05b.jpg" alt="" width="400" height="246" /> <strong></strong></p>
<p><strong>6. Step</strong></p>
<p>Duplicate layer &#8220;left&#8221; and name it &#8220;right&#8221;. Press <strong>CTRL+T</strong>, right click on layer an select <em>Flip Horizontal</em>. Press enter and then move layer &#8220;right&#8221; to the right while holding down <strong>SHIT key</strong> (this will make it move straight).</p>
<p><img class="alignnone" title="Step06" src="http://www.designers-chair.com/images/photoshop/Flash_website/part01/Step06.jpg" alt="" width="400" height="163" /> <strong></strong></p>
<p><strong>7. Step</strong></p>
<p>Using <em>Horizontal Type Tool</em> write &#8220;loading&#8221; between those two layers. Duplicate it and flip it vertical. Reduce its opacity to 10% and drag it down while holding SHIFT. Above you can write current progress, eg. &#8220;22%&#8221; in <em>Arial.</em></p>
<p><em></em> <img class="alignnone" title="Step07" src="http://www.designers-chair.com/images/photoshop/Flash_website/part01/Step07.jpg" alt="" width="400" height="176" /></p>
<p>When you do a flash version just hide layer &#8220;22%&#8221; and put there the real loading progress you coded.</p>
<p><strong>8. Step</strong></p>
<p>Now just add the title above the same way we did for &#8220;loading&#8221;. I&#8217;m gonna name it &#8220;Shade of Grey&#8221; but you can put name of your web site or your name (if you are doing a portfolio page).</p>
<p><img class="alignnone" title="Step08" src="http://www.designers-chair.com/images/photoshop/Flash_website/part01/Step08.jpg" alt="" width="400" height="428" /></p>
<p>That&#8217;s it! Design for the loading page is complete. First part of this tutorial is finished, be sure to check back in a few days when part 2 (post-loading page design) is published. Hope you&#8217;ve learned something about Pen Tool and brush settings. If you don&#8217;t understand something leave a comment and i will try to help you.</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-9392223937717562";
/* Embedani */
google_ad_slot = "9865879433";
google_ad_width = 468;
google_ad_height = 60;
// --></script><br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.designers-chair.com/2009/02/flash-website-design-part-01/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>2D tentacles</title>
		<link>http://www.designers-chair.com/2009/02/2d-tentacles/</link>
		<comments>http://www.designers-chair.com/2009/02/2d-tentacles/#comments</comments>
		<pubDate>Wed, 04 Feb 2009 18:55:32 +0000</pubDate>
		<dc:creator>Designers Chair</dc:creator>
				<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[2D]]></category>
		<category><![CDATA[beginner]]></category>
		<category><![CDATA[tentacles]]></category>

		<guid isPermaLink="false">http://www.designers-chair.com/?p=10</guid>
		<description><![CDATA[Wanna know how to make those cool tentacles that you see on almost every wallpaper? It&#8217;s easier than you think…





1. Step
Create a new document, make it 800&#215;600, and then press D to reset your foreground and background color. From the menu on the left select the Polygonal Lasso Tool.

2. Step
Press CTRL+SHIFT+N to make a new [...]]]></description>
			<content:encoded><![CDATA[<p><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:HyphenationZone>21</w:HyphenationZone> <w:DoNotOptimizeForBrowser /> </w:WordDocument> </xml><![endif]--><!--  /* Font Definitions */ @font-face 	{font-family:Tahoma; 	panose-1:2 11 6 4 3 5 4 4 2 4; 	mso-font-charset:238; 	mso-generic-font-family:swiss; 	mso-font-pitch:variable; 	mso-font-signature:1627421319 -2147483648 8 0 66047 0;}  /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-parent:""; 	margin:0cm; 	margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:12.0pt; 	font-family:"Times New Roman"; 	mso-fareast-font-family:"Times New Roman";} h1 	{mso-style-next:Normal; 	margin:0cm; 	margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	page-break-after:avoid; 	mso-outline-level:1; 	font-size:14.0pt; 	mso-bidi-font-size:12.0pt; 	font-family:Tahoma; 	mso-font-kerning:0pt;} p.MsoBodyText, li.MsoBodyText, div.MsoBodyText 	{margin:0cm; 	margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	mso-bidi-font-size:12.0pt; 	font-family:Tahoma; 	mso-fareast-font-family:"Times New Roman";} @page Section1 	{size:612.0pt 792.0pt; 	margin:70.85pt 70.85pt 70.85pt 70.85pt; 	mso-header-margin:36.0pt; 	mso-footer-margin:36.0pt; 	mso-paper-source:0;} div.Section1 	{page:Section1;} --><span style="font-size: 12pt; font-family: &quot;Times New Roman&quot;;">Wanna know how to make those cool tentacles that you see on almost every wallpaper? It&#8217;s easier than you think…</span><br />
<span style="font-size: 12pt; font-family: &quot;Times New Roman&quot;;"><span id="more-10"></span><br />
<script type="text/javascript"><!--
google_ad_client = "pub-9392223937717562";
/* Link_na_pocetku */
google_ad_slot = "0581975753";
google_ad_width = 468;
google_ad_height = 15;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p><strong>1. Step</strong></span></p>
<p>Create a new document, make it 800&#215;600, and then press D to reset your foreground and background color. From the menu on the left select the <em>Polygonal Lasso Tool</em>.</p>
<p><span style="font-size: 12pt; font-family: &quot;Times New Roman&quot;;"><img class="alignnone" title="Step01" src="http://www.designers-chair.com/images/photoshop/2d_tentacles/Step01.jpg" alt="" width="273" height="116" /></span></p>
<p><span style="font-size: 12pt; font-family: &quot;Times New Roman&quot;;"><strong>2. Step</strong></span></p>
<p>Press <strong>CTRL+SHIFT+N</strong> to make a new layer and name it &#8220;triangle&#8221;. Using <em>Polygonal Lasso Tool </em>draw a triangle in the center of your document. It&#8217;s very easy to do, just click on point 1, then on point 2, then on point 3 and then go back up to point 1. The smaller your base (marked &#8220;a&#8221; on the picture below) is, the thinner the tentacle will be.</p>
<p><span style="font-size: 12pt; font-family: &quot;Times New Roman&quot;;"><img class="alignnone" title="Step02" src="http://www.designers-chair.com/images/photoshop/2d_tentacles/Step02.jpg" alt="" width="273" height="439" /></span></p>
<p><span style="font-size: 12pt; font-family: &quot;Times New Roman&quot;;">Press CTRL+D to deselect it.</span></p>
<p><span style="font-size: 12pt; font-family: &quot;Times New Roman&quot;;"><strong>3. Step</strong></span></p>
<p>Go Edit &gt; Fill and press OK. Make sure you use foreground color. Now for the fun part. Duplicate layer &#8220;triangle&#8221; and name it &#8220;tentacle01&#8243;. Then go <strong>Filter &gt; Distort &gt; Shear</strong> and apply the following settings:</p>
<p><span style="font-size: 12pt; font-family: &quot;Times New Roman&quot;;"><img class="alignnone" title="Step03" src="http://www.designers-chair.com/images/photoshop/2d_tentacles/Step03.jpg" alt="" width="273" height="346" /></span></p>
<p><span style="font-size: 12pt; font-family: &quot;Times New Roman&quot;;"><strong>4. Step</strong></span></p>
<p>We now have a cool tentacle but it&#8217;s upside down. Select layer &#8220;tentacle01&#8243;, press <strong>CTRL+T</strong>, right click on the tentacle and select Flip Vertical.</p>
<p><span style="font-size: 12pt; font-family: &quot;Times New Roman&quot;;"><img class="alignnone" title="Step04" src="http://www.designers-chair.com/images/photoshop/2d_tentacles/Step04.jpg" alt="" width="273" height="404" /></span></p>
<p><span style="font-size: 12pt; font-family: &quot;Times New Roman&quot;;"><strong>5. Step</strong></span></p>
<p>Your first tentacle is done! Creating more tentacles is easy. You can duplicate layer &#8220;tentacle01&#8243; and transform it using <em>Transformation Tool</em> (CTRL+T) or simply repeat steps 2, 3 and 4 on layer &#8220;triangle&#8221; with different settings in step 3.</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-9392223937717562";
/* Embedani */
google_ad_slot = "9865879433";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.designers-chair.com/2009/02/2d-tentacles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Basic HTML file</title>
		<link>http://www.designers-chair.com/2009/02/basic-html-file/</link>
		<comments>http://www.designers-chair.com/2009/02/basic-html-file/#comments</comments>
		<pubDate>Sun, 01 Feb 2009 18:32:32 +0000</pubDate>
		<dc:creator>Designers Chair</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[XHTML]]></category>

		<guid isPermaLink="false">http://www.designers-chair.com/?p=7</guid>
		<description><![CDATA[Create a basic HTML file that you can use as a startup for any web site.
This tutorial will be finished soon&#8230;




]]></description>
			<content:encoded><![CDATA[<p>Create a basic HTML file that you can use as a startup for any web site.</p>
<p><span id="more-7"></span>This tutorial will be finished soon&#8230;</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-9392223937717562";
/* Embedani */
google_ad_slot = "9865879433";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.designers-chair.com/2009/02/basic-html-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blue eyes</title>
		<link>http://www.designers-chair.com/2009/02/photoshop-blue-eyes/</link>
		<comments>http://www.designers-chair.com/2009/02/photoshop-blue-eyes/#comments</comments>
		<pubDate>Sun, 01 Feb 2009 13:03:47 +0000</pubDate>
		<dc:creator>Designers Chair</dc:creator>
				<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[blue]]></category>
		<category><![CDATA[eyes]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.designers-chair.com/?p=3</guid>
		<description><![CDATA[Change the color of  the eyes to blue in few easy and simple steps.

Changing the color of eyes is a simple procedure that takes only a few minutes. Basically, using this tutorial you can change it to any color you want by playing with hue and saturation. You can do this with almost any version [...]]]></description>
			<content:encoded><![CDATA[<p>Change the color of  the eyes to blue in few easy and simple steps.</p>
<p><span id="more-3"></span></p>
<div class="wp-caption aligncenter" style="width: 423px"><img title="Blue eyes - before and after" src="http://www.designers-chair.com/images/photoshop/blue_eyes/blue-eyes-before-after.jpg" alt="Blue eyes - before and after" width="413" height="232" /><p class="wp-caption-text">Blue eyes - before and after</p></div>
<p>Changing the color of eyes is a simple procedure that takes only a few minutes. Basically, using this tutorial you can change it to any color you want by playing with hue and saturation. You can do this with almost any version of Photoshop.<br />
<script type="text/javascript"><!--
google_ad_client = "pub-9392223937717562";
/* Link_na_pocetku */
google_ad_slot = "0581975753";
google_ad_width = 468;
google_ad_height = 15;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p><strong>1. Step</strong><br />
Open your image, and select Elliptical Marquee Tool from the menu on your left (by default).</p>
<p><img class="alignnone" title="Elliptical marquee tool" src="http://www.designers-chair.com/images/photoshop/blue_eyes/elliptical-marquee-tool.jpg" alt="" width="267" height="91" /></p>
<p><strong>2. Step</strong><br />
Duplicate your layer (CTRL + J) and work on the top layer. Select the iris of the eye while holding down Shift.</p>
<p><img class="alignnone" title="Select puple" src="http://www.designers-chair.com/images/photoshop/blue_eyes/select-puple.jpg" alt="" width="267" height="79" /></p>
<p><strong>3. Step</strong><br />
Notice that her eyelid is covering a part of the eye so we need to deselect that part. Zoom in and using <em>Lasso Tool</em> make a selection like i did in picture below. Important : hold the Alt key while you do this.</p>
<p><img class="alignnone" title="Remove eyelid" src="http://www.designers-chair.com/images/photoshop/blue_eyes/remove-eyelid.jpg" alt="" width="267" height="260" /></p>
<p><strong>4. Step</strong><br />
Press CTRL + U (or go Image &gt; Adjustments &gt; Hue/Saturation…) and use the following values :</p>
<p><img class="alignnone" title="Hue saturation" src="http://www.designers-chair.com/images/photoshop/blue_eyes/Hue-saturation.jpg" alt="" width="406" height="278" /></p>
<p>Play with Hue value if you want some other color.</p>
<p><strong>5. Step</strong><br />
Almost done. Press CRTL + D to deselect the selection and than erase the part you don&#8217;t need using Eraser Tool.</p>
<p><img class="alignnone" title="Erase extra" src="http://www.designers-chair.com/images/photoshop/blue_eyes/erase-extra.jpg" alt="" width="267" height="206" /></p>
<p><strong>6. Step</strong><br />
Do the same thing on the other eye using same Hue/Saturation values and you&#8217;re done! Hope you&#8217;ve learned something.<br />
<script type="text/javascript"><!--
google_ad_client = "pub-9392223937717562";
/* Embedani */
google_ad_slot = "9865879433";
google_ad_width = 468;
google_ad_height = 60;
// --></script><br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.designers-chair.com/2009/02/photoshop-blue-eyes/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>
