<?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>Red Team Design</title>
	<atom:link href="http://www.red-team-design.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.red-team-design.com</link>
	<description>CSS tips and tricks, tutorials, templates</description>
	<lastBuildDate>Wed, 07 Jul 2010 20:22:40 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>10 Web Usability tips for your website</title>
		<link>http://www.red-team-design.com/web-usability-tips-for-your-website</link>
		<comments>http://www.red-team-design.com/web-usability-tips-for-your-website#comments</comments>
		<pubDate>Wed, 07 Jul 2010 20:12:40 +0000</pubDate>
		<dc:creator>Red</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[accessibility]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[logo]]></category>
		<category><![CDATA[ui design]]></category>
		<category><![CDATA[usability]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.red-team-design.com/?p=565</guid>
		<description><![CDATA[At the beginning, perhaps you were developing websites just for fun or you were just learning some new tricks, but now, when you are developing a website or a web application you can&#8217;t afford to skip the usability basics rules. In this article we&#8217;ll try to remember some basic, unwritten  web usability rules.

1. Place [...]]]></description>
			<content:encoded><![CDATA[<p>At the beginning, perhaps you were developing websites just for fun or you were just learning some new tricks, but now, when you are developing a website or a web application you can&#8217;t afford to skip the usability basics rules. In this article we&#8217;ll try to remember some basic, unwritten  web usability rules.</p>
<p><a href="http://www.red-team-design.com/wp-content/uploads/2010/07/usability-tips.png"><img class="aligncenter size-full wp-image-683" title="usability-tips" src="http://www.red-team-design.com/wp-content/uploads/2010/07/usability-tips.png" alt="Usability Tips for your website or web application" width="600" height="200" /></a><span id="more-565"></span></p>
<h3>1. Place the logo always in the left corner of the viewport</h3>
<p>As drivers use to search for green traffic light to start leaving the intersection, users search the logo in the left side of the website to click on it. They are used to click on it to access the home/main page of the website. Also, as usability tests proved, the left corner of a website is the most visible content.</p>
<h3>2. Add CSS states (almost) to everything</h3>
<p>Nothing is more annoying that hovering a website menu, or a button, link etc without seeing a change. The user is searching for interactivity and if you, as web developer don&#8217;t offer him that, you will lose him. Beside hover, for example a button should have also an <strong>active state</strong> (pressed style). This way the user will fell he&#8217;s always under control.</p>
<h4>CSS states example</h4>
<pre>&lt;a href="#" id="button-style"&gt;My Button&lt;/a&gt;

a#button-style
{
  background: #eaeaea;
}

a#button-style:hover
{
  background: #9c9c9c;
}

a#button-style:active
{
  background: #777777;
}</pre>
<h3>3. Use label&#8217;s &#8220;for&#8221; attribute</h3>
<p>When in a form, and you need to click on a checkbox input or radio input, it will always be easier to be able to check/uncheck the input by toggle-ing also on the label. Using labels for forms is also an accesibility  &#8220;golden rule&#8221;. Getting back to usability rules, a common mistake is to use the label tag without it&#8217;s <strong>for</strong> attribute. Here is a good example for using labels when inner a form:</p>
<pre>&lt;input type="radio" name="options" id="id-1"&gt;
&lt;label for="id-1"&gt;First option &lt;/label&gt;

&lt;input type="radio" name="options" id="id-2"&gt;
&lt;label for="id-2"&gt;Second option &lt;/label&gt;
</pre>
<h4>As result,selecting a radio option is easier. Cool huh?</h4>
<div>
<input id="id-1" name="options" type="radio" /><label for="id-1">First option </label></div>
<div>
<input id="id-2" name="options" type="radio" /><label for="id-2">Second option </label></div>
<h3>4. Breadcrumbs</h3>
<p>Using breadcrumbs could be compared with GPS navigation, the user will know his current position inside the website, it will help him to no get lost. You want to guide him through your website and you don&#8217;t want to have him annoyed by the fact he&#8217;s lost &#8211; because in this case you risk to loose him, he could exit your website immediately. Get inspired by the <a href="http://www.smashingmagazine.com/2009/03/17/breadcrumbs-in-web-design-examples-and-best-practices-2/">well known breadcrumbs patterns</a> around the internet.</p>
<h3>5. Highlight form fields</h3>
<p>If you are dealing with text inputs and textareas you should  use CSS focus state to specify when the user has clicked inside an input or textarea. This way user will know which form element he clicked.</p>
<h4>Quick CSS example</h4>
<pre>input[type=text]
{
  border: 1px solid #9c9c9c;
  background: #eaeaea;
}

input[type=text]:focus
{
  border: 1px solid #323232;
  background: white;
}
</pre>
<h3>6. Use HTML tags accordingly</h3>
<p>Use heading, paragraph, bold elements in the right way, as they should be used. Take advantage of them by using heading to highlighting titles, use paragraphs to add a text section and bold to highlight words in the text section. Make your text easier to read by creating a text flow, this way the user will easier scan titles and sections.</p>
<p>Also keep in mind to use headings in their &#8220;normal&#8221; order: h1, h2,&#8230;etc. It&#8217;s recommended again not having more then one h1 per page, usually h1 contains a very important text like main title of the page, for example could be &#8220;purchase&#8221; or &#8220;download&#8221;.</p>
<h3>7. Create a sitemap</h3>
<p>A site map is a website structure representation, a link collection that helps improving user&#8217;s website navigation.</p>
<h3>8. Rich content footer</h3>
<p>Every time you build a site you should keep in mind that a website should have a header, content and <strong>footer</strong>, in some cases the last one is missing and the website looks a bit strange&#8230;it&#8217;s like &#8220;hmm&#8230;something&#8217;s missing?!&#8221;. Lately footers are getting richer and richer content, so <strong>take advantage</strong> and add information to it and do not forget to <a href="http://www.smashingmagazine.com/2009/06/17/informative-and-usable-footers-in-web-design/">get inspired</a>.</p>
<h3>9. Think as you are the user</h3>
<p>Also, you are an user after all, but imagine you are your own website user, try scenarios, act as you have no idea about the content of your site and try finding important links as purchase, download etc. If it&#8217;s hard for you, because you already know every comma in your site, ask a friend or colleague for a feedback. Keep in mind that every opinion matters.</p>
<h3>10. Read, read and&#8230;.read again about usability</h3>
<p>If you think you know enough, that means you still have a lot to learn. Usability evolves, but the main principles are staying and reading can help you improve yourself.<br />
Here&#8217;s a short book list I&#8217;d recommend to read:</p>
<ul>
<li>Don&#8217;t Make Me Think &#8211; <a href="http://www.sensible.com/">Steve Krug</a></li>
<li>Designing Web Usability: The Practice of Simplicity &#8211; <a href="http://www.useit.com">Jakob Nielsen</a></li>
<li>Designing Web Interfaces: Principles and Patterns for Rich Interactions &#8211; <a href="http://oreilly.com/catalog/9780596516253">O&#8217;Reilly</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.red-team-design.com/web-usability-tips-for-your-website/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The outline dotted border and the image replacement technique</title>
		<link>http://www.red-team-design.com/outline-dotted-border-and-image-replacement-technique</link>
		<comments>http://www.red-team-design.com/outline-dotted-border-and-image-replacement-technique#comments</comments>
		<pubDate>Wed, 05 May 2010 18:05:19 +0000</pubDate>
		<dc:creator>Red</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[technique]]></category>

		<guid isPermaLink="false">http://www.red-team-design.com/?p=563</guid>
		<description><![CDATA[If you are a web developer then you surely know what is an image replacement technique and what that means. One of the most common CSS techniques is the Phark Method, a very good and simple method. 
Although this is very used, I noticed developers tend to skip fixing Firefox appearance of a dotted border [...]]]></description>
			<content:encoded><![CDATA[<p>If you are a web developer then you surely know what is an image replacement technique and what that means. One of the most common CSS techniques is the <b>Phark Method</b>, a very good and simple method. </p>
<p>Although this is very used, I noticed developers tend to skip fixing Firefox appearance of a dotted border that goes to the edge of the screen. In this tutorial I will show you how this can be fixed in a simple way.</p>
<p><img src="http://www.red-team-design.com/wp-content/uploads/2010/04/image-replacement-dotted-border.png" alt="Image replacement technique and dotted border" title="Image replacement technique and dotted border" width="600" height="166" class="aligncenter size-full wp-image-574" /></p>
<p><span id="more-563"></span><br />
First let&#8217;s see how Phark Method looks:</p>
<pre>
  &lt;a href="#" class="replacement"&gt;dotted border&lt;/a&gt;
</pre>
<p>and the CSS:</p>
<pre>
a.replacement
{
background: url(dotted-border.png) no-repeat;
height: 44px;
width: 316px;
display: block;
text-indent: -9999px;
}
</pre>
<p>The reason why the outline border goes to the edge is because of the <a href="http://www.w3schools.com/Css/pr_text_text-indent.asp" title="Find more about text indentation">text-indent</a> value : -9999px. If the value is negative the text will be indented to the left and <strong>Firefox users</strong> will notice a <strong>dotted border that goes to the left edge of the screen</strong>.</p>
<p>There are two simple methods I know to fix this:</p>
<h3>First method: use overflow</h3>
<p>This is a fix I use frequently and it&#8217;s most recommended.</p>
<pre>
a.replacement
{
  background: url(dotted-border.png) no-repeat;
  height: 44px;
  width: 316px;
  display: block;
  text-indent: -9999px;
  overflow: hidden;  /*Add this line to the image replacement method*/
}
</pre>
<h3>Second method: use outline</h3>
<p>This also fixes the problem but this can cause problems(you will not see the selection) when tabbing (if accessibility is an important factor for you).</p>
<pre>
a.replacement
{
  background: url(dotted-border.png) no-repeat;
  height: 44px;
  width: 316px;
  display: block;
  text-indent: -9999px;
  outline: none; /*Add this line to the image replacement method*/
}
</pre>
<h3>Conclusion</h3>
<p>At first sight this doesn&#8217;t seems to be a very important problem, doesn&#8217;t affect the HTML layout but when you are developing a website you want to be close to perfection (at least you should try it <img src='http://www.red-team-design.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> ) so I hope this will help you when encountering this kind of behavior.</p>
<p>Bellow you have a live demo with this outline example, please feel free to comment about it or about other solutions you&#8217;ve found!</p>
<p class="center buttons-para">
<a target="_blank" href="http://www.red-team-design.com/wp-content/uploads/2010/04/image-replacement-and-dotted-border.html" class="demo">Demo example</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.red-team-design.com/outline-dotted-border-and-image-replacement-technique/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Submit form on enter key using anchor</title>
		<link>http://www.red-team-design.com/submit-form-on-enter-key-using-anchor</link>
		<comments>http://www.red-team-design.com/submit-form-on-enter-key-using-anchor#comments</comments>
		<pubDate>Mon, 01 Feb 2010 11:47:14 +0000</pubDate>
		<dc:creator>Red</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Tips and tricks]]></category>

		<guid isPermaLink="false">http://www.red-team-design.com/?p=498</guid>
		<description><![CDATA[These days I tested what&#8217;s happening if you have a form and instead a submit input you choose to submit the form using an anchor. If you do that, you will notice that the form won&#8217;t submit on ENTER key. So how can we submit a form on enter key using anchor?


Using input type=&#8221;submit&#8221;
A form [...]]]></description>
			<content:encoded><![CDATA[<p>These days I tested what&#8217;s happening if you have a form and instead a submit input you choose to submit the form using an anchor. If you do that, you will notice that the form won&#8217;t submit on ENTER key. So how can we submit a form on enter key using anchor?</p>
<p><img class="aligncenter size-full wp-image-511" title="Html form example" src="http://www.red-team-design.com/wp-content/uploads/2010/02/html-form-example.png" alt="Html form example" width="250" height="200" /></p>
<p><span id="more-498"></span></p>
<h3>Using input type=&#8221;submit&#8221;</h3>
<p>A form can be submitted using a button like input type=&#8221;button&#8221; having the advantage that you don&#8217;t need to click actually on it. You can just press ENTER key on your keyboard and your form will be submitted.</p>
<p class="center buttons-para"><a class="demo" href="http://www.red-team-design.com/wp-content/uploads/2010/02/form-example-input.html" target="_blank">Submit form using input type=&#8221;submit&#8221; &#8211; demo</a></p>
<h3>Using anchor element</h3>
<p>Everything is fine until now but let&#8217;s  see what happens when you need to submit a form using an anchor. You may ask yourself why you would need that, but all I can say is that there are cases when you need to use an element which is not an input to submit a form.</p>
<p>I encountered this situation two days ago and I thought that would be interesting to share this with you. I needed to find a solution because I didn&#8217;t like the fact that my form wasn&#8217;t submitted when pressed ENTER key.</p>
<p>The trick is to use a hidden submit input in your form. I wasn&#8217;t able to use display: none or visibility: hidden because IE ignores the submit button that way so I hide the button using classic style <img src='http://www.red-team-design.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  .</p>
<pre>.input-hidden
{
  border: none;
  width: 0;
  height: 0;
  line-height: 0;
  padding:0;
  margin: 0;
}</pre>
<p class="center buttons-para"><a class="demo" href="http://www.red-team-design.com/wp-content/uploads/2010/02/form-example-anchor.html" target="_blank">Submit form using anchor and hidden input &#8211; demo</a></p>
<p>This is the way how it worked for me and I find this to be a very good solution. But, I hope this will also help you.</p>
<p>In either case, please leave a comment below with your feedback.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.red-team-design.com/submit-form-on-enter-key-using-anchor/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Center a block element without knowing its width</title>
		<link>http://www.red-team-design.com/center-a-block-element-without-knowing-its-width</link>
		<comments>http://www.red-team-design.com/center-a-block-element-without-knowing-its-width#comments</comments>
		<pubDate>Sat, 30 Jan 2010 11:00:35 +0000</pubDate>
		<dc:creator>Red</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Tips and tricks]]></category>

		<guid isPermaLink="false">http://www.red-team-design.com/?p=492</guid>
		<description><![CDATA[Centering an element may seem quite simple thinking that “text-align:center” will solve the problem. Or maybe set “width” and “margin: 0 auto”, but what happens when you need to center a block element with variable width?


W3C tells us that we can use &#8220;margin: 0 auto&#8221; to center tables so why shouldn&#8217;t we use display: table [...]]]></description>
			<content:encoded><![CDATA[<p>Centering an element may seem quite simple thinking that “text-align:center” will solve the problem. Or maybe set “width” and “margin: 0 auto”, but what happens when you need to center a block element with variable width?</p>
<p><img class="aligncenter size-full wp-image-501" title="Center block element" src="http://www.red-team-design.com/wp-content/uploads/2010/01/center-block-element.png" alt="By default div has auto width" width="377" height="139" /></p>
<p><span id="more-492"></span></p>
<p>W3C tells us that we can use &#8220;margin: 0 auto&#8221; to center tables so why shouldn&#8217;t we use <a href="http://www.w3.org/TR/CSS2/tables.html#table-display">display: table</a> to center a fluid div:</p>
<pre>div.my-element
{
  display: table;
  margin: 0 auto;
}</pre>
<p>This can solve many problems and does a good job in some cases but you must be aware that &#8220;display: table&#8221; is not working when using our &#8220;beloved&#8221; Internet Explorer <a href="http://www.quirksmode.org/css/display.html">(IE5.5, IE 6, IE 7)</a> so don&#8217;t count on this for main design elements (especially if this ruins your design).</p>
<p>I hope this was usefully for you! If you have any comments or suggestions, do not hesitate to post them in the comments section.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.red-team-design.com/center-a-block-element-without-knowing-its-width/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to design a love heart wallpaper</title>
		<link>http://www.red-team-design.com/design-love-heart-wallpaper</link>
		<comments>http://www.red-team-design.com/design-love-heart-wallpaper#comments</comments>
		<pubDate>Sat, 19 Dec 2009 20:20:57 +0000</pubDate>
		<dc:creator>Red</dc:creator>
				<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Adobe Photoshop]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Vector Shape]]></category>

		<guid isPermaLink="false">http://www.red-team-design.com/?p=400</guid>
		<description><![CDATA[In this tutorial we&#8217;ll learn how to create a love themed wallpaper using Photoshop&#8217;s Stroke path and Pen tool.


Create new Photoshop document file
In order to start designing we must create a new 1600&#215;1200px Photoshop file  and after doing that you must fill the background with #316b94 color:


Create custom pattern
Now we&#8217;ll create a 5&#215;5px pattern [...]]]></description>
			<content:encoded><![CDATA[<p>In this tutorial we&#8217;ll learn how to create a love themed wallpaper using Photoshop&#8217;s Stroke path and Pen tool.</p>
<p><img src="http://www.red-team-design.com/wp-content/uploads/2009/12/background-sweet-love.png" alt="Sweet Love Wallpaper" title="Sweet Love Wallpaper" width="600" height="282" class="aligncenter size-full wp-image-471" /></p>
<p><span id="more-400"></span></p>
<h3>Create new Photoshop document file</h3>
<p>In order to start designing we must create a new 1600&#215;1200px Photoshop file  and after doing that you must fill the background with #316b94 color:</p>
<p><img src="http://www.red-team-design.com/wp-content/uploads/2009/12/new-file.png" alt="Create new Photoshop file" title="Create new Photoshop file" width="582" height="369" class="aligncenter size-full wp-image-403" /></p>
<p><img src="http://www.red-team-design.com/wp-content/uploads/2009/12/blue-bg.png" alt="Blue background" title="Blue background" width="609" height="295" class="aligncenter size-full wp-image-404" /></p>
<h3>Create custom pattern</h3>
<p>Now we&#8217;ll create a 5&#215;5px pattern to use it for our background:</p>
<p><img src="http://www.red-team-design.com/wp-content/uploads/2009/12/new-pattern-clear-bg.png" alt="Create new pattern" title="Create new pattern" width="582" height="369" class="aligncenter size-full wp-image-412" /></p>
<p>Now you must zoom 100% (press Z on your keyboard and click several times or use Ctrl+ several times) on the new pattern 5&#215;5px file and you should have this on your screen:</p>
<p><img src="http://www.red-team-design.com/wp-content/uploads/2009/12/zoom1.png" alt="zoom" title="zoom" width="160" height="160" class="aligncenter size-full wp-image-413" /></p>
<h4>Select the Pencil Tool(B)</h4>
<p>Hold down the left mouse button and choose the second option from the list and after please check you have the following settings for your pencil brush:</p>
<p><img src="http://www.red-team-design.com/wp-content/uploads/2009/12/pencil-tool.png" alt="Pencil tool" title="Pencil tool" width="474" height="124" class="aligncenter size-full wp-image-415" /></p>
<h4>Start creating pattern</h4>
<p>From the top-left corner to right-bottom corner start drawing 1pixel:</p>
<p><img src="http://www.red-team-design.com/wp-content/uploads/2009/12/create-pattern.png" alt="create-pattern" title="create-pattern" width="800" height="200" class="aligncenter size-full wp-image-417" /></p>
<h4>Define Pattern</h4>
<p>From the top horizontal menu select Edit(Alt+E) and further choose <b>Define Pattern</b>. Congratulations, you just learned how to create a custom pattern.</p>
<p><img src="http://www.red-team-design.com/wp-content/uploads/2009/12/pattern.png" alt="pattern" title="pattern" width="160" height="160" class="aligncenter size-full wp-image-420" /></p>
<h3>Add styles to your background</h3>
<p>With the pattern you&#8217;ve just created go to <b>Blending options</b> and add the following styles:</p>
<p><img src="http://www.red-team-design.com/wp-content/uploads/2009/12/gradient-pattern.png" alt="gradient-pattern" title="gradient-pattern" width="634" height="983" class="aligncenter size-full wp-image-422" /></p>
<p>The background should look like this:</p>
<p><img src="http://www.red-team-design.com/wp-content/uploads/2009/12/bg-radial.png" alt="bg-radial" title="bg-radial" width="600" height="450" class="aligncenter size-full wp-image-424" /></p>
<h3>Design the wings</h3>
<p>Now we have the background we should go further and add our two wings. </p>
<h4>Start creating feathers</h4>
<p>You must select <b>Pen Tool</b> and start adding points until you create a shape like this one:</p>
<p><img src="http://www.red-team-design.com/wp-content/uploads/2009/12/feather.png" alt="Create feather" title="Create feather" width="629" height="300" class="aligncenter size-full wp-image-427" /></p>
<p>Then add the following effects:</p>
<p><img src="http://www.red-team-design.com/wp-content/uploads/2009/12/feather-effects.png" alt="feather-effects" title="feather-effects" width="639" height="1439" class="aligncenter size-full wp-image-429" /></p>
<h4>Add more feathers</h4>
<p>Place more feathers using slight different shapes with same blending options until you achieve a wing&#8230;you should overlap them as it&#8217;s shown bellow:</p>
<p><img src="http://www.red-team-design.com/wp-content/uploads/2009/12/add-feathers.png" alt="add-feathers" title="add-feathers" width="561" height="1320" class="aligncenter size-full wp-image-431" /></p>
<p>This is why you should achieve by placing feathers one by one:</p>
<p><img src="http://www.red-team-design.com/wp-content/uploads/2009/12/left-wing.png" alt="left-wing" title="left-wing" width="562" height="440" class="aligncenter size-full wp-image-435" /></p>
<h4>Duplicate the left wing</h4>
<p>After you&#8217;ve created the left wing duplicate the layers you used for it and having all duplicated layers selected go to <b>Edit->Transform</b> and <b>Flip Horizontal</b>. A tip for you is to group layers for easier management of layers.</p>
<p><img src="http://www.red-team-design.com/wp-content/uploads/2009/12/both-wings.png" alt="Wings" title="Wings" width="600" height="202" class="aligncenter size-full wp-image-439" /></p>
<h4>Create a heart</h4>
<p>Create a heart with <b>Pen Tool</b> or you can choose heart symbol from custom shapes.</p>
<p><img src="http://www.red-team-design.com/wp-content/uploads/2009/12/heart.png" alt="heart" title="heart" width="600" height="244" class="aligncenter size-full wp-image-441" /></p>
<p>Add the following effects:</p>
<p><img src="http://www.red-team-design.com/wp-content/uploads/2009/12/heart-effects.png" alt="Heart blending options" title="Heart blending options" width="636" height="2860" class="aligncenter size-full wp-image-443" /></p>
<p>And you will have:</p>
<p><img src="http://www.red-team-design.com/wp-content/uploads/2009/12/heart-effects-applied.png" alt="heart-effects-applied" title="heart-effects-applied" width="600" height="216" class="aligncenter size-full wp-image-445" /></p>
<p>Add a new layer like this and use the following gradient:<br />
<img src="http://www.red-team-design.com/wp-content/uploads/2009/12/heart-overlay.png" alt="heart-overlay" title="heart-overlay" width="600" height="229" class="aligncenter size-full wp-image-449" /></p>
<h4>Add abstract shapes and lines</h4>
<p>Selecting <b>Pen Tool</b> and <b>Path</b> instead <b>Shape Layers</b> you must create a custom path like the one bellow and then apply a stroke path with the following brush settings:</p>
<p><img src="http://www.red-team-design.com/wp-content/uploads/2009/12/stroke-path.png" alt="stroke-path" title="stroke-path" width="600" height="509" class="aligncenter size-full wp-image-451" /></p>
<p>This is my result i achieved using two stroke paths but yours can be different, depends of what stroke path you&#8217;re create:</p>
<p><img src="http://www.red-team-design.com/wp-content/uploads/2009/12/stroke-path-applied.png" alt="Stroke path applied" title="Stroke path applied" width="600" height="350" class="aligncenter size-full wp-image-454" /></p>
<h4>Add glowing circles</h4>
<p>Select the <b>Elipse Tool (U)</b> and holding down the <b>Shift</b> key create several circles like in this figure and place them behind heart shape, then apply the <b>Outer Glow</b> effect.</p>
<p><img src="http://www.red-team-design.com/wp-content/uploads/2009/12/Circles-glow.png" alt="Glowing circles" title="Glowing circles" width="600" height="276" class="aligncenter size-full wp-image-456" /></p>
<p>Repeating the last step add more circles for the final step, vary their blue color and place them in the right-bottom corner:</p>
<p><img src="http://www.red-team-design.com/wp-content/uploads/2009/12/background-more-circles.png" alt="More circles" title="More circles" width="600" height="450" class="aligncenter size-full wp-image-458" /></p>
<p class="center buttons-para"><a href="http://www.red-team-design.com/wp-content/uploads/2009/12/Sweet-Lov3-by-red-team-designdotcom.zip" target="_blank" class="download">Download wallpaper</a></a></p>
<p>Thanks for reading this tutorial, if you have something to say don&#8217;t hesitate to comment this article or to <a href="/contact/">contact</a> me!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.red-team-design.com/design-love-heart-wallpaper/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Add drop shadow effect using CSS text-shadow property</title>
		<link>http://www.red-team-design.com/drop-shadow-effect-using-css</link>
		<comments>http://www.red-team-design.com/drop-shadow-effect-using-css#comments</comments>
		<pubDate>Sun, 13 Dec 2009 22:36:24 +0000</pubDate>
		<dc:creator>Red</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[Tips and tricks]]></category>

		<guid isPermaLink="false">http://www.red-team-design.com/?p=360</guid>
		<description><![CDATA[One of the CSS properties people like to use nowadays is the CSS text-shadow property. The text-shadow property represents a comma separated list of shadow effects to be applied to the text of the element.
The times when you had to use the CSS image replacement technique for a simple text shadow effect are gone.


Text-shadow property is CSS level [...]]]></description>
			<content:encoded><![CDATA[<p>One of the CSS properties people like to use nowadays is the CSS <em>text-shadow</em> property. The text-shadow property represents a comma separated list of shadow effects to be applied to the text of the element.</p>
<p>The times when you had to use the CSS image replacement technique for a simple text shadow effect are gone.</p>
<p><img class="aligncenter size-full wp-image-365" title="Css text shadow effect" src="http://www.red-team-design.com/wp-content/uploads/2009/12/css-shadow.gif" alt="Css text shadow effect" width="500" height="190" /></p>
<p><span id="more-360"></span></p>
<h3>Text-shadow property is CSS level 3</h3>
<p>Accordingly, this property will work only on <strong>Webkit (from Safari 3+), Opera 9.5, Firefox 3.1(pre-Alpha), Konqueror or iCab</strong>. Notice there is no problem using this CSS3 property with browsers like Internet Explorer, this property simply will not work on IE so the layout won&#8217;t be affected anyhow.</p>
<h3>Definition of the <a href="http://www.w3.org/TR/css3-text/#text-shadow">CSS text-shadow property</a>:</h3>
<p><img class="aligncenter size-full wp-image-368" title="text-shadow" src="http://www.red-team-design.com/wp-content/uploads/2009/12/text-shadow.gif" alt="text-shadow" width="500" height="190" /></p>
<p>The first two values are the X and Y axis offsets, the third is the  blur radius value which is an optional value and the last value in our photo is the color of the shadow.</p>
<p>The cool thing about these values is that depending how you combine these value you can achieve great shadow effects like  <a href="http://en.wikipedia.org/wiki/Letterpress_printing">letterpress</a> or outlines.</p>
<p>For the following CSS code:</p>
<pre>
h1
{
  color:#777777;
  margin:0;
  font-family: Trebuchet MS;
  font-size: 35px;
  text-align:center;
  text-shadow: 1px 1px 3px #323232;
}
</pre>
<p>here is what you achieve:<br />
<img class="aligncenter size-full wp-image-375" title="Css drop shadow browsers compatibility" src="http://www.red-team-design.com/wp-content/uploads/2009/12/browsers-compatibility.gif" alt="Css drop shadow browsers compatibility" width="407" height="159" /></p>
<p><a href="http://www.red-team-design.com/wp-content/uploads/2009/12/demo.html"><img class="aligncenter size-full wp-image-378" title="Demo drop shadows" src="http://www.red-team-design.com/wp-content/uploads/2009/12/demo.gif" alt="Demo drop shadows" width="600" height="252" /></a></p>
<p class="center buttons-para"><a href="http://www.red-team-design.com/wp-content/uploads/2009/12/demo.html" class="demo" target="_blank">View Demo</a></p>
<p>Thanks for reading, I hope you like this effect as much as i do&#8230;it&#8217;s simple, easy to add and there are no problems with browsers that does not support CSS3.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.red-team-design.com/drop-shadow-effect-using-css/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Things you should know about CSS anatomy</title>
		<link>http://www.red-team-design.com/things-you-should-know-about-css-anatomy</link>
		<comments>http://www.red-team-design.com/things-you-should-know-about-css-anatomy#comments</comments>
		<pubDate>Tue, 01 Dec 2009 12:56:57 +0000</pubDate>
		<dc:creator>Red</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Tips and tricks]]></category>

		<guid isPermaLink="false">http://www.red-team-design.com/?p=288</guid>
		<description><![CDATA[I often notice people tend to use stylesheets without knowing its structure meaning. That&#8217;s why, in this tutorial I will try to present you the CSS components structure.


1.Selectors
The selector is the element that is linked to a particular style.In the following example the selector is &#8220;p&#8221;, so &#8220;p&#8221; is the element who&#8217;s margin properties will [...]]]></description>
			<content:encoded><![CDATA[<p>I often notice people tend to use stylesheets without knowing its structure meaning. That&#8217;s why, in this tutorial I will try to present you the CSS components structure.</p>
<p><img class="aligncenter size-full wp-image-351" title="Css structure anatomy" src="http://www.red-team-design.com/wp-content/uploads/2009/12/css-structure-anatomy.png" alt="Css structure anatomy" width="433" height="216" /><br />
<span id="more-288"></span></p>
<h3>1.Selectors</h3>
<p>The selector is the element that is linked to a particular style.In the following example the selector is &#8220;p&#8221;, so &#8220;p&#8221; is the element who&#8217;s margin properties will be &#8220;0&#8243;.</p>
<pre>
p
{
  margin: 0;
}
</pre>
<h4>Class Selectors</h4>
<p>The advantage of a class selector is that it can be applied to more than one elements according to <a href="http://www.w3.org/TR/html401/struct/global.html#h-7.5.2" target="_blank">W3C recommendation</a>.</p>
<pre>
.colored
{
  color: red;
}
</pre>
<p>Having this, all paragraphs who&#8217;ll have &#8220;colored&#8221; class as attribute will inherit red color from stylesheet.</p>
<h4>ID Selectors</h4>
<p>The id attribute assigns a unique identifier to an element, so try assigning an id attribute to no more than just one element.</p>
<p>If you&#8217;ll assign a CSS id to more elements within a page you will fail the <a href="http://validator.w3.org/" target="_blank">W3C Markup Validation</a> which is very important for you, as a designer.</p>
<pre>
#colored
{
  color: red;
}
</pre>
<h4>Contextual Selectors</h4>
<pre>
p#colored span
{
  color: blue;
}
</pre>
<p>This selector is applied to all &#8220;span&#8221; elements within the paragraph with &#8220;colored&#8221; id attribute.</p>
<p>Result:<br />
<img class="aligncenter size-full wp-image-312" title="blue-css-example" src="http://www.red-team-design.com/wp-content/uploads/2009/12/blue-css-example.png" alt="blue-css-example" width="300" height="30" /></p>
<h3>2.Properties</h3>
<p>Now that we know how a selector looks like let&#8217;s see what is a CSS property. CSS properties defines how the styles should look on the Web page or elsewhere.</p>
<p><strong>Examples:</strong> margin, padding, color, border, background <a href="http://htmlhelp.com/reference/css/properties.html" target="_blank">etc</a>.</p>
<p>In this example, the h1 element has three properties: color, font-family and margin. These properties with theirs values defines how the h1 element will look.</p>
<pre>
h1
{
  color: red;
  font-family: Verdana;
  margin: 10px 0;
}
</pre>
<h3>Conclusion</h3>
<p>Using the selectors properly you will not only have a cleaner markup but you will also have a more beautiful CSS code.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.red-team-design.com/things-you-should-know-about-css-anatomy/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Get rid of Safari&#8217;s blue input outer glow once and for all</title>
		<link>http://www.red-team-design.com/get-rid-of-safari-blue-input-outer-glow-once-and-for-all</link>
		<comments>http://www.red-team-design.com/get-rid-of-safari-blue-input-outer-glow-once-and-for-all#comments</comments>
		<pubDate>Fri, 20 Nov 2009 23:33:23 +0000</pubDate>
		<dc:creator>Red</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://www.red-team-design.com/?p=260</guid>
		<description><![CDATA[When you&#8217;re building web interfaces or just websites you always need to do cross-platform browser testing. As we saw, inputs inherits different styles from browsers and you need to style them. In this article i will show you how simple is to remove Safari&#8217;s glowing blue outline.


The normal state of our input looks like this:

Please [...]]]></description>
			<content:encoded><![CDATA[<p>When you&#8217;re building web interfaces or just websites you always need to do cross-platform browser testing. As we saw, inputs inherits different styles from browsers and you need to <a href="http://www.red-team-design.com/style-an-input-button">style them</a>. In this article i will show you how simple is to remove Safari&#8217;s glowing blue outline.</p>
<p><img src="http://www.red-team-design.com/wp-content/uploads/2009/11/safari-blue-outer-glow.png" alt="safari-blue-outer-glow" title="safari-blue-outer-glow" width="194" height="120" class="aligncenter size-full wp-image-268" /></p>
<p><span id="more-260"></span></p>
<p>The normal state of our input looks like this:</p>
<p><img src="http://www.red-team-design.com/wp-content/uploads/2009/11/safari-blue-outer-glow-state.png" alt="safari-blue-outer-glow-state" title="safari-blue-outer-glow-state" width="194" height="29" class="aligncenter size-full wp-image-270" /></p>
<p>Please notice the effect that appears on input focus(we&#8217;re talking about Mac OS X browser-Safari):</p>
<p><img src="http://www.red-team-design.com/wp-content/uploads/2009/11/safari-blue-outer-glow-state2.png" alt="safari-blue-outer-glow-state2" title="safari-blue-outer-glow-state2" width="194" height="37" class="aligncenter size-full wp-image-271" /></p>
<p>To remove this annoying input effect we just need to add one css line and it will disappear:</p>
<pre>
input:focus
{
  outline: none;
}
</pre>
<p><img src="http://www.red-team-design.com/wp-content/uploads/2009/11/safari-blue-outer-glow-state3.png" alt="safari-blue-outer-glow-state3" title="safari-blue-outer-glow-state3" width="194" height="32" class="aligncenter size-full wp-image-272" /></p>
<p>There you go! Simple but very efficient.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.red-team-design.com/get-rid-of-safari-blue-input-outer-glow-once-and-for-all/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>10 CSS tips and tricks you should always use</title>
		<link>http://www.red-team-design.com/css-tips-and-tricks-you-should-always-use</link>
		<comments>http://www.red-team-design.com/css-tips-and-tricks-you-should-always-use#comments</comments>
		<pubDate>Sat, 07 Nov 2009 17:53:26 +0000</pubDate>
		<dc:creator>Red</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[Tips and tricks]]></category>

		<guid isPermaLink="false">http://www.red-team-design.com/?p=206</guid>
		<description><![CDATA[When starting coding a Photoshop layout or whenever you work for something,  you should always be aware of some CSS tips that will make your life easier.


1. Place CSS in a separate file
When you&#8217;re working with CSS code you should always use an external file to load CSS from. It&#8217;s very important to have your project [...]]]></description>
			<content:encoded><![CDATA[<p>When starting coding a Photoshop layout or whenever you work for something,  you should always be aware of some CSS tips that will make your life easier.</p>
<p><img class="aligncenter size-full wp-image-207" title="css-tips-tricks" src="http://www.red-team-design.com/wp-content/uploads/2009/11/css-tips-tricks.png" alt="css-tips-tricks" width="418" height="147" /></p>
<p><span id="more-206"></span></p>
<h3>1. Place CSS in a separate file</h3>
<p>When you&#8217;re working with CSS code you should always use an <a href="http://www.tizag.com/cssT/external.php">external file</a> to load CSS from. It&#8217;s very important to have your project files well organized and this helps you doing that.<br />
<img class="aligncenter size-full wp-image-231" title="css-external-file" src="http://www.red-team-design.com/wp-content/uploads/2009/11/css-external-file.png" alt="css-external-file" width="323" height="164" /></p>
<h3>2. Reset CSS</h3>
<p>You need to reset CSS because as you&#8217;ve seen, browsers assign different styles to some elements and the best approach is to clear(reset) all styles from the beginning. In this way you&#8217;ll be sure you made a good start.</p>
<p><img class="aligncenter size-full wp-image-248" title="reset-css" src="http://www.red-team-design.com/wp-content/uploads/2009/11/reset-css1.png" alt="reset-css" width="342" height="100" /></p>
<p>The best method I know since I work in this area is the <a href="http://meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/">Eric Mayer&#8217;s Css Reset method </a>.</p>
<p>For those of you who think his method is too complex I suggest you to create your own reset method.  You can start by resetting the elements you think you&#8217;ll use most like in this example:</p>
<pre>
body, div, h1,h2, h3, h4, h5, h6, p,ul
{
  margin: 0;
  padding: 0;
}
</pre>
<h3>3. Always style inputs</h3>
<p><img class="aligncenter size-full wp-image-144" title="style-inputs" src="http://www.red-team-design.com/wp-content/uploads/2009/10/style-button-input.png" alt="style-inputs" width="320" height="40" /></p>
<p>There is no reason why you must use the predefined styles for the inputs, so always try to <a href="http://www.red-team-design.com/style-an-input-button">customize the inputs</a>. If you don&#8217;t do that you will experience different looks for different browsers.</p>
<h3>4. Use CSS comments</h3>
<p><img class="aligncenter size-full wp-image-236" title="css-comments" src="http://www.red-team-design.com/wp-content/uploads/2009/11/css-comments.png" alt="css-comments" width="326" height="125" /></p>
<p>This is a good way to organize your code and you should do that especially when you have more than let&#8217;s say 100 css lines.</p>
<pre>
p
{
  margin: 10px 0;
}

/*This is a css comment*/

div
{
  height: 20px;
}</pre>
<h3>5. Center horizontally</h3>
<p><img class="aligncenter size-full wp-image-238" title="center-horizontally" src="http://www.red-team-design.com/wp-content/uploads/2009/11/center-horizontally.png" alt="center-horizontally" width="300" height="150" /></p>
<p>Here you can see how to center horizontally an inline element:</p>
<pre>
  text-align: center;
</pre>
<p>To center horizontally a block element you must set the width for it and also auto for the left and right margins:</p>
<pre>
  width: 200px;
  margin: 0 auto;
</pre>
<h3>6. Use inline and block elements correctly</h3>
<p>This mean it&#8217;s recommended for you as a designer/developer to use the <a href="http://htmlhelp.com/reference/html40/block.html">block</a> elements like &#8220;div&#8221; when you need a block element and not use a &#8220;span&#8221; element for example with &#8220;display: block&#8221; style. This is available also for the <a href="http://htmlhelp.com/reference/html40/inline.html">inline</a> elements like &#8220;b&#8221; or &#8220;i&#8221;, they must be used as inline elements when possible.</p>
<h3>7. CSS text-transform property</h3>
<p>Avoid writing with capitalized letters and use instead the text-transform property to do that:</p>
<pre>
  text-transform: uppercase;
</pre>
<h3>8. Background sprites</h3>
<p><a href="http://images.apple.com/global/nav/images/globalnavbg.png"><img class="aligncenter size-full wp-image-241" title="globalnavbg" src="http://www.red-team-design.com/wp-content/uploads/2009/11/globalnavbg.png" alt="globalnavbg" width="600" height="152" /></a></p>
<p>Using sprites avoids causing flickering when using hover effects, try using all the time this technique because it&#8217;s awesome.<br />
Two excellent articles about CSS background sprites I&#8217;ll recommend are <a href="http://www.alistapart.com/articles/sprites/">alistapart.com</a> article and the <a href="http://www.smashingmagazine.com/2009/04/27/the-mystery-of-css-sprites-techniques-tools-and-tutorials/">smashingmagazine.com</a> one.</p>
<h3>9. Font properties in one declaration</h3>
<p>Instead having these three font properties for example:</p>
<pre>
  font-family: Arial;
  font-size: 12px;
  font-weight: bold;
</pre>
<p>use this css rule:</p>
<pre>
  font: bold 12px Arial;
</pre>
<h3>10. Validate, validate and validate again!</h3>
<p>You must always validate your css code to be sure that your code is <a href="http://jigsaw.w3.org/css-validator/">W3c</a> valid. A valid code means a good developer.<br />
<a href="http://jigsaw.w3.org/css-validator/"></a></p>
<p><a href="http://jigsaw.w3.org/css-validator/"><img class="aligncenter size-full wp-image-243" title="w3c-css" src="http://www.red-team-design.com/wp-content/uploads/2009/11/w3c-css.png" alt="w3c-css" width="606" height="80" /></a></p>
<p>What other CSS  tips you are using  that are mandatory in your design/development?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.red-team-design.com/css-tips-and-tricks-you-should-always-use/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to create 3D typography effect using Extrude&amp;Bevel</title>
		<link>http://www.red-team-design.com/3d-typography-effect</link>
		<comments>http://www.red-team-design.com/3d-typography-effect#comments</comments>
		<pubDate>Sun, 01 Nov 2009 23:01:52 +0000</pubDate>
		<dc:creator>Red</dc:creator>
				<category><![CDATA[Illustrator]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Adobe Illustrator]]></category>
		<category><![CDATA[Adobe Photoshop]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Vector Shape]]></category>

		<guid isPermaLink="false">http://www.red-team-design.com/?p=149</guid>
		<description><![CDATA[In this tutorial you will learn how to  achieve the following fancy 3D typography effect using Adobe Illustrator and Adobe Photoshop in just 7 easy steps.


1.Open Adobe Illustrator and create a new .ai file:

2.Select the Type Tool(T) and add the &#8220;red&#8221; text using these settings and the #B3B3B3 color:

If you don&#8217;t see the Type [...]]]></description>
			<content:encoded><![CDATA[<p>In this tutorial you will learn how to  achieve the following fancy 3D typography effect using Adobe Illustrator and Adobe Photoshop in just 7 easy steps.</p>
<p><img class="aligncenter size-full wp-image-190" title="3d-typography-effect" src="http://www.red-team-design.com/wp-content/uploads/2009/11/3d-typography-effect.png" alt="3d-typography-effect" width="610" height="249" /></p>
<p><span id="more-149"></span></p>
<h3>1.Open Adobe Illustrator and create a new .ai file:</h3>
<p><img class="aligncenter size-full wp-image-150" title="new" src="http://www.red-team-design.com/wp-content/uploads/2009/11/new.png" alt="new" width="694" height="397" /></p>
<h3>2.Select the Type Tool(T) and add the &#8220;red&#8221; text using these settings and the #B3B3B3 color:</h3>
<p><img class="aligncenter size-full wp-image-151" title="text-settings" src="http://www.red-team-design.com/wp-content/uploads/2009/11/text-settings.png" alt="text-settings" width="216" height="139" /></p>
<p>If you don&#8217;t see the Type window you can bring it to front using the top menu: Window &gt; Type &gt; Character.</p>
<p>This is the result you must achieve. Please note the reduced spacing between the letters.</p>
<p><img class="aligncenter size-full wp-image-154" title="red" src="http://www.red-team-design.com/wp-content/uploads/2009/11/red.png" alt="red" width="303" height="158" /></p>
<p>To continue customizing this text, right-click on it and select &#8220;Create Outlines&#8221; to transform the text into editable shapes.</p>
<p><img class="aligncenter size-full wp-image-156" title="red-outline" src="http://www.red-team-design.com/wp-content/uploads/2009/11/red-outline.png" alt="red-outline" width="436" height="333" /></p>
<h3>3.Customize the text</h3>
<p>First, create a new shape using the Rectangle Tool (M) like in the following example:</p>
<p><img class="aligncenter size-full wp-image-159" title="red-shape" src="http://www.red-team-design.com/wp-content/uploads/2009/11/red-shape.png" alt="red-shape" width="636" height="328" /></p>
<p>Now with the Pathfinder window activated (Shift+Ctrl+F9 or Window &gt; Pathfinder), select the new square shape and the &#8220;e&#8221; shape from the &#8220;red&#8221; text and click on &#8220;Minus Front&#8221; as showed:</p>
<p><img class="aligncenter size-full wp-image-160" title="minus-shape" src="http://www.red-team-design.com/wp-content/uploads/2009/11/minus-shape.png" alt="minus-shape" width="637" height="363" /></p>
<p>The result after we use the Pathfinder will look like this:</p>
<p><img class="aligncenter size-full wp-image-162" title="red-custom" src="http://www.red-team-design.com/wp-content/uploads/2009/11/red-custom.png" alt="red-custom" width="319" height="164" /></p>
<h3>4.Add the &#8220;design&#8221; text</h3>
<p>Note that the type settings are the same as i used for the &#8220;red&#8221; text, just that in this case the letters are capitalized.</p>
<p><img class="aligncenter size-full wp-image-163" title="red-design" src="http://www.red-team-design.com/wp-content/uploads/2009/11/red-design.png" alt="red-design" width="805" height="374" /></p>
<h3>5.Use the Pathfinder again</h3>
<p>Use it as shown earlier to &#8220;cut&#8221; the &#8220;red&#8221; text and make it look like this:</p>
<p><img class="aligncenter size-full wp-image-166" title="red-design-2" src="http://www.red-team-design.com/wp-content/uploads/2009/11/red-design-2.png" alt="red-design-2" width="783" height="320" /></p>
<h3>6.3D Extrude&amp;Bevel</h3>
<p>With the &#8220;DESIGN&#8221; text selected from our layer pallete go to Effects &gt; 3D &gt; Extrude&amp;Bevel and apply these settings:<br />
<img class="aligncenter size-full wp-image-176" title="3d" src="http://www.red-team-design.com/wp-content/uploads/2009/11/3d.png" alt="3d" width="474" height="486" /></p>
<p><img class="aligncenter size-full wp-image-170" title="3dresult" src="http://www.red-team-design.com/wp-content/uploads/2009/11/3dresult.png" alt="3dresult" width="782" height="328" /></p>
<h3>7.Stylize with Adobe Photoshop</h3>
<p>Export the content as .png and open it with Adobe Photoshop. You need now to create custom shapes to add lights and shadows to the design. To do that just select the Pen tool (P) from the left menu and start creating shapes as shown.Select the #ffffff(white) color as background and reduce its opacity to, let&#8217;s say, 20%.</p>
<p><img class="aligncenter size-full wp-image-180" title="lights" src="http://www.red-team-design.com/wp-content/uploads/2009/11/lights.png" alt="lights" width="685" height="535" /></p>
<p>This should be the result after adding lights:</p>
<p><img class="aligncenter size-full wp-image-182" title="typographic-effect-lights" src="http://www.red-team-design.com/wp-content/uploads/2009/11/typographic-effect-lights.png" alt="typographic-effect-lights" width="800" height="333" /></p>
<p>Plus some shadows:</p>
<p><img class="aligncenter size-full wp-image-184" title="typographic-effect-shaddow" src="http://www.red-team-design.com/wp-content/uploads/2009/11/typographic-effect-shaddow.png" alt="typographic-effect-shaddow" width="800" height="369" /></p>
<p>I hope you enjoyed this tutorial. Below you can find the final result.</p>
<p class="center buttons-para"><a href="http://www.red-team-design.com/wp-content/uploads/2009/11/typographic-effect.rar" class="download">Download source files</a></p>
<p><img class="aligncenter size-full wp-image-186" title="typographic-effect-final" src="http://www.red-team-design.com/wp-content/uploads/2009/11/typographic-effect-final.png" alt="typographic-effect-final" width="800" height="326" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.red-team-design.com/3d-typography-effect/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
