<?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>Tikier Hosting &#187; color</title>
	<atom:link href="http://blog.tikier.com/tag/color/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.tikier.com</link>
	<description>Offshore, Adult, Warez Linking Hosting Allowed</description>
	<lastBuildDate>Mon, 31 May 2010 22:16:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
		<item>
		<title>CSS borders</title>
		<link>http://blog.tikier.com/tutorials/css/css-borders</link>
		<comments>http://blog.tikier.com/tutorials/css/css-borders#comments</comments>
		<pubDate>Tue, 16 Mar 2010 17:20:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[border]]></category>
		<category><![CDATA[border color]]></category>
		<category><![CDATA[border property]]></category>
		<category><![CDATA[border style]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[color border]]></category>
		<category><![CDATA[color rgb]]></category>
		<category><![CDATA[css border]]></category>
		<category><![CDATA[double border]]></category>
		<category><![CDATA[double groove]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[Groove]]></category>
		<category><![CDATA[hex code]]></category>
		<category><![CDATA[Inset]]></category>
		<category><![CDATA[inset border]]></category>
		<category><![CDATA[Outset]]></category>
		<category><![CDATA[property]]></category>
		<category><![CDATA[ridge]]></category>
		<category><![CDATA[style]]></category>

		<guid isPermaLink="false">http://blog.tikier.com/?p=397</guid>
		<description><![CDATA[The CSS border property gives you the option to specify the style and color of the border of an element. With this property, we now can create borders with nice effects, which can also be applied to any element. There are so many options how to use the property border: CSS Border Properties border border-bottom [...]


Related posts:<ol><li><a href='http://blog.tikier.com/tutorials/css/css-shortcuts' rel='bookmark' title='Permanent Link: CSS Shortcuts'>CSS Shortcuts</a></li>
<li><a href='http://blog.tikier.com/tutorials/css/horizontal-css-menus-that-grow-on-you' rel='bookmark' title='Permanent Link: Horizontal CSS Menus That Grow on You'>Horizontal CSS Menus That Grow on You</a></li>
<li><a href='http://blog.tikier.com/tutorials/css/build-a-css-menu-with-rollovers' rel='bookmark' title='Permanent Link: Build a CSS Menu with Rollovers'>Build a CSS Menu with Rollovers</a></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_brick-red" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fblog.tikier.com%252Ftutorials%252Fcss%252Fcss-borders%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22CSS%20borders%22%20%7D);"></div>
<div id="tutorial">
<p>The CSS border property gives you the option to specify the style and  color of the border of an element. With this property, we now can  create borders with nice effects, which can also be applied to any  element.</p>
<p><span id="more-397"></span></p>
<p>There are so many options how to use the property border:</p>
<h2>CSS Border Properties</h2>
<ul>
<li>border</li>
<li>border-bottom</li>
<li>border-bottom-color</li>
<li>border-bottom-style</li>
<li>border-bottom-width</li>
<li>border-color</li>
<li>border-left</li>
<li>border-left-color</li>
<li>border-left-style</li>
<li>border-left-width</li>
<li>border-right</li>
<li>border-right-color</li>
<li>border-right-style</li>
<li>border-right-width</li>
<li>border-style</li>
<li>border-top</li>
<li>border-top-color</li>
<li>border-top-style</li>
<li>border-top-width</li>
<li>border-width</li>
</ul>
<h2>CSS Border width</h2>
<p>This property has the values thin, medium and thick. You can also use  a numeric value in pixels.</p>
<h2>CSS Border Color</h2>
<p>This property sets the color of four borders. The color values can be  any of the three: hex code, rgb or the basic color name.</p>
<p>CSS Code Example:</p>
<div><span style="color: #ff6600;">table { border-color: rgb( 100, 100, 255);<br />
border-style: solid; } </span></p>
<p><span style="color: #ff6600;">td { border-color: #FFBD32;<br />
border-style: solid; }</p>
<p>p { border-color: blue;<br />
border-style: solid; }</span></div>
<h2>CSS Border Style</h2>
<p>This property sets the style of borders. There are many different  types of borders you can choose from. If you do not want to put any  border, you can use the values “none” or “hidden”.</p>
<p>Examples of different types of borders:</p>
<p><span style="color: #ff6600;">Dotted         p.dotted {border-style: dotted; }</span></p>
<p><img src="http://www.tutorialhero.com/images/css_borders/1.gif" alt="" /></p>
<p><span style="color: #ff6600;">Dashed        p.dashed {border-style: dashed; }</span></p>
<p><img src="http://www.tutorialhero.com/images/css_borders/2.gif" alt="" /></p>
<p><span style="color: #ff6600;">Solid            p.solid {border-style: solid; }</span></p>
<p><img src="http://www.tutorialhero.com/images/css_borders/3.gif" alt="" /></p>
<p><span style="color: #ff6600;">Double        p.double {border-style: double; }</span></p>
<p><img src="http://www.tutorialhero.com/images/css_borders/4.gif" alt="" /></p>
<p><span style="color: #ff6600;">Groove        p.groove {border-style: groove; }</span></p>
<p><img src="http://www.tutorialhero.com/images/css_borders/5.gif" alt="" /></p>
<p><span style="color: #ff6600;">Ridge           p.ridge {border-style: ridge; }</span></p>
<p><img src="http://www.tutorialhero.com/images/css_borders/6.gif" alt="" /></p>
<p><span style="color: #ff6600;">Inset            p.inset {border-style: inset; }</span></p>
<p><img src="http://www.tutorialhero.com/images/css_borders/7.gif" alt="" /></p>
<p><span style="color: #ff6600;">Outset          p.outset {border-style: outset; }</span></p>
<p><img src="http://www.tutorialhero.com/images/css_borders/8.gif" alt="" /></p>
<p><span style="color: #ff6600;">Hidden         p.hidden {border-style: hidden; }</span></p>
<p><img src="http://www.tutorialhero.com/images/css_borders/9.gif" alt="" /></p>
<p>The defined properties above (border-width, border-color and  border-style) can actually be formulated to produce different borders  for different elements.</p>
<div><span style="color: #ff6600;">h1 {<br />
border-width: thick;<br />
border-style: dotted;<br />
border-color: gold;<br />
}</p>
<p>h2 {<br />
border-width: 20px;<br />
border-style: outset;<br />
border-color: red;<br />
}</p>
<p>p {<br />
border-width: 1px;<br />
border-style: dashed;<br />
border-color: blue;<br />
}</p>
<p>ul {<br />
border-width: thin;<br />
border-style: solid;<br />
border-color: orange;<br />
}</span></div>
<p>Special properties for sides (top, bottom, right and left) can also  be specified. Here is an example:</p>
<div><span style="color: #ff6600;">h1 {<br />
border-top-width: thick;<br />
border-top-style: solid;<br />
border-top-color: red;</p>
<p>border-bottom-width: thick;<br />
border-bottom-style: solid;<br />
border-bottom-color: blue;</p>
<p>border-right-width: thick;<br />
border-right-style: solid;<br />
border-right-color: green;</p>
<p>border-left-width: thick;<br />
border-left-style: solid;<br />
border-left-color: orange;</p>
<p>}</span></div>
<h2>CSS Border Compilation</h2>
<p>As the title suggests, this property allows you to compile many  properties into one using border.</p>
<div><span style="color: #ff6600;">p {<br />
border-width: 1px;<br />
border-style: solid;<br />
border-color: blue;<br />
}</span></div>
<p>The example above can be compiled into:</p>
<div><span style="color: #ff6600;">p {<br />
border: 1px solid blue;<br />
}</span></div>
<p>There are still more to learn about borders. You just have to try to  learn new ways to explore the many options for designing your borders.</p>
</div>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://blog.tikier.com/tutorials/css/css-borders/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=CSS+borders&amp;link=http://blog.tikier.com/tutorials/css/css-borders&amp;notes=%0D%0A%0D%0AThe%20CSS%20border%20property%20gives%20you%20the%20option%20to%20specify%20the%20style%20and%20%20color%20of%20the%20border%20of%20an%20element.%20With%20this%20property%2C%20we%20now%20can%20%20create%20borders%20with%20nice%20effects%2C%20which%20can%20also%20be%20applied%20to%20any%20%20element.%0D%0A%0D%0A%0D%0A%0D%0AThere%20are%20so%20many%20options%20how%20to%20use%20the%20property%20border%3A%0D%0ACSS%20Border%20Prop&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://www.shareaholic.com/api/share/?title=CSS+borders&amp;link=http://blog.tikier.com/tutorials/css/css-borders&amp;notes=%0D%0A%0D%0AThe%20CSS%20border%20property%20gives%20you%20the%20option%20to%20specify%20the%20style%20and%20%20color%20of%20the%20border%20of%20an%20element.%20With%20this%20property%2C%20we%20now%20can%20%20create%20borders%20with%20nice%20effects%2C%20which%20can%20also%20be%20applied%20to%20any%20%20element.%0D%0A%0D%0A%0D%0A%0D%0AThere%20are%20so%20many%20options%20how%20to%20use%20the%20property%20border%3A%0D%0ACSS%20Border%20Prop&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=3&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=CSS+borders&amp;link=http://blog.tikier.com/tutorials/css/css-borders&amp;notes=%0D%0A%0D%0AThe%20CSS%20border%20property%20gives%20you%20the%20option%20to%20specify%20the%20style%20and%20%20color%20of%20the%20border%20of%20an%20element.%20With%20this%20property%2C%20we%20now%20can%20%20create%20borders%20with%20nice%20effects%2C%20which%20can%20also%20be%20applied%20to%20any%20%20element.%0D%0A%0D%0A%0D%0A%0D%0AThere%20are%20so%20many%20options%20how%20to%20use%20the%20property%20border%3A%0D%0ACSS%20Border%20Prop&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-gmail">
			<a href="http://www.shareaholic.com/api/share/?title=CSS+borders&amp;link=http://blog.tikier.com/tutorials/css/css-borders&amp;notes=%0D%0A%0D%0AThe%20CSS%20border%20property%20gives%20you%20the%20option%20to%20specify%20the%20style%20and%20%20color%20of%20the%20border%20of%20an%20element.%20With%20this%20property%2C%20we%20now%20can%20%20create%20borders%20with%20nice%20effects%2C%20which%20can%20also%20be%20applied%20to%20any%20%20element.%0D%0A%0D%0A%0D%0A%0D%0AThere%20are%20so%20many%20options%20how%20to%20use%20the%20property%20border%3A%0D%0ACSS%20Border%20Prop&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=52&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.shareaholic.com/api/share/?title=CSS+borders&amp;link=http://blog.tikier.com/tutorials/css/css-borders&amp;notes=%0D%0A%0D%0AThe%20CSS%20border%20property%20gives%20you%20the%20option%20to%20specify%20the%20style%20and%20%20color%20of%20the%20border%20of%20an%20element.%20With%20this%20property%2C%20we%20now%20can%20%20create%20borders%20with%20nice%20effects%2C%20which%20can%20also%20be%20applied%20to%20any%20%20element.%0D%0A%0D%0A%0D%0A%0D%0AThere%20are%20so%20many%20options%20how%20to%20use%20the%20property%20border%3A%0D%0ACSS%20Border%20Prop&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=74&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=CSS+borders&amp;link=http://blog.tikier.com/tutorials/css/css-borders&amp;notes=%0D%0A%0D%0AThe%20CSS%20border%20property%20gives%20you%20the%20option%20to%20specify%20the%20style%20and%20%20color%20of%20the%20border%20of%20an%20element.%20With%20this%20property%2C%20we%20now%20can%20%20create%20borders%20with%20nice%20effects%2C%20which%20can%20also%20be%20applied%20to%20any%20%20element.%0D%0A%0D%0A%0D%0A%0D%0AThere%20are%20so%20many%20options%20how%20to%20use%20the%20property%20border%3A%0D%0ACSS%20Border%20Prop&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.shareaholic.com/api/share/?title=CSS+borders&amp;link=http://blog.tikier.com/tutorials/css/css-borders&amp;notes=%0D%0A%0D%0AThe%20CSS%20border%20property%20gives%20you%20the%20option%20to%20specify%20the%20style%20and%20%20color%20of%20the%20border%20of%20an%20element.%20With%20this%20property%2C%20we%20now%20can%20%20create%20borders%20with%20nice%20effects%2C%20which%20can%20also%20be%20applied%20to%20any%20%20element.%0D%0A%0D%0A%0D%0A%0D%0AThere%20are%20so%20many%20options%20how%20to%20use%20the%20property%20border%3A%0D%0ACSS%20Border%20Prop&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=207&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-hotmail">
			<a href="http://www.shareaholic.com/api/share/?title=CSS+borders&amp;link=http://blog.tikier.com/tutorials/css/css-borders&amp;notes=%0D%0A%0D%0AThe%20CSS%20border%20property%20gives%20you%20the%20option%20to%20specify%20the%20style%20and%20%20color%20of%20the%20border%20of%20an%20element.%20With%20this%20property%2C%20we%20now%20can%20%20create%20borders%20with%20nice%20effects%2C%20which%20can%20also%20be%20applied%20to%20any%20%20element.%0D%0A%0D%0A%0D%0A%0D%0AThere%20are%20so%20many%20options%20how%20to%20use%20the%20property%20border%3A%0D%0ACSS%20Border%20Prop&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=53&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this via Hotmail">Email this via Hotmail</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.shareaholic.com/api/share/?title=CSS+borders&amp;link=http://blog.tikier.com/tutorials/css/css-borders&amp;notes=%0D%0A%0D%0AThe%20CSS%20border%20property%20gives%20you%20the%20option%20to%20specify%20the%20style%20and%20%20color%20of%20the%20border%20of%20an%20element.%20With%20this%20property%2C%20we%20now%20can%20%20create%20borders%20with%20nice%20effects%2C%20which%20can%20also%20be%20applied%20to%20any%20%20element.%0D%0A%0D%0A%0D%0A%0D%0AThere%20are%20so%20many%20options%20how%20to%20use%20the%20property%20border%3A%0D%0ACSS%20Border%20Prop&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=39&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=CSS+borders&amp;link=http://blog.tikier.com/tutorials/css/css-borders&amp;notes=%0D%0A%0D%0AThe%20CSS%20border%20property%20gives%20you%20the%20option%20to%20specify%20the%20style%20and%20%20color%20of%20the%20border%20of%20an%20element.%20With%20this%20property%2C%20we%20now%20can%20%20create%20borders%20with%20nice%20effects%2C%20which%20can%20also%20be%20applied%20to%20any%20%20element.%0D%0A%0D%0A%0D%0A%0D%0AThere%20are%20so%20many%20options%20how%20to%20use%20the%20property%20border%3A%0D%0ACSS%20Border%20Prop&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=CSS+borders&amp;link=http://blog.tikier.com/tutorials/css/css-borders&amp;notes=%0D%0A%0D%0AThe%20CSS%20border%20property%20gives%20you%20the%20option%20to%20specify%20the%20style%20and%20%20color%20of%20the%20border%20of%20an%20element.%20With%20this%20property%2C%20we%20now%20can%20%20create%20borders%20with%20nice%20effects%2C%20which%20can%20also%20be%20applied%20to%20any%20%20element.%0D%0A%0D%0A%0D%0A%0D%0AThere%20are%20so%20many%20options%20how%20to%20use%20the%20property%20border%3A%0D%0ACSS%20Border%20Prop&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://www.shareaholic.com/api/share/?title=CSS+borders&amp;link=http://blog.tikier.com/tutorials/css/css-borders&amp;notes=%0D%0A%0D%0AThe%20CSS%20border%20property%20gives%20you%20the%20option%20to%20specify%20the%20style%20and%20%20color%20of%20the%20border%20of%20an%20element.%20With%20this%20property%2C%20we%20now%20can%20%20create%20borders%20with%20nice%20effects%2C%20which%20can%20also%20be%20applied%20to%20any%20%20element.%0D%0A%0D%0A%0D%0A%0D%0AThere%20are%20so%20many%20options%20how%20to%20use%20the%20property%20border%3A%0D%0ACSS%20Border%20Prop&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=10&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=CSS+borders&amp;link=http://blog.tikier.com/tutorials/css/css-borders&amp;notes=%0D%0A%0D%0AThe%20CSS%20border%20property%20gives%20you%20the%20option%20to%20specify%20the%20style%20and%20%20color%20of%20the%20border%20of%20an%20element.%20With%20this%20property%2C%20we%20now%20can%20%20create%20borders%20with%20nice%20effects%2C%20which%20can%20also%20be%20applied%20to%20any%20%20element.%0D%0A%0D%0A%0D%0A%0D%0AThere%20are%20so%20many%20options%20how%20to%20use%20the%20property%20border%3A%0D%0ACSS%20Border%20Prop&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.shareaholic.com/api/share/?title=CSS+borders&amp;link=http://blog.tikier.com/tutorials/css/css-borders&amp;notes=%0D%0A%0D%0AThe%20CSS%20border%20property%20gives%20you%20the%20option%20to%20specify%20the%20style%20and%20%20color%20of%20the%20border%20of%20an%20element.%20With%20this%20property%2C%20we%20now%20can%20%20create%20borders%20with%20nice%20effects%2C%20which%20can%20also%20be%20applied%20to%20any%20%20element.%0D%0A%0D%0A%0D%0A%0D%0AThere%20are%20so%20many%20options%20how%20to%20use%20the%20property%20border%3A%0D%0ACSS%20Border%20Prop&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=24&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.shareaholic.com/api/share/?title=CSS+borders&amp;link=http://blog.tikier.com/tutorials/css/css-borders&amp;notes=%0D%0A%0D%0AThe%20CSS%20border%20property%20gives%20you%20the%20option%20to%20specify%20the%20style%20and%20%20color%20of%20the%20border%20of%20an%20element.%20With%20this%20property%2C%20we%20now%20can%20%20create%20borders%20with%20nice%20effects%2C%20which%20can%20also%20be%20applied%20to%20any%20%20element.%0D%0A%0D%0A%0D%0A%0D%0AThere%20are%20so%20many%20options%20how%20to%20use%20the%20property%20border%3A%0D%0ACSS%20Border%20Prop&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=43&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
</ul><div style="clear: both;"></div></div>




<p>Related posts:<ol><li><a href='http://blog.tikier.com/tutorials/css/css-shortcuts' rel='bookmark' title='Permanent Link: CSS Shortcuts'>CSS Shortcuts</a></li>
<li><a href='http://blog.tikier.com/tutorials/css/horizontal-css-menus-that-grow-on-you' rel='bookmark' title='Permanent Link: Horizontal CSS Menus That Grow on You'>Horizontal CSS Menus That Grow on You</a></li>
<li><a href='http://blog.tikier.com/tutorials/css/build-a-css-menu-with-rollovers' rel='bookmark' title='Permanent Link: Build a CSS Menu with Rollovers'>Build a CSS Menu with Rollovers</a></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.tikier.com/tutorials/css/css-borders/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Glowing neon playback control buttons</title>
		<link>http://blog.tikier.com/tutorials/flash-tutorials/glowing-neon-playback-control-buttons</link>
		<comments>http://blog.tikier.com/tutorials/flash-tutorials/glowing-neon-playback-control-buttons#comments</comments>
		<pubDate>Tue, 16 Mar 2010 15:51:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[flash]]></category>
		<category><![CDATA[alpha property]]></category>
		<category><![CDATA[button]]></category>
		<category><![CDATA[circle]]></category>
		<category><![CDATA[click]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[color mixer]]></category>
		<category><![CDATA[corner radius]]></category>
		<category><![CDATA[document background]]></category>
		<category><![CDATA[hex code]]></category>
		<category><![CDATA[icon]]></category>
		<category><![CDATA[layer]]></category>
		<category><![CDATA[neon glow]]></category>
		<category><![CDATA[paint bucket tool]]></category>
		<category><![CDATA[pencil icon]]></category>
		<category><![CDATA[playback control]]></category>
		<category><![CDATA[rectangle tool]]></category>
		<category><![CDATA[ring]]></category>
		<category><![CDATA[Select]]></category>
		<category><![CDATA[tool]]></category>
		<category><![CDATA[triangle]]></category>

		<guid isPermaLink="false">http://blog.tikier.com/?p=356</guid>
		<description><![CDATA[In this easy lesson made for Flash 8 professional I will show you how to create a set of cool, neon glow playback control buttons easily. No other applications will be used to create these buttons, because Flash has so much power on its own! You will see: How to use the basic shapes to [...]


Related posts:<ol><li><a href='http://blog.tikier.com/tutorials/flash-tutorials/glowing-neon-playback-control-buttons-2' rel='bookmark' title='Permanent Link: Glowing neon playback control buttons'>Glowing neon playback control buttons</a></li>
<li><a href='http://blog.tikier.com/tutorials/flash-tutorials/design-a-mirror-website-flash-navigation-menu' rel='bookmark' title='Permanent Link: Design a mirror website flash navigation menu'>Design a mirror website flash navigation menu</a></li>
<li><a href='http://blog.tikier.com/tutorials/flash-tutorials/flash-tutorial-top-bluish-preloader' rel='bookmark' title='Permanent Link: Flash Tutorial &#8211; Top Bluish Preloader'>Flash Tutorial &#8211; Top Bluish Preloader</a></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_brick-red" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fblog.tikier.com%252Ftutorials%252Fflash-tutorials%252Fglowing-neon-playback-control-buttons%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22Glowing%20neon%20playback%20control%20buttons%22%20%7D);"></div>
<p>In this easy lesson made for <strong>Flash 8 professional</strong> I  will show you how to create a set of cool, neon glow playback control  buttons easily. No other applications will be used to create these  buttons, because Flash has so much power on its own! You will see:</p>
<ul>
<li>How to use the basic shapes to create the ones you need,</li>
<li>How to use the great blending filters in Flash 8 pro,</li>
<li>How to combine multiple filters and objects stacked upon one  another, and some more.</li>
</ul>
<p><span id="more-356"></span></p>
<p>You can see the example of the sleek buttons below.</p>
<p><object id="fm_neon-glow-playback-controls_1810666019" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="460" height="170" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="name" value="fm_neon-glow-playback-controls_1810666019" /><param name="src" value="http://www.flashexplained.com/img/menus/media/neon-glow-playback-controls.swf" /><embed id="fm_neon-glow-playback-controls_1810666019" type="application/x-shockwave-flash" width="460" height="170" src="http://www.flashexplained.com/img/menus/media/neon-glow-playback-controls.swf" name="fm_neon-glow-playback-controls_1810666019"></embed></object></p>
<h3>Preliminary steps — setting the background</h3>
<p>1 Open a new Flash document. Choose <strong>Modify  &gt; Document</strong> (shortcut: <strong>Ctrl+J</strong>). Select <strong>black</strong> as document background  color. Click <strong>OK</strong>.</p>
<p>2 Select the Rectangle tool <strong>(R)</strong>.  <strong>Turn off the stroke color</strong> by clicking on the little  pencil icon and then the small red-striped square at the bottom of the  Tools panel: <img src="http://www.flashexplained.com/img/menus/gn/gn_001.gif" alt="The  outline (stroke) color has been blocked." width="38" height="18" />.</p>
<p>3 Make sure that both the <strong>Object  drawing</strong> and <strong>Snap to objects</strong> options are turned  off: <img src="http://www.flashexplained.com/img/menus/gn/gn_002.gif" alt="The icons that manage the object drawing and snapping to objects." width="37" height="18" />.</p>
<p>4 Click the <strong>Set Corner Radius</strong> icon (<img src="http://www.flashexplained.com/img/menus/gn/gn_003.gif" alt="Setting the corner radius for the rectangle tool." width="18" height="18" />) and enter <strong>6</strong> in the window that will show  up, click <strong>OK</strong>. This is done in order to have rectangles  with round corners.</p>
<p>5 Draw a flat color (any color will do) <strong>410  by 120 pixel</strong> rectangle.</p>
<p><img src="http://www.flashexplained.com/img/menus/gn/gn_004.gif" alt="An elongated rectangle with rounded corners." width="431" height="138" /></p>
<p>6 Select the Paint Bucket tool <strong>(K)</strong>.  Go to the <strong>Color Mixer</strong> panel (opened by default — you  can always find it in the top right part of the Flash working space). Do  the following (see numbers in the screenshot below):</p>
<ol>
<li>Click on the <strong>paint bucket</strong> icon to select the fill  color.</li>
<li>In the <strong>Type</strong> menu, select <strong>Linear</strong>.</li>
<li>Click <strong>once</strong> on the small colored square found on the  bottom right.</li>
<li>In the <strong>color code</strong> field, enter the hex code <strong>#2E70AA</strong> (that’s a zero, not the letter O).</li>
<li>Set the <strong>Alpha</strong> property for this color to <strong>34%</strong>.</li>
<li>Set the same color for the <strong>left square</strong>, but set its  <strong>Alpha</strong> to <strong>100%</strong>.</li>
</ol>
<p><img src="http://www.flashexplained.com/img/menus/gn/gn_005.gif" alt="Creating a linear gradient." width="213" height="112" /></p>
<p>7 Press and <strong>hold Shift</strong>, <strong>click</strong> near the rectangle’s top and drag your mouse down until the rectangle’s  bottom. Release your mouse button, and there is your nice gradient!</p>
<p><img src="http://www.flashexplained.com/img/menus/gn/gn_006.gif" alt="Filling the rectangle with the linear gradient." width="431" height="138" /></p>
<p><img src="http://www.flashexplained.com/img/menus/gn/gn_007.gif" alt="The rectangle is filled with the nice blue gradient." width="431" height="138" /></p>
<h3>Creating the glowing outer ring</h3>
<p>8 Lock the current layer and call it <em>background</em>.  Create a new layer and call it <em> buttons</em>.</p>
<p><img src="http://www.flashexplained.com/img/menus/gn/gn_008.gif" alt="A new layer on the scene in Flash." width="216" height="64" /></p>
<p>9 Select the Oval tool <strong>(O)</strong>.  Go to the Property inspector and make the following selections: <strong>block</strong> the <strong>fill</strong> color, select any <strong> flat</strong> color for the <strong>stroke</strong> (outline) color, set the line type   to <strong>Solid</strong> and choose <strong>3</strong> for <strong>line  thickness</strong>.</p>
<p><img src="http://www.flashexplained.com/img/menus/gn/gn_009.gif" alt="Selecting the options of the Oval tool." width="296" height="57" /></p>
<p>10 Somewhere over the rectangle, draw a  ring (it is a circle, but because of the line thickness and lack of  fill, it looks like a ring). Make it <strong>70 by 70 pixels</strong>.</p>
<p><img src="http://www.flashexplained.com/img/menus/gn/gn_010.gif" alt="The ring-circle drawn on stage." width="88" height="88" /></p>
<p>11 <strong>Select the ring</strong> by  clicking on it with the Selection tool <strong>(V)</strong>, if it isn’t  already selected. Go to the <strong>Color Mixel</strong> panel and  click on the <strong>pencil icon</strong> to select the <strong>Stroke  color</strong> (<img src="http://www.flashexplained.com/img/menus/gn/gn_011.gif" alt="The  Stroke color icon." width="12" height="12" />). In the <strong>Type</strong> menu, choose <strong>Linear</strong> exactly like you did for the fill  color previously. Add <strong>two more color squares</strong> to the  gradient by simply clicking anywhere between the two existing ones. You  should have <strong>four</strong> of them in total, with the following  color values, positioned like this:</p>
<p><img src="http://www.flashexplained.com/img/menus/gn/gn_012.gif" alt="The linear gradient for the ring." width="200" height="62" /></p>
<p>Note: all the four squares should have their alpha set to 100%  (complete opaqueness). The ring will now look like this:</p>
<p><img src="http://www.flashexplained.com/img/menus/gn/gn_013.gif" alt="The outline ring colored with a linear gradient." width="90" height="90" /></p>
<p>I have hidden the <em>background</em> layer to work more easily and  so that you can more clearly see the various steps.</p>
<p>12 Select the Gradient Transform tool <strong>(F)</strong>.  Click on the ring to select it. <strong>Rotate</strong> the gradient by  <strong>90°</strong>. To successfully do this, make sure that Snapping  to Objects is turned on (<strong>View &gt; Snapping &gt; Snap to Objects</strong>).  Then, press and hold <strong>Shift</strong>, click on the white circle  handle and start moving your mouse clockwise.</p>
<p><img src="http://www.flashexplained.com/img/menus/gn/gn_014.gif" alt="Rotating the outline gradient." width="226" height="108" /></p>
<p>13 While the ring is selected, press <strong>F8</strong> (or select <strong>Modify &gt; Convert to Symbol</strong>)  to make a  symbol out of it. Name it <em>outer ring</em>. Select <strong>Movie clip</strong> as type and be sure to select the <strong>registration</strong> point  in the middle (see screenshot below):</p>
<p><img src="http://www.flashexplained.com/img/menus/gn/gn_015.gif" alt="Converting a drawn shape into a symbol." width="273" height="118" /></p>
<p>Click <strong>OK</strong>. This choice for the registration point  will make it easier to align the elements inside the button later.</p>
<p>14 Click on the <strong>Filters</strong> tab in the Properties panel (see no. <strong>1</strong> in screenshot  below). Click on the plus icon <strong>(2)</strong> and select the <strong>Glow</strong> filter. Make the adjustements as follows:</p>
<ol>
<li><strong>Blur X and Y</strong>: 8</li>
<li><strong>Strength</strong>: 260%</li>
<li><strong>Quality</strong>: High.</li>
<li><strong>Color</strong>: #ADE2FC.</li>
</ol>
<p><img src="http://www.flashexplained.com/img/menus/gn/gn_016.gif" alt="The glow filter and its options in Flash." width="377" height="132" /></p>
<p>Leave the <strong>Knockout</strong> and <strong>Inner glow</strong> options unchecked. You will get a nice glow for your outer ring:</p>
<p><img src="http://www.flashexplained.com/img/menus/gn/gn_017.gif" alt="The glowing outer ring made in Flash." width="102" height="102" /></p>
<h3>Making the main button circle</h3>
<p>15 Select the ring again and press <strong>F8</strong> again, while leaving the same registration point as previously and  Movie clip as type of symbol. Call the new symbol <em>play button</em> and click OK.</p>
<p>16 <strong>Double-click</strong> on the  newly made <em>play button</em> symbol to enter inside it. Call the  first layer <em>outer ring</em> and <strong>lock</strong> it. That’s  where the ring that you have just created resides. Make <strong>a new  layer</strong> above it and call it <em>circle</em>.</p>
<p><img src="http://www.flashexplained.com/img/menus/gn/gn_018.gif" alt="A new layer inside the play button symbol." width="245" height="93" /></p>
<p>17 Select the Oval tool <strong>(O)</strong> again. Go down to the Properties panel. Set <strong> #B0E2FD</strong> for the outline color and <strong>#3A5274</strong> for the fill color.  Select <strong>Solid</strong> as line type and a thickness of <strong>2</strong>.</p>
<p><img src="http://www.flashexplained.com/img/menus/gn/gn_019.gif" alt="The circle's properties defined in the Properties panel." width="298" height="50" /></p>
<p>18 Draw a <strong>54 by 54 pixel</strong> circle on the stage, anywhere.</p>
<p><img src="http://www.flashexplained.com/img/menus/gn/gn_020.gif" alt="The new circle made on the stage in Flash." width="70" height="70" /></p>
<p>19 <strong>Select</strong> the circle (<strong>both</strong> the outline and the fill). Open the <strong>Align panel</strong> by  selecting <strong>Window &gt; Align</strong>. Turn <strong>on</strong> the <strong>To stage</strong> button <strong>(1)</strong>. Click the  align <strong>horizontal</strong> center <strong>(2)</strong> and align <strong>vertical</strong> center <strong>(3)</strong> buttons.</p>
<p><img src="http://www.flashexplained.com/img/menus/gn/gn_021.gif" alt="Aligning the circle to the movie clip's middle center point." width="206" height="130" /></p>
<p>The circle will now be perfectly aligned with the <em>play button</em> movie clip’s registration point and also with the ring below it.</p>
<p><img src="http://www.flashexplained.com/img/menus/gn/gn_022.gif" alt="The circle centered exactly on the center of the play button." width="90" height="90" /></p>
<p>20 Choose the Selection tool <strong>(V)</strong> and click on the <strong>fill</strong> of the circle <strong>once</strong> to select it. Press <strong>Ctrl+C</strong> to copy it.</p>
<p><img src="http://www.flashexplained.com/img/menus/gn/gn_023.gif" alt="Selecting a vector fill shape." width="90" height="90" /></p>
<p>21 <strong>Lock</strong> the current layer  and call it <em>circle</em>. Make a new layer above it and call it <em> circle overlay</em>.</p>
<p><img src="http://www.flashexplained.com/img/menus/gn/gn_024.gif" alt="The third layer inside the movie clip." width="214" height="83" /></p>
<p>22 Select <strong>Edit &gt; Paste in Place</strong> to paste the circle you copied two steps earlier  exactly on the same  position, but inside this new layer.</p>
<p>23 The copy of the circle fill will be  selected by default after pasting. Go to the <strong>Color Mixer</strong> panel. Click on the <strong>paint bucket</strong> icon to select the  fill color. In the <strong>Type</strong> menu, select <strong>Linear</strong>.  Make the following gradient:</p>
<ul>
<li>You should have  <strong>three</strong> color squares, one in the  middle and one on each end of the gradient.</li>
<li>Each square’s color should be <strong>white</strong>.</li>
<li>The <strong>alpha</strong> factor of squares on each end should be <strong>41%</strong>.  The middle one’s should be set to <strong>3%</strong>.</li>
</ul>
<p><img src="http://www.flashexplained.com/img/menus/gn/gn_025.gif" alt="A new gradient for the circle overlay." width="201" height="62" /></p>
<p>24 Use the Gradient Transform tool <strong>(F)</strong> to <strong>rotate the gradient by 90°</strong>, just like before. The  final result should look like this:</p>
<p><img src="http://www.flashexplained.com/img/menus/gn/gn_026.gif" alt="The circle's overlay gives a nice shiny effect." width="90" height="90" /></p>
<h3>Creating the play icon</h3>
<p>25 Lock the <em>circle overlay</em> layer,  make a new layer above it and call it <em>icon</em>.</p>
<p><img src="http://www.flashexplained.com/img/menus/gn/gn_027.gif" alt="The icon layer will be host to the play icon." width="219" height="103" /></p>
<p>26 Select the Rectangle tool <strong>(R)</strong>.  <strong>Block</strong> the stroke color. Set the fill color to <strong>#3A5274</strong>.  Draw a <strong>33 by 33 pixel</strong>square anywhere on the stage.</p>
<p>27 Turn on the <strong>Snap to Objects</strong> option and use the Selection tool <strong>(V)</strong> to create a  triangle out of the rectangle. Do it like this (follow the image  sequence below):</p>
<ol>
<li>Bring the cursor close to the square’s <strong>upper right</strong> corner.</li>
<li><strong>Click</strong> and start <strong>dragging down</strong>,  until you reach the middle of square’s height. <strong>Release</strong> your mouse button.</li>
<li>Repeat the same thing for the <strong>lower right</strong> corner of  the square, this time dragging the corner <strong>towards the point</strong> you just made in the previous move. Once near, the corner will snap  into place. Release the mouse and there is your triangle.</li>
</ol>
<p><img src="http://www.flashexplained.com/img/menus/gn/gn_028.gif" alt="Making a triangle out of a square in Flash." width="251" height="46" /></p>
<p>28 <strong>Click</strong> on the triangle  to <strong>select</strong> it. Go to the Property inspector and type <strong>27</strong> in the <strong>W</strong> (width) field. There! You have a good-looking  play button now. The screenshots below show the difference in size  before and after the width of the triangle was modified.</p>
<p><img src="http://www.flashexplained.com/img/menus/gn/gn_029.gif" alt="Reducing the width of a vector shape." width="254" height="51" /></p>
<p>29 Center the triangle inside the button.</p>
<p><img src="http://www.flashexplained.com/img/menus/gn/gn_030.gif" alt="The play icon is centered inside the button now." width="90" height="90" /></p>
<p>30 Select the Ink bottle tool <strong>(S)</strong>.  In the Properties panel, choose <strong>Solid</strong> as type and set  the thickness to <strong>4</strong>. Click anywhere on the triangle to  give it an outline.</p>
<p><img src="http://www.flashexplained.com/img/menus/gn/gn_031.gif" alt="A border was added to the triangle." width="200" height="90" /></p>
<p>31 Choose the Selection tool <strong>(V)</strong>.  <strong>Double-click</strong> on the triangle’s border to select it.</p>
<p><img src="http://www.flashexplained.com/img/menus/gn/gn_032.gif" alt="Selecting the outline of the triangle." width="90" height="90" /></p>
<p>32 Press <strong>Ctrl+X</strong> to cut the  outline.</p>
<p>33 <strong>Lock</strong> the <em>icon</em> layer. Make a new layer <strong>below</strong> it and call it <em>icon  outline</em>.</p>
<p><img src="http://www.flashexplained.com/img/menus/gn/gn_033.gif" alt="The icon outline layer is inserted." width="219" height="123" /></p>
<p>34 Select <strong>Edit &gt; Paste in Place</strong> to place the icon border here, right below the icon itself.</p>
<p>35 <strong>Lock</strong> the <em>icon  outline</em> layer and <strong>unlock</strong> the <em>icon</em> layer. <strong>Select</strong> the triangle inside it.</p>
<p>36 Hit <strong>F8</strong> to convert it  into a symbol. Call it <em>play icon</em> and click <strong>OK</strong>.</p>
<p>37 The new <em>play icon</em> movie clip  will be selected by default. Go to the Properties panel and click on the  <strong>Filters</strong> tab to set the blending options for this  symbol. Choose the <strong>Glow</strong> filter and tweak it like this:</p>
<ol>
<li><strong>Blur X and Y</strong>: 6</li>
<li><strong>Strength</strong>: 240%</li>
<li><strong>Quality</strong>: Medium</li>
<li><strong>Color</strong>: #ACE0FD</li>
<li><strong>Inner glow</strong> must be turned <strong>on</strong>.</li>
</ol>
<p><img src="http://www.flashexplained.com/img/menus/gn/gn_034.gif" alt="The glow for the play icon and its parameters." width="368" height="109" /></p>
<p>And — ta-daa — here’s the final result, with the background:</p>
<p><img src="http://www.flashexplained.com/img/menus/gn/gn_035.jpg" alt="The glowing neon blue play button is complete now." width="120" height="120" /></p>
<p>Now ain’t it cool? This blue neon glow looks soooo good <img src="http://flashexplained.com/wp-includes/images/smilies/icon_smile.gif" alt=":-)" /> ! Let me show you now how to easily  duplicate theis button and create a stop button out of it.</p>
<h3>Creating the glowing stop button from the play button</h3>
<p>38 Go back to the main scene by clicking on  the <strong>Scene 1</strong> link.</p>
<p><img src="http://www.flashexplained.com/img/menus/gn/gn_036.gif" alt="Back to the main scene in Flash." width="217" height="40" /></p>
<p>39 Open the Library by selecting <strong>Window  &gt; Library</strong>.</p>
<p>40 <strong>Right-click</strong> on the <em>play  button</em> in the Library and select <strong>Duplicate</strong> from  the pop-up menu. The Duplicate Symbol window ill appear. Just change the  symbol’s name to <em>stop button</em> and click <strong>OK</strong>.</p>
<p>Repeat the same thing with the <em>play icon</em> symbol: <strong>duplicate</strong> it and call the new symbol <em>stop icon</em>. You will have fice  symbols (all of them movie clips) in the Library now: the <em>outer ring</em> which is present in both the <em>play button</em> and <em>stop button</em> symbols, as well as <em>play icon</em> and <em>stop icon</em> for each  respective symbol. Let me show you now how to make the modifications.</p>
<p><img src="http://www.flashexplained.com/img/menus/gn/gn_037.gif" alt="The Library in Flash with its symbols." width="192" height="119" /></p>
<p>41 <strong>Double-click</strong> on the <em>stop  button</em> symbol inside the Library to enter inside it. <strong>Unlock</strong> its <em>icon</em> layer.</p>
<p>42 Click <strong>once</strong> on the <em>play  icon</em> that is inside it, to select it.</p>
<p>43 Go to the Properties panel  and click  the <strong>Swap</strong> button.</p>
<p><img src="http://www.flashexplained.com/img/menus/gn/gn_038.gif" alt="The button for swapping symbols in Flash." width="128" height="45" /></p>
<p>44 The Swap Symbol window will show up. All  the symbols that you made in your Flash document so far are displayed  here — exactly as they appear in the Library. <strong>Select</strong> the <em>stop icon</em> symbol and click <strong>OK</strong>.</p>
<p><img src="http://www.flashexplained.com/img/menus/gn/gn_039.gif" alt="Swapping symbols in Flash!" width="199" height="141" /></p>
<p>Although this movie clip symbol looks exactly the same as the <em>play  icon</em>, you know that this is the <em>stop icon</em> in fact. Flash  informs you of this by displaying the name of the currently selected  symbol in the Properties panel:</p>
<p><img src="http://www.flashexplained.com/img/menus/gn/gn_040.gif" alt="The name of the symbol as seen in Flash." width="129" height="17" /></p>
<p>45 Now, <strong>double-click</strong> the <em>stop  icon</em> movie clip on the stage to enter inside it. <strong>Erase</strong> the triangle and draw a <strong>28 by 28 pixel</strong> borderless  square in its place. I have made the square smaller, because if it had  the dimensions of the triangle, it would come too close to the circle’s  border and that wouldn’t look so good. Oh, yes: the color of the square  should be the same as triangle’s: <strong>#3A5274</strong>.</p>
<p><img src="http://www.flashexplained.com/img/menus/gn/gn_041.jpg" alt="The square inside the stop neon button." width="90" height="90" /></p>
<p>46 Click on the <em>stop button</em> link  to go back to the movie clip’s timeline.</p>
<p><img src="http://www.flashexplained.com/img/menus/gn/gn_042.gif" alt="Back to the button's timeline." width="231" height="41" /></p>
<p>47 Align the icon in relation to the movie  clip’s center.</p>
<p><img src="http://www.flashexplained.com/img/menus/gn/gn_043.jpg" alt="The new stop icon aligned inside the movie clip symbol." width="90" height="90" /></p>
<p>48 <strong>Lock</strong> the <em>icon</em> layer. <strong>Unlock</strong> the <em>icon outline</em> layer. <strong>Erase</strong> the outline triangle that is inside it.</p>
<p>49 Draw a rectangle here, <strong>without a  fill</strong>, and make it the same size as the icon above it: <strong>28  by 28 pixels</strong>. the line should have the same thickness as  before (<strong>4</strong>) and the same color (<strong>#3A5274</strong>).  <strong>Align</strong> it like you did with the icon. It should look  like this:</p>
<p><img src="http://www.flashexplained.com/img/menus/gn/gn_044.jpg" alt="The modification is finished: here is the new stop icon." width="90" height="90" /></p>
<p>And finally, here are both the play and stop neon glow buttons, side  by side:</p>
<p><img src="http://www.flashexplained.com/img/menus/gn/gn_045.jpg" alt="The glow neon buttons done entirely in Flash!" width="224" height="120" /></p>
<p>They look awesome! And there was no need at all to use Photoshop! The  pause, fast forward and rewind buttons can be made easily now — you  know now the easy principle of duplicating symbols. Just make smaller  triangles for the rewind button and make two rectangles for the pause  button. Nothing easier than that.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://blog.tikier.com/tutorials/flash-tutorials/glowing-neon-playback-control-buttons/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=Glowing+neon+playback+control+buttons&amp;link=http://blog.tikier.com/tutorials/flash-tutorials/glowing-neon-playback-control-buttons&amp;notes=In%20this%20easy%20lesson%20made%20for%20Flash%208%20professional%20I%20%20will%20show%20you%20how%20to%20create%20a%20set%20of%20cool%2C%20neon%20glow%20playback%20control%20%20buttons%20easily.%20No%20other%20applications%20will%20be%20used%20to%20create%20these%20%20buttons%2C%20because%20Flash%20has%20so%20much%20power%20on%20its%20own%21%20You%20will%20see%3A%0D%0A%0D%0A%09How%20to%20use%20the%20basic%20shapes%20to%20create&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://www.shareaholic.com/api/share/?title=Glowing+neon+playback+control+buttons&amp;link=http://blog.tikier.com/tutorials/flash-tutorials/glowing-neon-playback-control-buttons&amp;notes=In%20this%20easy%20lesson%20made%20for%20Flash%208%20professional%20I%20%20will%20show%20you%20how%20to%20create%20a%20set%20of%20cool%2C%20neon%20glow%20playback%20control%20%20buttons%20easily.%20No%20other%20applications%20will%20be%20used%20to%20create%20these%20%20buttons%2C%20because%20Flash%20has%20so%20much%20power%20on%20its%20own%21%20You%20will%20see%3A%0D%0A%0D%0A%09How%20to%20use%20the%20basic%20shapes%20to%20create&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=3&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=Glowing+neon+playback+control+buttons&amp;link=http://blog.tikier.com/tutorials/flash-tutorials/glowing-neon-playback-control-buttons&amp;notes=In%20this%20easy%20lesson%20made%20for%20Flash%208%20professional%20I%20%20will%20show%20you%20how%20to%20create%20a%20set%20of%20cool%2C%20neon%20glow%20playback%20control%20%20buttons%20easily.%20No%20other%20applications%20will%20be%20used%20to%20create%20these%20%20buttons%2C%20because%20Flash%20has%20so%20much%20power%20on%20its%20own%21%20You%20will%20see%3A%0D%0A%0D%0A%09How%20to%20use%20the%20basic%20shapes%20to%20create&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-gmail">
			<a href="http://www.shareaholic.com/api/share/?title=Glowing+neon+playback+control+buttons&amp;link=http://blog.tikier.com/tutorials/flash-tutorials/glowing-neon-playback-control-buttons&amp;notes=In%20this%20easy%20lesson%20made%20for%20Flash%208%20professional%20I%20%20will%20show%20you%20how%20to%20create%20a%20set%20of%20cool%2C%20neon%20glow%20playback%20control%20%20buttons%20easily.%20No%20other%20applications%20will%20be%20used%20to%20create%20these%20%20buttons%2C%20because%20Flash%20has%20so%20much%20power%20on%20its%20own%21%20You%20will%20see%3A%0D%0A%0D%0A%09How%20to%20use%20the%20basic%20shapes%20to%20create&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=52&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.shareaholic.com/api/share/?title=Glowing+neon+playback+control+buttons&amp;link=http://blog.tikier.com/tutorials/flash-tutorials/glowing-neon-playback-control-buttons&amp;notes=In%20this%20easy%20lesson%20made%20for%20Flash%208%20professional%20I%20%20will%20show%20you%20how%20to%20create%20a%20set%20of%20cool%2C%20neon%20glow%20playback%20control%20%20buttons%20easily.%20No%20other%20applications%20will%20be%20used%20to%20create%20these%20%20buttons%2C%20because%20Flash%20has%20so%20much%20power%20on%20its%20own%21%20You%20will%20see%3A%0D%0A%0D%0A%09How%20to%20use%20the%20basic%20shapes%20to%20create&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=74&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=Glowing+neon+playback+control+buttons&amp;link=http://blog.tikier.com/tutorials/flash-tutorials/glowing-neon-playback-control-buttons&amp;notes=In%20this%20easy%20lesson%20made%20for%20Flash%208%20professional%20I%20%20will%20show%20you%20how%20to%20create%20a%20set%20of%20cool%2C%20neon%20glow%20playback%20control%20%20buttons%20easily.%20No%20other%20applications%20will%20be%20used%20to%20create%20these%20%20buttons%2C%20because%20Flash%20has%20so%20much%20power%20on%20its%20own%21%20You%20will%20see%3A%0D%0A%0D%0A%09How%20to%20use%20the%20basic%20shapes%20to%20create&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.shareaholic.com/api/share/?title=Glowing+neon+playback+control+buttons&amp;link=http://blog.tikier.com/tutorials/flash-tutorials/glowing-neon-playback-control-buttons&amp;notes=In%20this%20easy%20lesson%20made%20for%20Flash%208%20professional%20I%20%20will%20show%20you%20how%20to%20create%20a%20set%20of%20cool%2C%20neon%20glow%20playback%20control%20%20buttons%20easily.%20No%20other%20applications%20will%20be%20used%20to%20create%20these%20%20buttons%2C%20because%20Flash%20has%20so%20much%20power%20on%20its%20own%21%20You%20will%20see%3A%0D%0A%0D%0A%09How%20to%20use%20the%20basic%20shapes%20to%20create&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=207&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-hotmail">
			<a href="http://www.shareaholic.com/api/share/?title=Glowing+neon+playback+control+buttons&amp;link=http://blog.tikier.com/tutorials/flash-tutorials/glowing-neon-playback-control-buttons&amp;notes=In%20this%20easy%20lesson%20made%20for%20Flash%208%20professional%20I%20%20will%20show%20you%20how%20to%20create%20a%20set%20of%20cool%2C%20neon%20glow%20playback%20control%20%20buttons%20easily.%20No%20other%20applications%20will%20be%20used%20to%20create%20these%20%20buttons%2C%20because%20Flash%20has%20so%20much%20power%20on%20its%20own%21%20You%20will%20see%3A%0D%0A%0D%0A%09How%20to%20use%20the%20basic%20shapes%20to%20create&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=53&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this via Hotmail">Email this via Hotmail</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.shareaholic.com/api/share/?title=Glowing+neon+playback+control+buttons&amp;link=http://blog.tikier.com/tutorials/flash-tutorials/glowing-neon-playback-control-buttons&amp;notes=In%20this%20easy%20lesson%20made%20for%20Flash%208%20professional%20I%20%20will%20show%20you%20how%20to%20create%20a%20set%20of%20cool%2C%20neon%20glow%20playback%20control%20%20buttons%20easily.%20No%20other%20applications%20will%20be%20used%20to%20create%20these%20%20buttons%2C%20because%20Flash%20has%20so%20much%20power%20on%20its%20own%21%20You%20will%20see%3A%0D%0A%0D%0A%09How%20to%20use%20the%20basic%20shapes%20to%20create&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=39&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=Glowing+neon+playback+control+buttons&amp;link=http://blog.tikier.com/tutorials/flash-tutorials/glowing-neon-playback-control-buttons&amp;notes=In%20this%20easy%20lesson%20made%20for%20Flash%208%20professional%20I%20%20will%20show%20you%20how%20to%20create%20a%20set%20of%20cool%2C%20neon%20glow%20playback%20control%20%20buttons%20easily.%20No%20other%20applications%20will%20be%20used%20to%20create%20these%20%20buttons%2C%20because%20Flash%20has%20so%20much%20power%20on%20its%20own%21%20You%20will%20see%3A%0D%0A%0D%0A%09How%20to%20use%20the%20basic%20shapes%20to%20create&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=Glowing+neon+playback+control+buttons&amp;link=http://blog.tikier.com/tutorials/flash-tutorials/glowing-neon-playback-control-buttons&amp;notes=In%20this%20easy%20lesson%20made%20for%20Flash%208%20professional%20I%20%20will%20show%20you%20how%20to%20create%20a%20set%20of%20cool%2C%20neon%20glow%20playback%20control%20%20buttons%20easily.%20No%20other%20applications%20will%20be%20used%20to%20create%20these%20%20buttons%2C%20because%20Flash%20has%20so%20much%20power%20on%20its%20own%21%20You%20will%20see%3A%0D%0A%0D%0A%09How%20to%20use%20the%20basic%20shapes%20to%20create&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://www.shareaholic.com/api/share/?title=Glowing+neon+playback+control+buttons&amp;link=http://blog.tikier.com/tutorials/flash-tutorials/glowing-neon-playback-control-buttons&amp;notes=In%20this%20easy%20lesson%20made%20for%20Flash%208%20professional%20I%20%20will%20show%20you%20how%20to%20create%20a%20set%20of%20cool%2C%20neon%20glow%20playback%20control%20%20buttons%20easily.%20No%20other%20applications%20will%20be%20used%20to%20create%20these%20%20buttons%2C%20because%20Flash%20has%20so%20much%20power%20on%20its%20own%21%20You%20will%20see%3A%0D%0A%0D%0A%09How%20to%20use%20the%20basic%20shapes%20to%20create&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=10&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=Glowing+neon+playback+control+buttons&amp;link=http://blog.tikier.com/tutorials/flash-tutorials/glowing-neon-playback-control-buttons&amp;notes=In%20this%20easy%20lesson%20made%20for%20Flash%208%20professional%20I%20%20will%20show%20you%20how%20to%20create%20a%20set%20of%20cool%2C%20neon%20glow%20playback%20control%20%20buttons%20easily.%20No%20other%20applications%20will%20be%20used%20to%20create%20these%20%20buttons%2C%20because%20Flash%20has%20so%20much%20power%20on%20its%20own%21%20You%20will%20see%3A%0D%0A%0D%0A%09How%20to%20use%20the%20basic%20shapes%20to%20create&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.shareaholic.com/api/share/?title=Glowing+neon+playback+control+buttons&amp;link=http://blog.tikier.com/tutorials/flash-tutorials/glowing-neon-playback-control-buttons&amp;notes=In%20this%20easy%20lesson%20made%20for%20Flash%208%20professional%20I%20%20will%20show%20you%20how%20to%20create%20a%20set%20of%20cool%2C%20neon%20glow%20playback%20control%20%20buttons%20easily.%20No%20other%20applications%20will%20be%20used%20to%20create%20these%20%20buttons%2C%20because%20Flash%20has%20so%20much%20power%20on%20its%20own%21%20You%20will%20see%3A%0D%0A%0D%0A%09How%20to%20use%20the%20basic%20shapes%20to%20create&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=24&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.shareaholic.com/api/share/?title=Glowing+neon+playback+control+buttons&amp;link=http://blog.tikier.com/tutorials/flash-tutorials/glowing-neon-playback-control-buttons&amp;notes=In%20this%20easy%20lesson%20made%20for%20Flash%208%20professional%20I%20%20will%20show%20you%20how%20to%20create%20a%20set%20of%20cool%2C%20neon%20glow%20playback%20control%20%20buttons%20easily.%20No%20other%20applications%20will%20be%20used%20to%20create%20these%20%20buttons%2C%20because%20Flash%20has%20so%20much%20power%20on%20its%20own%21%20You%20will%20see%3A%0D%0A%0D%0A%09How%20to%20use%20the%20basic%20shapes%20to%20create&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=43&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
</ul><div style="clear: both;"></div></div>




<p>Related posts:<ol><li><a href='http://blog.tikier.com/tutorials/flash-tutorials/glowing-neon-playback-control-buttons-2' rel='bookmark' title='Permanent Link: Glowing neon playback control buttons'>Glowing neon playback control buttons</a></li>
<li><a href='http://blog.tikier.com/tutorials/flash-tutorials/design-a-mirror-website-flash-navigation-menu' rel='bookmark' title='Permanent Link: Design a mirror website flash navigation menu'>Design a mirror website flash navigation menu</a></li>
<li><a href='http://blog.tikier.com/tutorials/flash-tutorials/flash-tutorial-top-bluish-preloader' rel='bookmark' title='Permanent Link: Flash Tutorial &#8211; Top Bluish Preloader'>Flash Tutorial &#8211; Top Bluish Preloader</a></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.tikier.com/tutorials/flash-tutorials/glowing-neon-playback-control-buttons/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Advertising Possibilities Are Endless For Small Business</title>
		<link>http://blog.tikier.com/site-promotion/advertising-possibilities-are-endless-for-small-business</link>
		<comments>http://blog.tikier.com/site-promotion/advertising-possibilities-are-endless-for-small-business#comments</comments>
		<pubDate>Sat, 13 Mar 2010 14:29:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Site Promotion]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[budget]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[campaign]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[color flyer]]></category>
		<category><![CDATA[color flyers]]></category>
		<category><![CDATA[fact]]></category>
		<category><![CDATA[format]]></category>
		<category><![CDATA[fortune 500 companies]]></category>
		<category><![CDATA[lackluster performance]]></category>
		<category><![CDATA[large format poster printing]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[marketing campaigns]]></category>
		<category><![CDATA[mediocre piece]]></category>
		<category><![CDATA[poster]]></category>
		<category><![CDATA[printing]]></category>
		<category><![CDATA[printing project]]></category>
		<category><![CDATA[target clients]]></category>
		<category><![CDATA[target market]]></category>

		<guid isPermaLink="false">http://blog.tikier.com/?p=330</guid>
		<description><![CDATA[Often, the biggest obstacle that most, if not all, small businesses have is a limited budget. Let’s face it. Having a small business makes it difficult for you to have the most glamorous marketing campaign such as that of the big firms and Fortune 500 companies. And you know for a fact that advertising is [...]


Related posts:<ol><li><a href='http://blog.tikier.com/random-articles/3-elements-of-a-successful-advertising-campaign' rel='bookmark' title='Permanent Link: 3 Elements Of A Successful Advertising Campaign'>3 Elements Of A Successful Advertising Campaign</a></li>
<li><a href='http://blog.tikier.com/random-articles/3-benefits-of-pay-per-click-advertising' rel='bookmark' title='Permanent Link: 3 Benefits Of Pay Per Click Advertising'>3 Benefits Of Pay Per Click Advertising</a></li>
<li><a href='http://blog.tikier.com/blogging/3-reasons-why-blogging-will-boost-your-business' rel='bookmark' title='Permanent Link: 3 Reasons Why Blogging Will Boost Your Business!'>3 Reasons Why Blogging Will Boost Your Business!</a></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_brick-red" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fblog.tikier.com%252Fsite-promotion%252Fadvertising-possibilities-are-endless-for-small-business%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22Advertising%20Possibilities%20Are%20Endless%20For%20Small%20Business%22%20%7D);"></div>
<p>Often, the biggest obstacle that most, if not all, small businesses have is a limited budget. Let’s face it. Having a small business makes it difficult for you to have the most glamorous marketing campaign such as that of the big firms and Fortune 500 companies.<br />
<span id="more-330"></span><br />
And you know for a fact that advertising is truly expensive. If you don’t look out, you might just wake up one day with your funds depleted, and strapped with a marketing campaign that provides lackluster performance.</p>
<p>Knowing you have other things to allocate your funds for, you know that you have to consider all things first before you can shell out your hard earned dollars for your coveted marketing tool. Be it full color flyers, or even a large format poster, you can’t afford to be picky when you’re looking at a very small fund to stretch.</p>
<p>With the funds you’re operating on is just enough to get you a decent marketing campaign for your business, it’s no wonder that many business owners and marketers are turning to other alternative promotional vehicles to introduce their brands. In fact, most marketers and advertisers are looking at ways to get attractive and compelling marketing campaigns for the price they can afford of course.</p>
<p>But this is a common misconception of most business owners and advertisers about advertising that should be changed right away. Although a limited budget may mean limited access to the most expensive ads such as your full color flyer printing campaign or your large format poster printing project, it doesn’t mean that you should settle for a mediocre piece.</p>
<p>On the contrary, having a limited budget means you will be able to come up with a more creative ad campaign that will help you effectively introduce your business to your target market.</p>
<p>And it’s not all print ads actually. Marketing your business can be advantageous in a way because you’re able to hand out to your target clients your message in a nice piece of paper. But as always, you can also try some alternatives that can help you promote your business better.</p>
<p>You might want to try co-sponsoring a worthwhile activity, for example. It may be in promotions, events, trade shows, and exhibits located locally. This way, as a small business, you’ll be recognized as a supporter of your community endeavors. This is actually what most big companies do to market their name and brand. As a potential client looks at the new ads, they will be eager to see that you are a staunch supporter of the local community, and hence, a better choice between you and your competitors.</p>
<p>The key is not therefore be frustrated just because you happen to work on a very limited amount. Small businesses are often very imaginative, especially when it comes to stretching their money and making sure that every penny is put to good use. They may not have the money, but they do have excellent marketing tools that show professionalism and credibility.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://blog.tikier.com/site-promotion/advertising-possibilities-are-endless-for-small-business/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=Advertising+Possibilities+Are+Endless+For+Small+Business&amp;link=http://blog.tikier.com/site-promotion/advertising-possibilities-are-endless-for-small-business&amp;notes=Often%2C%20the%20biggest%20obstacle%20that%20most%2C%20if%20not%20all%2C%20small%20businesses%20have%20is%20a%20limited%20budget.%20Let%E2%80%99s%20face%20it.%20Having%20a%20small%20business%20makes%20it%20difficult%20for%20you%20to%20have%20the%20most%20glamorous%20marketing%20campaign%20such%20as%20that%20of%20the%20big%20firms%20and%20Fortune%20500%20companies.%0D%0A%0D%0AAnd%20you%20know%20for%20a%20fact%20that%20adv&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://www.shareaholic.com/api/share/?title=Advertising+Possibilities+Are+Endless+For+Small+Business&amp;link=http://blog.tikier.com/site-promotion/advertising-possibilities-are-endless-for-small-business&amp;notes=Often%2C%20the%20biggest%20obstacle%20that%20most%2C%20if%20not%20all%2C%20small%20businesses%20have%20is%20a%20limited%20budget.%20Let%E2%80%99s%20face%20it.%20Having%20a%20small%20business%20makes%20it%20difficult%20for%20you%20to%20have%20the%20most%20glamorous%20marketing%20campaign%20such%20as%20that%20of%20the%20big%20firms%20and%20Fortune%20500%20companies.%0D%0A%0D%0AAnd%20you%20know%20for%20a%20fact%20that%20adv&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=3&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=Advertising+Possibilities+Are+Endless+For+Small+Business&amp;link=http://blog.tikier.com/site-promotion/advertising-possibilities-are-endless-for-small-business&amp;notes=Often%2C%20the%20biggest%20obstacle%20that%20most%2C%20if%20not%20all%2C%20small%20businesses%20have%20is%20a%20limited%20budget.%20Let%E2%80%99s%20face%20it.%20Having%20a%20small%20business%20makes%20it%20difficult%20for%20you%20to%20have%20the%20most%20glamorous%20marketing%20campaign%20such%20as%20that%20of%20the%20big%20firms%20and%20Fortune%20500%20companies.%0D%0A%0D%0AAnd%20you%20know%20for%20a%20fact%20that%20adv&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-gmail">
			<a href="http://www.shareaholic.com/api/share/?title=Advertising+Possibilities+Are+Endless+For+Small+Business&amp;link=http://blog.tikier.com/site-promotion/advertising-possibilities-are-endless-for-small-business&amp;notes=Often%2C%20the%20biggest%20obstacle%20that%20most%2C%20if%20not%20all%2C%20small%20businesses%20have%20is%20a%20limited%20budget.%20Let%E2%80%99s%20face%20it.%20Having%20a%20small%20business%20makes%20it%20difficult%20for%20you%20to%20have%20the%20most%20glamorous%20marketing%20campaign%20such%20as%20that%20of%20the%20big%20firms%20and%20Fortune%20500%20companies.%0D%0A%0D%0AAnd%20you%20know%20for%20a%20fact%20that%20adv&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=52&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.shareaholic.com/api/share/?title=Advertising+Possibilities+Are+Endless+For+Small+Business&amp;link=http://blog.tikier.com/site-promotion/advertising-possibilities-are-endless-for-small-business&amp;notes=Often%2C%20the%20biggest%20obstacle%20that%20most%2C%20if%20not%20all%2C%20small%20businesses%20have%20is%20a%20limited%20budget.%20Let%E2%80%99s%20face%20it.%20Having%20a%20small%20business%20makes%20it%20difficult%20for%20you%20to%20have%20the%20most%20glamorous%20marketing%20campaign%20such%20as%20that%20of%20the%20big%20firms%20and%20Fortune%20500%20companies.%0D%0A%0D%0AAnd%20you%20know%20for%20a%20fact%20that%20adv&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=74&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=Advertising+Possibilities+Are+Endless+For+Small+Business&amp;link=http://blog.tikier.com/site-promotion/advertising-possibilities-are-endless-for-small-business&amp;notes=Often%2C%20the%20biggest%20obstacle%20that%20most%2C%20if%20not%20all%2C%20small%20businesses%20have%20is%20a%20limited%20budget.%20Let%E2%80%99s%20face%20it.%20Having%20a%20small%20business%20makes%20it%20difficult%20for%20you%20to%20have%20the%20most%20glamorous%20marketing%20campaign%20such%20as%20that%20of%20the%20big%20firms%20and%20Fortune%20500%20companies.%0D%0A%0D%0AAnd%20you%20know%20for%20a%20fact%20that%20adv&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.shareaholic.com/api/share/?title=Advertising+Possibilities+Are+Endless+For+Small+Business&amp;link=http://blog.tikier.com/site-promotion/advertising-possibilities-are-endless-for-small-business&amp;notes=Often%2C%20the%20biggest%20obstacle%20that%20most%2C%20if%20not%20all%2C%20small%20businesses%20have%20is%20a%20limited%20budget.%20Let%E2%80%99s%20face%20it.%20Having%20a%20small%20business%20makes%20it%20difficult%20for%20you%20to%20have%20the%20most%20glamorous%20marketing%20campaign%20such%20as%20that%20of%20the%20big%20firms%20and%20Fortune%20500%20companies.%0D%0A%0D%0AAnd%20you%20know%20for%20a%20fact%20that%20adv&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=207&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-hotmail">
			<a href="http://www.shareaholic.com/api/share/?title=Advertising+Possibilities+Are+Endless+For+Small+Business&amp;link=http://blog.tikier.com/site-promotion/advertising-possibilities-are-endless-for-small-business&amp;notes=Often%2C%20the%20biggest%20obstacle%20that%20most%2C%20if%20not%20all%2C%20small%20businesses%20have%20is%20a%20limited%20budget.%20Let%E2%80%99s%20face%20it.%20Having%20a%20small%20business%20makes%20it%20difficult%20for%20you%20to%20have%20the%20most%20glamorous%20marketing%20campaign%20such%20as%20that%20of%20the%20big%20firms%20and%20Fortune%20500%20companies.%0D%0A%0D%0AAnd%20you%20know%20for%20a%20fact%20that%20adv&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=53&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this via Hotmail">Email this via Hotmail</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.shareaholic.com/api/share/?title=Advertising+Possibilities+Are+Endless+For+Small+Business&amp;link=http://blog.tikier.com/site-promotion/advertising-possibilities-are-endless-for-small-business&amp;notes=Often%2C%20the%20biggest%20obstacle%20that%20most%2C%20if%20not%20all%2C%20small%20businesses%20have%20is%20a%20limited%20budget.%20Let%E2%80%99s%20face%20it.%20Having%20a%20small%20business%20makes%20it%20difficult%20for%20you%20to%20have%20the%20most%20glamorous%20marketing%20campaign%20such%20as%20that%20of%20the%20big%20firms%20and%20Fortune%20500%20companies.%0D%0A%0D%0AAnd%20you%20know%20for%20a%20fact%20that%20adv&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=39&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=Advertising+Possibilities+Are+Endless+For+Small+Business&amp;link=http://blog.tikier.com/site-promotion/advertising-possibilities-are-endless-for-small-business&amp;notes=Often%2C%20the%20biggest%20obstacle%20that%20most%2C%20if%20not%20all%2C%20small%20businesses%20have%20is%20a%20limited%20budget.%20Let%E2%80%99s%20face%20it.%20Having%20a%20small%20business%20makes%20it%20difficult%20for%20you%20to%20have%20the%20most%20glamorous%20marketing%20campaign%20such%20as%20that%20of%20the%20big%20firms%20and%20Fortune%20500%20companies.%0D%0A%0D%0AAnd%20you%20know%20for%20a%20fact%20that%20adv&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=Advertising+Possibilities+Are+Endless+For+Small+Business&amp;link=http://blog.tikier.com/site-promotion/advertising-possibilities-are-endless-for-small-business&amp;notes=Often%2C%20the%20biggest%20obstacle%20that%20most%2C%20if%20not%20all%2C%20small%20businesses%20have%20is%20a%20limited%20budget.%20Let%E2%80%99s%20face%20it.%20Having%20a%20small%20business%20makes%20it%20difficult%20for%20you%20to%20have%20the%20most%20glamorous%20marketing%20campaign%20such%20as%20that%20of%20the%20big%20firms%20and%20Fortune%20500%20companies.%0D%0A%0D%0AAnd%20you%20know%20for%20a%20fact%20that%20adv&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://www.shareaholic.com/api/share/?title=Advertising+Possibilities+Are+Endless+For+Small+Business&amp;link=http://blog.tikier.com/site-promotion/advertising-possibilities-are-endless-for-small-business&amp;notes=Often%2C%20the%20biggest%20obstacle%20that%20most%2C%20if%20not%20all%2C%20small%20businesses%20have%20is%20a%20limited%20budget.%20Let%E2%80%99s%20face%20it.%20Having%20a%20small%20business%20makes%20it%20difficult%20for%20you%20to%20have%20the%20most%20glamorous%20marketing%20campaign%20such%20as%20that%20of%20the%20big%20firms%20and%20Fortune%20500%20companies.%0D%0A%0D%0AAnd%20you%20know%20for%20a%20fact%20that%20adv&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=10&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=Advertising+Possibilities+Are+Endless+For+Small+Business&amp;link=http://blog.tikier.com/site-promotion/advertising-possibilities-are-endless-for-small-business&amp;notes=Often%2C%20the%20biggest%20obstacle%20that%20most%2C%20if%20not%20all%2C%20small%20businesses%20have%20is%20a%20limited%20budget.%20Let%E2%80%99s%20face%20it.%20Having%20a%20small%20business%20makes%20it%20difficult%20for%20you%20to%20have%20the%20most%20glamorous%20marketing%20campaign%20such%20as%20that%20of%20the%20big%20firms%20and%20Fortune%20500%20companies.%0D%0A%0D%0AAnd%20you%20know%20for%20a%20fact%20that%20adv&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.shareaholic.com/api/share/?title=Advertising+Possibilities+Are+Endless+For+Small+Business&amp;link=http://blog.tikier.com/site-promotion/advertising-possibilities-are-endless-for-small-business&amp;notes=Often%2C%20the%20biggest%20obstacle%20that%20most%2C%20if%20not%20all%2C%20small%20businesses%20have%20is%20a%20limited%20budget.%20Let%E2%80%99s%20face%20it.%20Having%20a%20small%20business%20makes%20it%20difficult%20for%20you%20to%20have%20the%20most%20glamorous%20marketing%20campaign%20such%20as%20that%20of%20the%20big%20firms%20and%20Fortune%20500%20companies.%0D%0A%0D%0AAnd%20you%20know%20for%20a%20fact%20that%20adv&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=24&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.shareaholic.com/api/share/?title=Advertising+Possibilities+Are+Endless+For+Small+Business&amp;link=http://blog.tikier.com/site-promotion/advertising-possibilities-are-endless-for-small-business&amp;notes=Often%2C%20the%20biggest%20obstacle%20that%20most%2C%20if%20not%20all%2C%20small%20businesses%20have%20is%20a%20limited%20budget.%20Let%E2%80%99s%20face%20it.%20Having%20a%20small%20business%20makes%20it%20difficult%20for%20you%20to%20have%20the%20most%20glamorous%20marketing%20campaign%20such%20as%20that%20of%20the%20big%20firms%20and%20Fortune%20500%20companies.%0D%0A%0D%0AAnd%20you%20know%20for%20a%20fact%20that%20adv&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=43&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
</ul><div style="clear: both;"></div></div>




<p>Related posts:<ol><li><a href='http://blog.tikier.com/random-articles/3-elements-of-a-successful-advertising-campaign' rel='bookmark' title='Permanent Link: 3 Elements Of A Successful Advertising Campaign'>3 Elements Of A Successful Advertising Campaign</a></li>
<li><a href='http://blog.tikier.com/random-articles/3-benefits-of-pay-per-click-advertising' rel='bookmark' title='Permanent Link: 3 Benefits Of Pay Per Click Advertising'>3 Benefits Of Pay Per Click Advertising</a></li>
<li><a href='http://blog.tikier.com/blogging/3-reasons-why-blogging-will-boost-your-business' rel='bookmark' title='Permanent Link: 3 Reasons Why Blogging Will Boost Your Business!'>3 Reasons Why Blogging Will Boost Your Business!</a></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.tikier.com/site-promotion/advertising-possibilities-are-endless-for-small-business/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Burnt Wood Text Effect – Photoshop Tutorial</title>
		<link>http://blog.tikier.com/tutorials/photoshop/burnt-wood-text-effect-%e2%80%93-photoshop-tutorial</link>
		<comments>http://blog.tikier.com/tutorials/photoshop/burnt-wood-text-effect-%e2%80%93-photoshop-tutorial#comments</comments>
		<pubDate>Mon, 08 Mar 2010 16:09:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[photoshop]]></category>
		<category><![CDATA[222222]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[background texture]]></category>
		<category><![CDATA[bold typeface]]></category>
		<category><![CDATA[brush]]></category>
		<category><![CDATA[burnt wood]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[D. With]]></category>
		<category><![CDATA[deviant art]]></category>
		<category><![CDATA[effect]]></category>
		<category><![CDATA[gaussian blur]]></category>
		<category><![CDATA[Hollywood]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[layer]]></category>
		<category><![CDATA[photoshop text effect]]></category>
		<category><![CDATA[selection]]></category>
		<category><![CDATA[Step]]></category>
		<category><![CDATA[text]]></category>
		<category><![CDATA[texture]]></category>
		<category><![CDATA[wind effect]]></category>
		<category><![CDATA[wood]]></category>
		<category><![CDATA[wood image]]></category>
		<category><![CDATA[wood texture]]></category>

		<guid isPermaLink="false">http://blog.tikier.com/?p=299</guid>
		<description><![CDATA[In this photoshop text effect tutorial we’ll be creating a grungy, burnt wood text treatment. We’ll go over some basic blending modes and use some filters and layer styles to create a  look that would be perfect for a Hollywood movie poster . Final Image Preview Our finished product will be a nice burnt wood [...]


Related posts:<ol><li><a href='http://blog.tikier.com/tutorials/photoshop/design-a-hot-and-sparkling-firery-text-effect-in-photoshop' rel='bookmark' title='Permanent Link: Design a Hot and Sparkling, Firery Text Effect in Photoshop'>Design a Hot and Sparkling, Firery Text Effect in Photoshop</a></li>
<li><a href='http://blog.tikier.com/tutorials/photoshop/how-to-create-a-sparkle-trend-advertisement-%e2%80%93-photoshop-tutorial' rel='bookmark' title='Permanent Link: How To Create A Sparkle Trend Advertisement – Photoshop Tutorial'>How To Create A Sparkle Trend Advertisement – Photoshop Tutorial</a></li>
<li><a href='http://blog.tikier.com/tutorials/photoshop/combine-renders-and-light-effects-for-awesome-results-photoshop-tutorial' rel='bookmark' title='Permanent Link: Combine Renders and Light Effects for Awesome Results &#8211; Photoshop Tutorial'>Combine Renders and Light Effects for Awesome Results &#8211; Photoshop Tutorial</a></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_brick-red" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fblog.tikier.com%252Ftutorials%252Fphotoshop%252Fburnt-wood-text-effect-%2525e2%252580%252593-photoshop-tutorial%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22Burnt%20Wood%20Text%20Effect%20%E2%80%93%20Photoshop%20Tutorial%22%20%7D);"></div>
<div><img src="http://www.visualswirl.com/wp-content/uploads/2010/02/burn-banner.jpg" alt="Post Pic" width="610" height="210" /></div>
<p><!--</p>
<div>
<p>In this photoshop text effect tutorial we&#8217;ll be creating a grungy, burnt wood text treatment. We&#8217;ll go over some basic blending modes and use some filters and layer styles to create a  look that would be perfect for a Hollywood movie poster.</p>
</div>
<p>--> 					<!--/post-excerpt -->In this photoshop text effect tutorial we’ll be creating a grungy,  burnt wood text treatment. We’ll go over some basic blending modes and  use some filters and layer styles to create a  look that would be  perfect for a Hollywood movie poster .</p>
<p><span id="more-299"></span>Final Image Preview</p>
<p>Our finished product will be a nice burnt wood text treatment cleared  out of a charred and smokey piece of aged wood.</p>
<p><a target="_blank" href="http://www.visualswirl.com/wp-content/uploads/2010/02/step19.jpg"><img title="step19" src="http://www.visualswirl.com/wp-content/uploads/2010/02/step19.jpg" alt="" width="600" height="400" /></a></p>
<h2>Gathering Materials</h2>
<p>Just a couple of downloads required for this tutorial. And they’re  both free:</p>
<ul>
<li><a target="_blank" onclick="pageTracker._trackPageview('/outgoing/beyond-oddities.deviantart.com/art/Local-Texture-Three-by-One-77137822?referer=http%3A%2F%2Fwww.good-tutorials.com%2Ftutorials%2Fphotoshop');" href="http://beyond-oddities.deviantart.com/art/Local-Texture-Three-by-One-77137822">Wood  texture</a> by Beyond-Oddities (available at Deviant Art)</li>
<li><a target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.brusheezy.com/brush/639-Rough-Edges?referer=http%3A%2F%2Fwww.good-tutorials.com%2Ftutorials%2Fphotoshop');" href="http://www.brusheezy.com/brush/639-Rough-Edges">Rough  Edges brush pack</a> from Brusheezy</li>
</ul>
<h1>Step 1</h1>
<p>The first thing we need is the background texture. I’m using a  roughed up <a target="_blank" onclick="pageTracker._trackPageview('/outgoing/beyond-oddities.deviantart.com/art/Local-Texture-Three-by-One-77137822?referer=http%3A%2F%2Fwww.good-tutorials.com%2Ftutorials%2Fphotoshop');" href="http://beyond-oddities.deviantart.com/art/Local-Texture-Three-by-One-77137822">wood  image</a> created by Beyond-Oddities. Open the texture in photoshop. I  resized my texture to 1200×800 for a more manageable file size.</p>
<p><img title="step1-2" src="http://www.visualswirl.com/wp-content/uploads/2010/02/step1-2.jpg" alt="" width="600" height="399" /></p>
<h2>Step 2</h2>
<p>Now we need to add some text. Select a brown color (I’m using  #47e490e) and type out some text. I’m also using <strong>Arial Black</strong> for a nice bold typeface.</p>
<p><a target="_blank" href="http://www.visualswirl.com/wp-content/uploads/2010/02/step2.jpg"><img title="step2" src="http://www.visualswirl.com/wp-content/uploads/2010/02/step2.jpg" alt="" width="600" height="328" /></a></p>
<h2>Step 3</h2>
<p>We’re going to work our way from the outside inwards. Let’s first  create the singed effect surrounding the actual text. Command+Click the  Text Layer to Make a selection of the outline of the text.</p>
<p><img title="step3" src="http://www.visualswirl.com/wp-content/uploads/2010/02/step3.jpg" alt="" width="600" height="328" /></p>
<h2>Step 4</h2>
<p>From the Select Menu choose Modify &gt; Expand. Expand the selection  by 25px.</p>
<p><img title="step4a" src="http://www.visualswirl.com/wp-content/uploads/2010/02/step4a.jpg" alt="" width="473" height="399" /></p>
<h2>Step 5</h2>
<p>Create a new layer (“singed”) with this layer selected fill the  selection with a dark gray (#222222). This will be used for the singed  area around the burn text.</p>
<p><img title="step5" src="http://www.visualswirl.com/wp-content/uploads/2010/02/step5.jpg" alt="" width="600" height="250" /></p>
<h2>Step 6</h2>
<p>Now we need to bring some life to the singe with a few filters. First  clear the selection by pressing Command+D. With the “singed” layer  selected, choose Filter &gt; Blur &gt; Gaussian Blur. Add a 1.8 Radius  Gaussian Blur. This will help take away the hard edge.</p>
<p><img title="step6" src="http://www.visualswirl.com/wp-content/uploads/2010/02/step6.jpg" alt="" width="600" height="448" /></p>
<h2>Step 7</h2>
<p>Next we need to add some variation with a wind effect. With the  “singed” layer still selected, choose Filter &gt; Stylize &gt; Wind. Set  the direction to “from the left.”</p>
<p><img title="step7" src="http://www.visualswirl.com/wp-content/uploads/2010/02/step7.jpg" alt="" width="600" height="437" /></p>
<h2>Step 8</h2>
<p>Apply the same filter, this time with the direction “from the right.”  Now we have a nice grainy look to complement the burnt text.</p>
<p><img title="step8" src="http://www.visualswirl.com/wp-content/uploads/2010/02/step8.jpg" alt="" width="600" height="402" /></p>
<h2>Step 9</h2>
<p>Change the blending mode of the “singe” layer to Color Burn and set  the opacity to 30%. We just want the hint of burning.</p>
<p><img title="step9" src="http://www.visualswirl.com/wp-content/uploads/2010/02/step9.jpg" alt="" width="600" height="396" /></p>
<h2>Step 10</h2>
<p>Now let’s focus on the main text. Change the blending mode of your  text layer to multiply. Now you can start to see our burn effect.</p>
<p><img title="Step10" src="http://www.visualswirl.com/wp-content/uploads/2010/02/Step10.jpg" alt="" width="600" height="365" /></p>
<h2>Step 11</h2>
<p>Let’s add an inner glow to emphasize the burn. Double click the layer  to bring up the layer styles. Select “inner glow” and apply the  following settings:</p>
<ul>
<li>Blend Mode: Multiply</li>
<li>Opacity: 60%</li>
<li>Color: #111111</li>
<li>Size: 21px</li>
</ul>
<p><img title="step11" src="http://www.visualswirl.com/wp-content/uploads/2010/02/step11.jpg" alt="" width="600" height="400" /></p>
<h2>Step 12</h2>
<p>Now we’ve got nice burned in text but it still looks to clean. We’re  going to add some textured roughness to the edges. Add a vector mask to  the text layer by clicking on the “add vector mask” at the bottom of the  layer panel.</p>
<p><img title="step12" src="http://www.visualswirl.com/wp-content/uploads/2010/02/step12.jpg" alt="" width="258" height="497" /></p>
<h2>Step 13</h2>
<p>Download and open the <a target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.brusheezy.com/brush/639-Rough-Edges?referer=http%3A%2F%2Fwww.good-tutorials.com%2Ftutorials%2Fphotoshop');" href="http://www.brusheezy.com/brush/639-Rough-Edges">Rough  Edges brush set</a> from Brusheezy.</p>
<p><img title="step13-1" src="http://www.visualswirl.com/wp-content/uploads/2010/02/step13-1.jpg" alt="" width="600" height="408" /></p>
<h2>Step 14</h2>
<p>Choose the 433 horizontal brush. With the layer mask selected and  black set as your primary color, roughen up the edges of the text.</p>
<p><img title="step14" src="http://www.visualswirl.com/wp-content/uploads/2010/02/step14.jpg" alt="" width="501" height="496" /></p>
<h2>Step 15</h2>
<p>Rotate the brush and continue around the edges until you have a nice  roughed up burn.</p>
<p><a target="_blank" href="http://www.visualswirl.com/wp-content/uploads/2010/02/step15.jpg"><img title="step15" src="http://www.visualswirl.com/wp-content/uploads/2010/02/step15.jpg" alt="" width="600" height="355" /></a></p>
<p><a target="_blank" href="http://www.visualswirl.com/wp-content/uploads/2010/02/step15b.jpg"><img title="step15b" src="http://www.visualswirl.com/wp-content/uploads/2010/02/step15b.jpg" alt="" width="600" height="294" /></a></p>
<h2>Step 16</h2>
<p>Let’s finish up by adding a charred effect to the background.  Set  your foreground color to black and your background color to white.  Create a new layer called “charred.” Go to Filter &gt; Render &gt;  Clouds. Set the blending mode of this new layer to Multiply.</p>
<p><img title="step16" src="http://www.visualswirl.com/wp-content/uploads/2010/02/step16.jpg" alt="" width="600" height="467" /></p>
<h2>Step 17</h2>
<p>With the charred layer selected, grab a large, roughed up eraser and  clean up the area around the text.</p>
<p><img title="step17-1" src="http://www.visualswirl.com/wp-content/uploads/2010/02/step17-1.jpg" alt="" width="600" height="451" /></p>
<h2>Step 18</h2>
<p>Let’s make the entire image pop. Create a new Levels adjustment layer  (Layer &gt; Adjustment Layer &gt; Levels). Set the Black input level to  15 and the white input level to 223.</p>
<p><img title="step18" src="http://www.visualswirl.com/wp-content/uploads/2010/02/step18.jpg" alt="" width="600" height="452" /></p>
<h2>Final Image</h2>
<p>And we’re done. A smokey burnt text treatment ready for your next  project. I hope you enjoyed this tutorial and maybe picked up a  technique or two. Let me know what you think in the comments below.</p>
<p><img title="step19" src="http://www.visualswirl.com/wp-content/uploads/2010/02/step191.jpg" alt="" width="600" height="400" /></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://blog.tikier.com/tutorials/photoshop/burnt-wood-text-effect-–-photoshop-tutorial/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=Burnt+Wood+Text+Effect+%E2%80%93+Photoshop+Tutorial&amp;link=http://blog.tikier.com/tutorials/photoshop/burnt-wood-text-effect-%e2%80%93-photoshop-tutorial&amp;notes=%0D%0A%20%09%09%09%09%09In%20this%20photoshop%20text%20effect%20tutorial%20we%E2%80%99ll%20be%20creating%20a%20grungy%2C%20%20burnt%20wood%20text%20treatment.%20We%E2%80%99ll%20go%20over%20some%20basic%20blending%20modes%20and%20%20use%20some%20filters%20and%20layer%20styles%20to%20create%20a%C2%A0%20look%20that%20would%20be%20%20perfect%20for%20a%20Hollywood%20movie%20poster%20.%0D%0A%0D%0AFinal%20Image%20Preview%0D%0A%0D%0AOur%20finished%20pr&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://www.shareaholic.com/api/share/?title=Burnt+Wood+Text+Effect+%E2%80%93+Photoshop+Tutorial&amp;link=http://blog.tikier.com/tutorials/photoshop/burnt-wood-text-effect-%e2%80%93-photoshop-tutorial&amp;notes=%0D%0A%20%09%09%09%09%09In%20this%20photoshop%20text%20effect%20tutorial%20we%E2%80%99ll%20be%20creating%20a%20grungy%2C%20%20burnt%20wood%20text%20treatment.%20We%E2%80%99ll%20go%20over%20some%20basic%20blending%20modes%20and%20%20use%20some%20filters%20and%20layer%20styles%20to%20create%20a%C2%A0%20look%20that%20would%20be%20%20perfect%20for%20a%20Hollywood%20movie%20poster%20.%0D%0A%0D%0AFinal%20Image%20Preview%0D%0A%0D%0AOur%20finished%20pr&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=3&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=Burnt+Wood+Text+Effect+%E2%80%93+Photoshop+Tutorial&amp;link=http://blog.tikier.com/tutorials/photoshop/burnt-wood-text-effect-%e2%80%93-photoshop-tutorial&amp;notes=%0D%0A%20%09%09%09%09%09In%20this%20photoshop%20text%20effect%20tutorial%20we%E2%80%99ll%20be%20creating%20a%20grungy%2C%20%20burnt%20wood%20text%20treatment.%20We%E2%80%99ll%20go%20over%20some%20basic%20blending%20modes%20and%20%20use%20some%20filters%20and%20layer%20styles%20to%20create%20a%C2%A0%20look%20that%20would%20be%20%20perfect%20for%20a%20Hollywood%20movie%20poster%20.%0D%0A%0D%0AFinal%20Image%20Preview%0D%0A%0D%0AOur%20finished%20pr&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-gmail">
			<a href="http://www.shareaholic.com/api/share/?title=Burnt+Wood+Text+Effect+%E2%80%93+Photoshop+Tutorial&amp;link=http://blog.tikier.com/tutorials/photoshop/burnt-wood-text-effect-%e2%80%93-photoshop-tutorial&amp;notes=%0D%0A%20%09%09%09%09%09In%20this%20photoshop%20text%20effect%20tutorial%20we%E2%80%99ll%20be%20creating%20a%20grungy%2C%20%20burnt%20wood%20text%20treatment.%20We%E2%80%99ll%20go%20over%20some%20basic%20blending%20modes%20and%20%20use%20some%20filters%20and%20layer%20styles%20to%20create%20a%C2%A0%20look%20that%20would%20be%20%20perfect%20for%20a%20Hollywood%20movie%20poster%20.%0D%0A%0D%0AFinal%20Image%20Preview%0D%0A%0D%0AOur%20finished%20pr&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=52&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.shareaholic.com/api/share/?title=Burnt+Wood+Text+Effect+%E2%80%93+Photoshop+Tutorial&amp;link=http://blog.tikier.com/tutorials/photoshop/burnt-wood-text-effect-%e2%80%93-photoshop-tutorial&amp;notes=%0D%0A%20%09%09%09%09%09In%20this%20photoshop%20text%20effect%20tutorial%20we%E2%80%99ll%20be%20creating%20a%20grungy%2C%20%20burnt%20wood%20text%20treatment.%20We%E2%80%99ll%20go%20over%20some%20basic%20blending%20modes%20and%20%20use%20some%20filters%20and%20layer%20styles%20to%20create%20a%C2%A0%20look%20that%20would%20be%20%20perfect%20for%20a%20Hollywood%20movie%20poster%20.%0D%0A%0D%0AFinal%20Image%20Preview%0D%0A%0D%0AOur%20finished%20pr&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=74&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=Burnt+Wood+Text+Effect+%E2%80%93+Photoshop+Tutorial&amp;link=http://blog.tikier.com/tutorials/photoshop/burnt-wood-text-effect-%e2%80%93-photoshop-tutorial&amp;notes=%0D%0A%20%09%09%09%09%09In%20this%20photoshop%20text%20effect%20tutorial%20we%E2%80%99ll%20be%20creating%20a%20grungy%2C%20%20burnt%20wood%20text%20treatment.%20We%E2%80%99ll%20go%20over%20some%20basic%20blending%20modes%20and%20%20use%20some%20filters%20and%20layer%20styles%20to%20create%20a%C2%A0%20look%20that%20would%20be%20%20perfect%20for%20a%20Hollywood%20movie%20poster%20.%0D%0A%0D%0AFinal%20Image%20Preview%0D%0A%0D%0AOur%20finished%20pr&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.shareaholic.com/api/share/?title=Burnt+Wood+Text+Effect+%E2%80%93+Photoshop+Tutorial&amp;link=http://blog.tikier.com/tutorials/photoshop/burnt-wood-text-effect-%e2%80%93-photoshop-tutorial&amp;notes=%0D%0A%20%09%09%09%09%09In%20this%20photoshop%20text%20effect%20tutorial%20we%E2%80%99ll%20be%20creating%20a%20grungy%2C%20%20burnt%20wood%20text%20treatment.%20We%E2%80%99ll%20go%20over%20some%20basic%20blending%20modes%20and%20%20use%20some%20filters%20and%20layer%20styles%20to%20create%20a%C2%A0%20look%20that%20would%20be%20%20perfect%20for%20a%20Hollywood%20movie%20poster%20.%0D%0A%0D%0AFinal%20Image%20Preview%0D%0A%0D%0AOur%20finished%20pr&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=207&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-hotmail">
			<a href="http://www.shareaholic.com/api/share/?title=Burnt+Wood+Text+Effect+%E2%80%93+Photoshop+Tutorial&amp;link=http://blog.tikier.com/tutorials/photoshop/burnt-wood-text-effect-%e2%80%93-photoshop-tutorial&amp;notes=%0D%0A%20%09%09%09%09%09In%20this%20photoshop%20text%20effect%20tutorial%20we%E2%80%99ll%20be%20creating%20a%20grungy%2C%20%20burnt%20wood%20text%20treatment.%20We%E2%80%99ll%20go%20over%20some%20basic%20blending%20modes%20and%20%20use%20some%20filters%20and%20layer%20styles%20to%20create%20a%C2%A0%20look%20that%20would%20be%20%20perfect%20for%20a%20Hollywood%20movie%20poster%20.%0D%0A%0D%0AFinal%20Image%20Preview%0D%0A%0D%0AOur%20finished%20pr&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=53&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this via Hotmail">Email this via Hotmail</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.shareaholic.com/api/share/?title=Burnt+Wood+Text+Effect+%E2%80%93+Photoshop+Tutorial&amp;link=http://blog.tikier.com/tutorials/photoshop/burnt-wood-text-effect-%e2%80%93-photoshop-tutorial&amp;notes=%0D%0A%20%09%09%09%09%09In%20this%20photoshop%20text%20effect%20tutorial%20we%E2%80%99ll%20be%20creating%20a%20grungy%2C%20%20burnt%20wood%20text%20treatment.%20We%E2%80%99ll%20go%20over%20some%20basic%20blending%20modes%20and%20%20use%20some%20filters%20and%20layer%20styles%20to%20create%20a%C2%A0%20look%20that%20would%20be%20%20perfect%20for%20a%20Hollywood%20movie%20poster%20.%0D%0A%0D%0AFinal%20Image%20Preview%0D%0A%0D%0AOur%20finished%20pr&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=39&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=Burnt+Wood+Text+Effect+%E2%80%93+Photoshop+Tutorial&amp;link=http://blog.tikier.com/tutorials/photoshop/burnt-wood-text-effect-%e2%80%93-photoshop-tutorial&amp;notes=%0D%0A%20%09%09%09%09%09In%20this%20photoshop%20text%20effect%20tutorial%20we%E2%80%99ll%20be%20creating%20a%20grungy%2C%20%20burnt%20wood%20text%20treatment.%20We%E2%80%99ll%20go%20over%20some%20basic%20blending%20modes%20and%20%20use%20some%20filters%20and%20layer%20styles%20to%20create%20a%C2%A0%20look%20that%20would%20be%20%20perfect%20for%20a%20Hollywood%20movie%20poster%20.%0D%0A%0D%0AFinal%20Image%20Preview%0D%0A%0D%0AOur%20finished%20pr&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=Burnt+Wood+Text+Effect+%E2%80%93+Photoshop+Tutorial&amp;link=http://blog.tikier.com/tutorials/photoshop/burnt-wood-text-effect-%e2%80%93-photoshop-tutorial&amp;notes=%0D%0A%20%09%09%09%09%09In%20this%20photoshop%20text%20effect%20tutorial%20we%E2%80%99ll%20be%20creating%20a%20grungy%2C%20%20burnt%20wood%20text%20treatment.%20We%E2%80%99ll%20go%20over%20some%20basic%20blending%20modes%20and%20%20use%20some%20filters%20and%20layer%20styles%20to%20create%20a%C2%A0%20look%20that%20would%20be%20%20perfect%20for%20a%20Hollywood%20movie%20poster%20.%0D%0A%0D%0AFinal%20Image%20Preview%0D%0A%0D%0AOur%20finished%20pr&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://www.shareaholic.com/api/share/?title=Burnt+Wood+Text+Effect+%E2%80%93+Photoshop+Tutorial&amp;link=http://blog.tikier.com/tutorials/photoshop/burnt-wood-text-effect-%e2%80%93-photoshop-tutorial&amp;notes=%0D%0A%20%09%09%09%09%09In%20this%20photoshop%20text%20effect%20tutorial%20we%E2%80%99ll%20be%20creating%20a%20grungy%2C%20%20burnt%20wood%20text%20treatment.%20We%E2%80%99ll%20go%20over%20some%20basic%20blending%20modes%20and%20%20use%20some%20filters%20and%20layer%20styles%20to%20create%20a%C2%A0%20look%20that%20would%20be%20%20perfect%20for%20a%20Hollywood%20movie%20poster%20.%0D%0A%0D%0AFinal%20Image%20Preview%0D%0A%0D%0AOur%20finished%20pr&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=10&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=Burnt+Wood+Text+Effect+%E2%80%93+Photoshop+Tutorial&amp;link=http://blog.tikier.com/tutorials/photoshop/burnt-wood-text-effect-%e2%80%93-photoshop-tutorial&amp;notes=%0D%0A%20%09%09%09%09%09In%20this%20photoshop%20text%20effect%20tutorial%20we%E2%80%99ll%20be%20creating%20a%20grungy%2C%20%20burnt%20wood%20text%20treatment.%20We%E2%80%99ll%20go%20over%20some%20basic%20blending%20modes%20and%20%20use%20some%20filters%20and%20layer%20styles%20to%20create%20a%C2%A0%20look%20that%20would%20be%20%20perfect%20for%20a%20Hollywood%20movie%20poster%20.%0D%0A%0D%0AFinal%20Image%20Preview%0D%0A%0D%0AOur%20finished%20pr&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.shareaholic.com/api/share/?title=Burnt+Wood+Text+Effect+%E2%80%93+Photoshop+Tutorial&amp;link=http://blog.tikier.com/tutorials/photoshop/burnt-wood-text-effect-%e2%80%93-photoshop-tutorial&amp;notes=%0D%0A%20%09%09%09%09%09In%20this%20photoshop%20text%20effect%20tutorial%20we%E2%80%99ll%20be%20creating%20a%20grungy%2C%20%20burnt%20wood%20text%20treatment.%20We%E2%80%99ll%20go%20over%20some%20basic%20blending%20modes%20and%20%20use%20some%20filters%20and%20layer%20styles%20to%20create%20a%C2%A0%20look%20that%20would%20be%20%20perfect%20for%20a%20Hollywood%20movie%20poster%20.%0D%0A%0D%0AFinal%20Image%20Preview%0D%0A%0D%0AOur%20finished%20pr&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=24&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.shareaholic.com/api/share/?title=Burnt+Wood+Text+Effect+%E2%80%93+Photoshop+Tutorial&amp;link=http://blog.tikier.com/tutorials/photoshop/burnt-wood-text-effect-%e2%80%93-photoshop-tutorial&amp;notes=%0D%0A%20%09%09%09%09%09In%20this%20photoshop%20text%20effect%20tutorial%20we%E2%80%99ll%20be%20creating%20a%20grungy%2C%20%20burnt%20wood%20text%20treatment.%20We%E2%80%99ll%20go%20over%20some%20basic%20blending%20modes%20and%20%20use%20some%20filters%20and%20layer%20styles%20to%20create%20a%C2%A0%20look%20that%20would%20be%20%20perfect%20for%20a%20Hollywood%20movie%20poster%20.%0D%0A%0D%0AFinal%20Image%20Preview%0D%0A%0D%0AOur%20finished%20pr&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=43&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
</ul><div style="clear: both;"></div></div>




<p>Related posts:<ol><li><a href='http://blog.tikier.com/tutorials/photoshop/design-a-hot-and-sparkling-firery-text-effect-in-photoshop' rel='bookmark' title='Permanent Link: Design a Hot and Sparkling, Firery Text Effect in Photoshop'>Design a Hot and Sparkling, Firery Text Effect in Photoshop</a></li>
<li><a href='http://blog.tikier.com/tutorials/photoshop/how-to-create-a-sparkle-trend-advertisement-%e2%80%93-photoshop-tutorial' rel='bookmark' title='Permanent Link: How To Create A Sparkle Trend Advertisement – Photoshop Tutorial'>How To Create A Sparkle Trend Advertisement – Photoshop Tutorial</a></li>
<li><a href='http://blog.tikier.com/tutorials/photoshop/combine-renders-and-light-effects-for-awesome-results-photoshop-tutorial' rel='bookmark' title='Permanent Link: Combine Renders and Light Effects for Awesome Results &#8211; Photoshop Tutorial'>Combine Renders and Light Effects for Awesome Results &#8211; Photoshop Tutorial</a></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.tikier.com/tutorials/photoshop/burnt-wood-text-effect-%e2%80%93-photoshop-tutorial/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Eight Critical Tips for On-Site Search Engine Optimization</title>
		<link>http://blog.tikier.com/tutorials/html-tutorials/eight-critical-tips-for-on-site-search-engine-optimization</link>
		<comments>http://blog.tikier.com/tutorials/html-tutorials/eight-critical-tips-for-on-site-search-engine-optimization#comments</comments>
		<pubDate>Mon, 08 Mar 2010 15:47:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[html]]></category>
		<category><![CDATA[alterations]]></category>
		<category><![CDATA[alternations]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[daily basis]]></category>
		<category><![CDATA[font]]></category>
		<category><![CDATA[fresh juice]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[internet users]]></category>
		<category><![CDATA[Jack]]></category>
		<category><![CDATA[keyword selection]]></category>
		<category><![CDATA[optimization seo]]></category>
		<category><![CDATA[page]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[search engine optimization]]></category>
		<category><![CDATA[seven points]]></category>
		<category><![CDATA[size]]></category>
		<category><![CDATA[tag]]></category>
		<category><![CDATA[text]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://blog.tikier.com/?p=289</guid>
		<description><![CDATA[A great number of websites on the Internet receive a significant amount of new traffic on daily basis without ever having to pay a single cent for advertising. How do they do this? Simply by search engine optimization (SEO) techniques. There are certain tips and techniques that any webmaster could use to enhance his chances [...]


Related posts:<ol><li><a href='http://blog.tikier.com/seo-tips/4-tips-for-raising-your-search-engine-rankings' rel='bookmark' title='Permanent Link: 4 Tips For Raising Your Search Engine Rankings'>4 Tips For Raising Your Search Engine Rankings</a></li>
<li><a href='http://blog.tikier.com/seo-tips/6-more-tips-for-raising-your-search-engine-rankings' rel='bookmark' title='Permanent Link: 6 More Tips For Raising Your Search Engine Rankings'>6 More Tips For Raising Your Search Engine Rankings</a></li>
<li><a href='http://blog.tikier.com/seo-tips/7-search-engine-optimization-strategies-that-work' rel='bookmark' title='Permanent Link: 7 Search Engine Optimization Strategies That Work'>7 Search Engine Optimization Strategies That Work</a></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_brick-red" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fblog.tikier.com%252Ftutorials%252Fhtml-tutorials%252Feight-critical-tips-for-on-site-search-engine-optimization%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22Eight%20Critical%20Tips%20for%20On-Site%20Search%20Engine%20Optimization%22%20%7D);"></div>
<p>A great number of websites on the Internet receive a significant  amount of new traffic on daily basis without ever having to pay a single  cent for advertising. How do they do this? Simply by <strong>search  engine optimization (SEO)</strong> techniques. There are certain tips  and techniques that any webmaster could use to enhance his chances of  appearing higher in the search results and hence leading Internet users  from all around the world onto his website.</p>
<p><span id="more-289"></span></p>
<p><strong>SEO </strong>techniques could be divided into two main  categories, <strong>on-site techniques</strong> and <strong>off-site  techniques</strong>. On-site techniques are those that you apply to the  content of your website, while off-site techniques are actions that you  do outside of your website to enhance its search results. This tutorial  will <strong>only explore on-site SEO techniques</strong>, I will  hopefully write in the near future another tutorial on off-site SEO  techniques. Here are the seven points you have to take care of when  creating your content:</p>
<h2>1 - Keyword Selection and Keyword Variations</h2>
<p><strong>Keyword selection</strong> is key to all the techniques  to be discussed below. You have to carefully choose the keyword that you  intend to target and focus on that keyword and other possible  alterations of the same keyword. When thinking of keywords you must <strong>put  yourself in the place of your average visitor</strong> and think of  what keywords he could input in Google when looking for the type of  content you have on your website. It is usually <strong>better to target  phrases</strong> instead of single words as the competition for these  is much higher. If you have a website about a specific type of <strong>juice</strong>,  you should target <strong>orange fresh juice</strong>, instead of <strong>juice</strong> only. This will increase your rank for the combination of these words  together and will ensure that the right visitors will be coming to your  website.</p>
<p>Once you have selected the keywords you choose to target, you  will have to think of all the possible alternations of that word. For  example, if you would like to target the word <strong>telephone</strong>,  you could be better off with <strong>telephones</strong>, as users that  search for the singular and plural form will still find your website.  The same rule applies for different variations of a verb, e.g. <strong>Glow</strong>,  <strong>Glows,</strong> or <strong>Glowing</strong>.  At times you  might consider targeting several different versions of the word if  different incompatible versions of it are probable to be searched for,  e.g. <strong>University</strong> and <strong>Universities</strong> or <strong>Glows</strong> and <strong>Glowing</strong> from the previous example. A helpful tool  for choosing which keywords to target is the <a target="_blank" href="https://adwords.google.com/select/KeywordToolExternal" target="_blank">Google Keyword Selection Tool</a>.</p>
<h2>2 - Write Clean Semantic Code</h2>
<p>On-site SEO techniques are all about helping a search engine  spider find what the most significant content on your website is. For it  to properly be able to do this, you have to <strong>make sure that your  coding structure does not make the indexing process hard or confusing  for search engines spiders.</strong> You can ensure this by sticking to  modern <strong>semantic coding</strong> style that separates the content  from the formatting. Old school web coding uses visual and decorative  HTML tags to format the styling the page by using loads and loads of  repeated code segments to specify fonts, colors, and other details that a  search engine spider is simply not interested in.</p>
<p>You can see the two code snippets below to understand the  difference between semantic and non-semantic coding. Both of the  examples below have <strong>the same content</strong>. The first example  uses HTML tags to format the look of the text, while the other one uses  an external  <a title="What is CSS , Introduction" href="http://blog.tikier.com/tutorials/css/what-is-css" target="_blank">CSS</a> to control the way the text is formatted.</p>
<p>Non-Semantic code:</p>
<div>&lt;p align="center"&gt;&lt;font  size="2"&gt;&lt;em&gt;&lt;U&gt;&lt;strong&gt;&lt;font color="#FF0000"  size="4" face="Verdana, Arial, Helvetica, sans-serif"&gt;Welcome to  Jack's Homepage!  &lt;/font&gt;&lt;/strong&gt;&lt;/U&gt;&lt;/em&gt;&lt;/font&gt;&lt;/p&gt;<br />
&lt;p align="center"&gt;&lt;font color="#333333" size="2"  face="Verdana, Arial, Helvetica, sans-serif"&gt;&lt;br /&gt;<br />
&lt;/font&gt;&lt;font color="#333333" size="2" face="Verdana,  Arial, Helvetica, sans-serif"&gt;My  name is  &lt;strong&gt;&lt;em&gt;Jack&lt;/em&gt;&lt;/strong&gt;, I live with  my  parents and I like to play  &lt;strong&gt;&lt;em&gt;football&lt;/em&gt;&lt;/strong&gt;. Here are  some  of my favourite websites!!&lt;/font&gt;&lt;/p&gt;<br />
&lt;p align="center"&gt;&lt;font color="#333333" size="2"  face="Verdana, Arial, Helvetica, sans-serif"&gt;&lt;a  href="http://www.google.com/"&gt;&lt;strong&gt;Google&lt;/strong&gt;&lt;/a&gt;&lt;/font&gt;&lt;/p&gt;<br />
&lt;p align="center"&gt;&lt;font color="#333333" size="2"  face="Verdana, Arial, Helvetica, sans-serif"&gt;&lt;a  href="http://www.yahoo.com/"&gt;&lt;strong&gt;Yahoo&lt;/strong&gt;&lt;/a&gt;&lt;/font&gt;&lt;/p&gt;<br />
&lt;p align="center"&gt;&lt;font color="#333333" size="2"  face="Verdana, Arial, Helvetica, sans-serif"&gt;&lt;a  href="http://www.gamespot.com/"&gt;&lt;strong&gt;Gamespot&lt;/strong&gt;&lt;/a&gt;&lt;/font&gt;&lt;/p&gt;<br />
&lt;p align="center"&gt;&lt;font color="#333333" size="2"  face="Verdana, Arial, Helvetica, sans-serif"&gt;&lt;br /&gt;<br />
&lt;/font&gt;&lt;/p&gt;<br />
&lt;p align="center"&gt;&lt;font color="#333333" size="2"  face="Verdana, Arial, Helvetica,  sans-serif"&gt;&lt;em&gt;&lt;strong&gt;Thanks  for visiting my  website!&lt;/strong&gt;&lt;/em&gt;&lt;/font&gt;&lt;/p&gt;</div>
<p>Semantic code:</p>
<div>&lt;h1&gt;Welcome to Jack's Homepage!&lt;/h1&gt;<br />
&lt;p&gt;My  name is Jack, I live with  my parents and I like to  play football. Here are some  of my favourite websites!!&lt;/p&gt;<br />
&lt;p&gt;&lt;a  href="http://www.google.com/"&gt;Google&lt;/a&gt;&lt;/p&gt;<br />
&lt;p&gt;&lt;a  href="http://www.yahoo.com/"&gt;Yahoo&lt;/a&gt;&lt;/p&gt;<br />
&lt;p&gt;&lt;a  href="http://www.gamespot.com/"&gt;Gamespot&lt;/a&gt;&lt;/p&gt;<br />
&lt;p&gt;Thanks  for visiting my website!&lt;/p&gt;</div>
<h2>3- Put Your Keywords High Up in the Page</h2>
<p>Search engines give more importance to words <strong>higher up in  the HTML source code</strong> of the page. So you will have to mention  your keywords as early as possible in your page and repeat it various  times and various forms for the search engines spiders to catch it. What  matters is the position of the word in the HTML code and not visually  on the page, it is possible to format and position your content all  around the viewport, but for search engine purposes all that matters is  the place within the HTML code. If you have navigation and side content  bars, you could place these after your main content in the page and then  align them in the way you choose by using <a title="What is CSS?" href="http://blog.tikier.com/tutorials/css/what-is-css" target="_blank">CSS</a> positioning and/or float effects.</p>
<h2><strong>4- Make Use of Proper Structure</strong> to Describe  Your Content</h2>
<p>Search engines nowadays look at <strong>structural HTML tags</strong> such as <strong>heading tags</strong>, <strong>strong</strong> and <strong>em</strong> tags as an indication to what the important content of the page is.  Within the <em>&lt;Body&gt;</em> section of the html file, the most  significant tag is the <em>&lt;h1&gt;&lt;/h1&gt;</em> tag, which by  default creates the biggest heading in an HTML document. This means that  you should make sure that you place the most important keywords in this  heading tag. It is suggested that web authors should only use the <em>&lt;h1&gt;&lt;/h1&gt;</em> tag once, using it more than once could be penalized by search engines  and that can lead to lower search engine rankings.</p>
<p>Other significant tags are the other headings in an ascending  order <em>&lt;h2&gt;&lt;h3&gt;&lt;h4&gt;&lt;h5&gt;</em> and <em>&lt;h6&gt;</em> and the <em>&lt;strong&gt;&lt;/strong&gt;</em> and the <em>&lt;em&gt;&lt;/em&gt;</em> tags. So make sure you use these to highlight your important keywords  through out your documents.</p>
<p>Headings would not usually fit well within the look and design of  you webpage if used in their default formatting, to make use of their  impact on search engine ranking while retaining a proper design you will  have to use <a title="What is CSS , Introduction" href="http://blog.tikier.com/tutorials/css/what-is-css" target="_blank">CSS</a> to  control the way these tags look.</p>
<h2>5- Use the &lt;title&gt; Tag Properly</h2>
<p>This tip is in essence part of the previous one, but it is so  important I had to separate it. The <em>&lt;title&gt;</em> tag of an  HTML page is probably <strong>the most significant HTML tag when  optimizing for search engines</strong>. The <em>&lt;title&gt;</em> tag  is located within the <em>&lt;head&gt;&lt;/head&gt;</em> tags and it  determines the text that appears in the title bar of the window and on  the task bar.  You should make sure not to follow the wrongful approach  of assigning the title tag of all the pages of a given website as the  name of the website, unless the name of the website is the keyword you  are targeting in each and every page.</p>
<h2>6- Make your content Accessible To Search Engine Spiders</h2>
<p>Search engines can <strong>only read text embedded in your HTML  page</strong>, it cannot read text embedded in Flash movies or text  drawn on images. Creating a website that has all the text saved as  images will mean that no search engine will be able to read any of this  text. If you are creating a website that has the text embedded in a  medium inaccessible to search engines, you should create a basic textual  version of your website if you would like search engines to find it. If  you HAVE to use images to decorate essential keywords in your content,  such as the names of the sections in the navigation section of your  website, you can solve this problem by using image replacement CSS techniques, or provide another  text-only navigation menu at the bottom of the page.</p>
<p>Whenever you use images in your text, make sure that you give  your images a meaningful name and always make  sure that you  use the <em>&lt;alt&gt;</em> tag to describe the image.</p>
<h2>7 - Use Search Engine Friendly URLs</h2>
<p>There are two points to highlight under this heading, the first  is that you have to <strong>make sure that the links that you use are  ones that a search engine spider can follow</strong>. Not all search  engines spiders can follow dynamic URLs such as those generated using  JavaScript and those containing complex signs such as &amp;, #, ?, and  $. If a search engine cannot follow the link, then it will simply not  index anything further than the index page of the website.</p>
<p>If you do have a readable link, then you might as well enhance  your chances of showing up higher at search engine results by <strong>enriching  the  URL with relevant keywords.</strong> The best method of doing this  is by including the keyword you target in the domain name itself if  there is a major keyword that you would like to target for every single  one of your pages. For example, registering the domain name <em>http://www.<strong>carwash</strong>online.com/</em> is a good idea if you would like to target the keyword carwash. An  alternative way to do this is by embedding the keyword of a specific  page in the name of the file of the webpage itself and not necessarily  in the domain name, e.g. <em>http://www.carserviceonline.com/<strong>carwash</strong>.html</em>.</p>
<h2>8 - Cross Link Your Content</h2>
<p>Modern search engines rate websites on the basis of their  'authority', i.e. the number of links pointing to a website. The higher  the number of links leading to your page, the higher it goes within the  search results. This applies to both links from other websites and links  from different pages within the same website.</p>
<p>In addition to it being a method for enhancing your search  engine ranking, cross-linking your content could help your current  readers find  relevant content on your website. For example, if you have  a website that has a collection of tutorials,  you can easily link from one tutorial to other  ones that extend the  topic to make the readers aware of their existence  and to increase the  ranking of these tutorials.</p>
<p>When creating links to other content you should take note of  the actual <strong>text</strong> of the link and the <strong>TITLE</strong> parameter of the anchor tag. These two variables could be used to  target special keywords to your site. For example, the paragraph above, I  linked the word <strong>tutorial</strong> to Oman3D's tutorial page and   set the <strong>TITLE</strong> parameter of the link (the text that  appears when you leave the mouse hovering over a link for a while) as <em>Oman3D  Tutorials</em>. Both of these fields have a significant impact on the  ranking of the page they link to in relation to the words they contain,  which in this example is the keyword <em>tutorials</em>.</p>
<h2>Conclusion</h2>
<p>I intentionally left out the topic of <strong>meta tags</strong> due to the fact that they are no longer of much significance to search  engines as their usage was much abused by spammers on the web. They are  still of some relevance as the description meta tag could still appear  as the description of the page in a search result, and it is assumed  that they have some impact on contextual advertisement units.</p>
<p>One should not forget that SEO tips help make search engines find  worthy content, and without proper content there isn't anything to  optimize, so make sure that you focus on creating quality content before  looking for ways to optimize your website for search engines.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://blog.tikier.com/tutorials/html-tutorials/eight-critical-tips-for-on-site-search-engine-optimization/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=Eight+Critical+Tips+for+On-Site+Search+Engine+Optimization&amp;link=http://blog.tikier.com/tutorials/html-tutorials/eight-critical-tips-for-on-site-search-engine-optimization&amp;notes=A%20great%20number%20of%20websites%20on%20the%20Internet%20receive%20a%20significant%20%20amount%20of%20new%20traffic%20on%20daily%20basis%20without%20ever%20having%20to%20pay%20a%20single%20%20cent%20for%20advertising.%20How%20do%20they%20do%20this%3F%20Simply%20by%20search%20%20engine%20optimization%20%28SEO%29%20techniques.%20There%20are%20certain%20tips%20%20and%20techniques%20that%20any%20webmaster%20cou&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://www.shareaholic.com/api/share/?title=Eight+Critical+Tips+for+On-Site+Search+Engine+Optimization&amp;link=http://blog.tikier.com/tutorials/html-tutorials/eight-critical-tips-for-on-site-search-engine-optimization&amp;notes=A%20great%20number%20of%20websites%20on%20the%20Internet%20receive%20a%20significant%20%20amount%20of%20new%20traffic%20on%20daily%20basis%20without%20ever%20having%20to%20pay%20a%20single%20%20cent%20for%20advertising.%20How%20do%20they%20do%20this%3F%20Simply%20by%20search%20%20engine%20optimization%20%28SEO%29%20techniques.%20There%20are%20certain%20tips%20%20and%20techniques%20that%20any%20webmaster%20cou&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=3&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=Eight+Critical+Tips+for+On-Site+Search+Engine+Optimization&amp;link=http://blog.tikier.com/tutorials/html-tutorials/eight-critical-tips-for-on-site-search-engine-optimization&amp;notes=A%20great%20number%20of%20websites%20on%20the%20Internet%20receive%20a%20significant%20%20amount%20of%20new%20traffic%20on%20daily%20basis%20without%20ever%20having%20to%20pay%20a%20single%20%20cent%20for%20advertising.%20How%20do%20they%20do%20this%3F%20Simply%20by%20search%20%20engine%20optimization%20%28SEO%29%20techniques.%20There%20are%20certain%20tips%20%20and%20techniques%20that%20any%20webmaster%20cou&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-gmail">
			<a href="http://www.shareaholic.com/api/share/?title=Eight+Critical+Tips+for+On-Site+Search+Engine+Optimization&amp;link=http://blog.tikier.com/tutorials/html-tutorials/eight-critical-tips-for-on-site-search-engine-optimization&amp;notes=A%20great%20number%20of%20websites%20on%20the%20Internet%20receive%20a%20significant%20%20amount%20of%20new%20traffic%20on%20daily%20basis%20without%20ever%20having%20to%20pay%20a%20single%20%20cent%20for%20advertising.%20How%20do%20they%20do%20this%3F%20Simply%20by%20search%20%20engine%20optimization%20%28SEO%29%20techniques.%20There%20are%20certain%20tips%20%20and%20techniques%20that%20any%20webmaster%20cou&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=52&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.shareaholic.com/api/share/?title=Eight+Critical+Tips+for+On-Site+Search+Engine+Optimization&amp;link=http://blog.tikier.com/tutorials/html-tutorials/eight-critical-tips-for-on-site-search-engine-optimization&amp;notes=A%20great%20number%20of%20websites%20on%20the%20Internet%20receive%20a%20significant%20%20amount%20of%20new%20traffic%20on%20daily%20basis%20without%20ever%20having%20to%20pay%20a%20single%20%20cent%20for%20advertising.%20How%20do%20they%20do%20this%3F%20Simply%20by%20search%20%20engine%20optimization%20%28SEO%29%20techniques.%20There%20are%20certain%20tips%20%20and%20techniques%20that%20any%20webmaster%20cou&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=74&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=Eight+Critical+Tips+for+On-Site+Search+Engine+Optimization&amp;link=http://blog.tikier.com/tutorials/html-tutorials/eight-critical-tips-for-on-site-search-engine-optimization&amp;notes=A%20great%20number%20of%20websites%20on%20the%20Internet%20receive%20a%20significant%20%20amount%20of%20new%20traffic%20on%20daily%20basis%20without%20ever%20having%20to%20pay%20a%20single%20%20cent%20for%20advertising.%20How%20do%20they%20do%20this%3F%20Simply%20by%20search%20%20engine%20optimization%20%28SEO%29%20techniques.%20There%20are%20certain%20tips%20%20and%20techniques%20that%20any%20webmaster%20cou&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.shareaholic.com/api/share/?title=Eight+Critical+Tips+for+On-Site+Search+Engine+Optimization&amp;link=http://blog.tikier.com/tutorials/html-tutorials/eight-critical-tips-for-on-site-search-engine-optimization&amp;notes=A%20great%20number%20of%20websites%20on%20the%20Internet%20receive%20a%20significant%20%20amount%20of%20new%20traffic%20on%20daily%20basis%20without%20ever%20having%20to%20pay%20a%20single%20%20cent%20for%20advertising.%20How%20do%20they%20do%20this%3F%20Simply%20by%20search%20%20engine%20optimization%20%28SEO%29%20techniques.%20There%20are%20certain%20tips%20%20and%20techniques%20that%20any%20webmaster%20cou&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=207&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-hotmail">
			<a href="http://www.shareaholic.com/api/share/?title=Eight+Critical+Tips+for+On-Site+Search+Engine+Optimization&amp;link=http://blog.tikier.com/tutorials/html-tutorials/eight-critical-tips-for-on-site-search-engine-optimization&amp;notes=A%20great%20number%20of%20websites%20on%20the%20Internet%20receive%20a%20significant%20%20amount%20of%20new%20traffic%20on%20daily%20basis%20without%20ever%20having%20to%20pay%20a%20single%20%20cent%20for%20advertising.%20How%20do%20they%20do%20this%3F%20Simply%20by%20search%20%20engine%20optimization%20%28SEO%29%20techniques.%20There%20are%20certain%20tips%20%20and%20techniques%20that%20any%20webmaster%20cou&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=53&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this via Hotmail">Email this via Hotmail</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.shareaholic.com/api/share/?title=Eight+Critical+Tips+for+On-Site+Search+Engine+Optimization&amp;link=http://blog.tikier.com/tutorials/html-tutorials/eight-critical-tips-for-on-site-search-engine-optimization&amp;notes=A%20great%20number%20of%20websites%20on%20the%20Internet%20receive%20a%20significant%20%20amount%20of%20new%20traffic%20on%20daily%20basis%20without%20ever%20having%20to%20pay%20a%20single%20%20cent%20for%20advertising.%20How%20do%20they%20do%20this%3F%20Simply%20by%20search%20%20engine%20optimization%20%28SEO%29%20techniques.%20There%20are%20certain%20tips%20%20and%20techniques%20that%20any%20webmaster%20cou&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=39&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=Eight+Critical+Tips+for+On-Site+Search+Engine+Optimization&amp;link=http://blog.tikier.com/tutorials/html-tutorials/eight-critical-tips-for-on-site-search-engine-optimization&amp;notes=A%20great%20number%20of%20websites%20on%20the%20Internet%20receive%20a%20significant%20%20amount%20of%20new%20traffic%20on%20daily%20basis%20without%20ever%20having%20to%20pay%20a%20single%20%20cent%20for%20advertising.%20How%20do%20they%20do%20this%3F%20Simply%20by%20search%20%20engine%20optimization%20%28SEO%29%20techniques.%20There%20are%20certain%20tips%20%20and%20techniques%20that%20any%20webmaster%20cou&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=Eight+Critical+Tips+for+On-Site+Search+Engine+Optimization&amp;link=http://blog.tikier.com/tutorials/html-tutorials/eight-critical-tips-for-on-site-search-engine-optimization&amp;notes=A%20great%20number%20of%20websites%20on%20the%20Internet%20receive%20a%20significant%20%20amount%20of%20new%20traffic%20on%20daily%20basis%20without%20ever%20having%20to%20pay%20a%20single%20%20cent%20for%20advertising.%20How%20do%20they%20do%20this%3F%20Simply%20by%20search%20%20engine%20optimization%20%28SEO%29%20techniques.%20There%20are%20certain%20tips%20%20and%20techniques%20that%20any%20webmaster%20cou&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://www.shareaholic.com/api/share/?title=Eight+Critical+Tips+for+On-Site+Search+Engine+Optimization&amp;link=http://blog.tikier.com/tutorials/html-tutorials/eight-critical-tips-for-on-site-search-engine-optimization&amp;notes=A%20great%20number%20of%20websites%20on%20the%20Internet%20receive%20a%20significant%20%20amount%20of%20new%20traffic%20on%20daily%20basis%20without%20ever%20having%20to%20pay%20a%20single%20%20cent%20for%20advertising.%20How%20do%20they%20do%20this%3F%20Simply%20by%20search%20%20engine%20optimization%20%28SEO%29%20techniques.%20There%20are%20certain%20tips%20%20and%20techniques%20that%20any%20webmaster%20cou&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=10&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=Eight+Critical+Tips+for+On-Site+Search+Engine+Optimization&amp;link=http://blog.tikier.com/tutorials/html-tutorials/eight-critical-tips-for-on-site-search-engine-optimization&amp;notes=A%20great%20number%20of%20websites%20on%20the%20Internet%20receive%20a%20significant%20%20amount%20of%20new%20traffic%20on%20daily%20basis%20without%20ever%20having%20to%20pay%20a%20single%20%20cent%20for%20advertising.%20How%20do%20they%20do%20this%3F%20Simply%20by%20search%20%20engine%20optimization%20%28SEO%29%20techniques.%20There%20are%20certain%20tips%20%20and%20techniques%20that%20any%20webmaster%20cou&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.shareaholic.com/api/share/?title=Eight+Critical+Tips+for+On-Site+Search+Engine+Optimization&amp;link=http://blog.tikier.com/tutorials/html-tutorials/eight-critical-tips-for-on-site-search-engine-optimization&amp;notes=A%20great%20number%20of%20websites%20on%20the%20Internet%20receive%20a%20significant%20%20amount%20of%20new%20traffic%20on%20daily%20basis%20without%20ever%20having%20to%20pay%20a%20single%20%20cent%20for%20advertising.%20How%20do%20they%20do%20this%3F%20Simply%20by%20search%20%20engine%20optimization%20%28SEO%29%20techniques.%20There%20are%20certain%20tips%20%20and%20techniques%20that%20any%20webmaster%20cou&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=24&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.shareaholic.com/api/share/?title=Eight+Critical+Tips+for+On-Site+Search+Engine+Optimization&amp;link=http://blog.tikier.com/tutorials/html-tutorials/eight-critical-tips-for-on-site-search-engine-optimization&amp;notes=A%20great%20number%20of%20websites%20on%20the%20Internet%20receive%20a%20significant%20%20amount%20of%20new%20traffic%20on%20daily%20basis%20without%20ever%20having%20to%20pay%20a%20single%20%20cent%20for%20advertising.%20How%20do%20they%20do%20this%3F%20Simply%20by%20search%20%20engine%20optimization%20%28SEO%29%20techniques.%20There%20are%20certain%20tips%20%20and%20techniques%20that%20any%20webmaster%20cou&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=43&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
</ul><div style="clear: both;"></div></div>




<p>Related posts:<ol><li><a href='http://blog.tikier.com/seo-tips/4-tips-for-raising-your-search-engine-rankings' rel='bookmark' title='Permanent Link: 4 Tips For Raising Your Search Engine Rankings'>4 Tips For Raising Your Search Engine Rankings</a></li>
<li><a href='http://blog.tikier.com/seo-tips/6-more-tips-for-raising-your-search-engine-rankings' rel='bookmark' title='Permanent Link: 6 More Tips For Raising Your Search Engine Rankings'>6 More Tips For Raising Your Search Engine Rankings</a></li>
<li><a href='http://blog.tikier.com/seo-tips/7-search-engine-optimization-strategies-that-work' rel='bookmark' title='Permanent Link: 7 Search Engine Optimization Strategies That Work'>7 Search Engine Optimization Strategies That Work</a></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.tikier.com/tutorials/html-tutorials/eight-critical-tips-for-on-site-search-engine-optimization/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Design a mirror website flash navigation menu</title>
		<link>http://blog.tikier.com/tutorials/flash-tutorials/design-a-mirror-website-flash-navigation-menu</link>
		<comments>http://blog.tikier.com/tutorials/flash-tutorials/design-a-mirror-website-flash-navigation-menu#comments</comments>
		<pubDate>Mon, 08 Mar 2010 15:37:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[flash]]></category>
		<category><![CDATA[Alpha]]></category>
		<category><![CDATA[alpha transparency]]></category>
		<category><![CDATA[click]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[color mixer]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[Don]]></category>
		<category><![CDATA[flash example]]></category>
		<category><![CDATA[Flip Vertical]]></category>
		<category><![CDATA[gradient]]></category>
		<category><![CDATA[Hue]]></category>
		<category><![CDATA[keyframe]]></category>
		<category><![CDATA[layer]]></category>
		<category><![CDATA[linear gradient]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[menu interface]]></category>
		<category><![CDATA[mirror copies]]></category>
		<category><![CDATA[paint bucket tool]]></category>
		<category><![CDATA[pencil icon]]></category>
		<category><![CDATA[Rectangle]]></category>
		<category><![CDATA[rectangle tool]]></category>
		<category><![CDATA[reflection]]></category>
		<category><![CDATA[Select]]></category>
		<category><![CDATA[sky background]]></category>

		<guid isPermaLink="false">http://blog.tikier.com/?p=286</guid>
		<description><![CDATA[In this lesson you will see how easy it is to create a nice Flash website menu interface and make it work also! Particularly, you will learn how to: Create simple buttons and duplicate them, Make your link text look crisp and readable, Make mirror copies of your buttons easily, Design and code a simple [...]


Related posts:<ol><li><a href='http://blog.tikier.com/tutorials/flash-tutorials/glowing-neon-playback-control-buttons' rel='bookmark' title='Permanent Link: Glowing neon playback control buttons'>Glowing neon playback control buttons</a></li>
<li><a href='http://blog.tikier.com/tutorials/flash-tutorials/how-to-make-a-complete-flash-website-navigation-system-with-a-built-in-preloader-for-external-content' rel='bookmark' title='Permanent Link: How to make a complete Flash website navigation system with a built-in preloader for external content'>How to make a complete Flash website navigation system with a built-in preloader for external content</a></li>
<li><a href='http://blog.tikier.com/tutorials/flash-tutorials/glowing-neon-playback-control-buttons-2' rel='bookmark' title='Permanent Link: Glowing neon playback control buttons'>Glowing neon playback control buttons</a></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_brick-red" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fblog.tikier.com%252Ftutorials%252Fflash-tutorials%252Fdesign-a-mirror-website-flash-navigation-menu%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22Design%20a%20mirror%20website%20flash%20navigation%20menu%22%20%7D);"></div>
<p>In this lesson you will see how easy it is to create a nice Flash  website menu interface and make it work also! Particularly, you will  learn how to:</p>
<ul>
<li>Create simple buttons and duplicate them,</li>
<li>Make your link text look crisp and readable,</li>
<li>Make  mirror copies of your buttons easily,</li>
<li>Design and code a simple navigational system.</li>
</ul>
<p>In the Flash example below you can see what you are going to create  with this tutorial. Try clicking the buttons!</p>
<p><span id="more-286"></span>Drawing the gradient sky background</p>
<p>1 Open a new Flash document. Call the first  layer <em>sky</em>.</p>
<p>2 Select the Rectangle tool <strong>(R)</strong>.  Use only the fill color – go to the colors portion of the Tools panel,  click on the pencil icon (see 1 below) and then the small square with  the red line (see 2 below).</p>
<p><img title="Locking the outline color." src="http://www.flashexplained.com/img/design/emm/emm_001.gif" alt="Locking the outline color." width="89" height="128" /></p>
<p>3 Draw a borderless rectangle wider than  the stage, and about 70 pixels high.</p>
<p><img title="A narrow and wide rectangle situated in the upper portion  of the stage." src="http://www.flashexplained.com/img/design/emm/emm_002.gif" alt="A  narrow and wide rectangle situated in the upper portion of the stage." width="200" height="146" /></p>
<p>4 If the rectangle is selected, unselect it  by clicking anywhere outside it with the Selection tool <strong>(V)</strong>.</p>
<p>Go to the Color mixer panel <strong>(Window &gt; Color Mixer)</strong>.  In the upper right part of this panel, select Linear as type of fill.</p>
<p>In the bottom, a color stripe will appear. Click on the small right  rectangle and enter the #B6E2FA as color code in the appropriate field.  Then click on the right rectangle and enter #78B0E9. The alpha  (transparency) properties for both colors should be set to 100%.</p>
<p><img title="Adjusting the colors for the linear gradient." src="http://www.flashexplained.com/img/design/emm/emm_003.gif" alt="Adjusting the colors for the linear gradient." width="200" height="64" /></p>
<p>5 Select the Paint Bucket tool <strong>(K)</strong>.  Click with your mouse on the top of the rectangle and start dragging it  diagonally to create a nice diagonal linear gradient fill.</p>
<p><img title="Making a diagonal linear color fill." src="http://www.flashexplained.com/img/design/emm/emm_004.gif" alt="Making a diagonal linear color fill." width="400" height="53" /></p>
<p><a target="_blank" href="http://flashexplained.com/menus-interfaces/design-a-mirror-website-navigation-menu/#container">Top  of page</a></p>
<h3>Creating the menu buttons</h3>
<p>6 Lock the <em>sky</em> layer. Create a new  layer and call it <em>menu</em>.</p>
<p><img title="Creating a new layer." src="http://www.flashexplained.com/img/design/emm/emm_005.gif" alt="Creating a new layer." width="241" height="74" /></p>
<p>7 Select the Rectangle tool <strong>(R)</strong>.  Go to the Properties panel. Set the outline color to a light gray hue,  and the fill color to a dark blue one. You can see the colors I used in  the image below. Also, set the thickness of the outline to hairline.</p>
<p><img title="Setting the colors for the rectangle tool." src="http://www.flashexplained.com/img/design/emm/emm_006.gif" alt="Setting the colors for the rectangle tool." width="254" height="49" /></p>
<p>8 Draw a 90 by 30 pixel rectangle, over the  sky background, near the left edge of the stage.</p>
<p><img title="A blue rectangle with a grey border." src="http://www.flashexplained.com/img/design/emm/emm_007.gif" alt="A  blue rectangle with a grey border." width="147" height="85" /></p>
<p>To have the exact dimensions of the rectangle (because it’s difficult  to get them when drawing by hand), double click on the rectangle’s  inside (fill) with the Selection tool <strong>(V)</strong>. After you  did this, both the outline and the fill will be selected.</p>
<p>Go to the left side of the Properties panel and you’ll see the the W  (width) and H (height) fields there. Just enter the dimensions for your  rectangle manually and hit <strong>Enter</strong> to confirm. Make sure  that the little padlock icon on the left is unlocked so that you can  enter the width and height values independently from one another.</p>
<p><img title="Setting the dimensions and the position of the rectangle  manually." src="http://www.flashexplained.com/img/design/emm/emm_008.gif" alt="Setting the dimensions and the position of the rectangle manually." width="158" height="51" /></p>
<p>Also, make sure that the position (coordinates on the stage) of the  rectangle (the X and Y fields) is set to round numbers. There must be a  zero at the end, not any other number.</p>
<p>Why is this necessary? Because when you are drawing precise graphics  (like the hairline outline of the rectangle) or using bitmap fonts,  crisp pictures, and so on, you must set their coordinates to round  numbers. Otherwise you will get blurry and messy results in your SWF  movie.</p>
<p>9 Select your rectangle on the stage once  again (both the outline and the fill).</p>
<p>Press <strong>F8</strong> (or select <strong>Modify &gt; Convert to  Symbol</strong>). In the dialog window that shows up, select Button as  type and call it <em>home button</em>. Click OK.</p>
<p><img title="The Convert to Symbol dialog window." src="http://www.flashexplained.com/img/design/emm/emm_009.gif" alt="The  Convert to Symbol dialog window." width="260" height="87" /></p>
<p>You will see that the rectangle has changed – it is now a button  symbol. The small circle in its middle is it’s registration point. This  point is relevant when making changes and issuing commands to the button  via ActionScript. For example, when you want to move the button  programatically, this point’s coordinates are taken as button’s  position.</p>
<p><img title="A newly made button symbol on the stage." src="http://www.flashexplained.com/img/design/emm/emm_010.gif" alt="A  newly made button symbol on the stage." width="107" height="42" /></p>
<p>10 Double-click with the Selection tool <strong>(V)</strong> on your newly made button to enter inside it. You know that you are  inside the button if you look above the layers – the indication is  there.</p>
<p><img title="Icons indicating the current timeline." src="http://www.flashexplained.com/img/design/emm/emm_011.gif" alt="Icons indicating the current timeline." width="272" height="30" /></p>
<p>11 Call the first layer inside your button  symbol <em>rectangle</em>. Lock this layer. Make a new layer and call it  <em>text</em>.</p>
<p><img title="Layers inside the button." src="http://www.flashexplained.com/img/design/emm/emm_012.gif" alt="Layers inside the button." width="297" height="101" /></p>
<p>12 Select the Text tool <strong>(T)</strong>.  In the Properties panel, select static as type of text.</p>
<p><img title="Selecting static text for writing." src="http://www.flashexplained.com/img/design/emm/emm_013.gif" alt="Selecting static text for writing." width="151" height="45" /></p>
<div>
<p>Static text is used for text that will not change, unlike the dynamic  or input text field types. The important thing here is to know that you  can choose whatever font you like, because this kind of text field will  be seen exactly the same by all users who are viewing your flash movie  (or site), regardless if they are having that particular font installed  on their computer or not. So you are free to choose any font you like,  and that font will become embedded in your flash movie.</p>
</div>
<p>Choose a font you like. Make its size 12 or so. Select white as  color, to make it stand out from the blue rectangle background. In the  menu below the font size and color options, select “Anti-alias for  readability”. This will make your link text look sharp.</p>
<p><img title="Making the text more readable by selecting the correct  option in the Properties panel." src="http://www.flashexplained.com/img/design/emm/emm_014.gif" alt="Making the text more readable by selecting the correct option in  the Properties panel." width="174" height="53" /></p>
<p>13 Click with the Text tool somewhere  inside the blue rectangle area and type “Home”.</p>
<p><img title="The link text above the buttons rectangle area." src="http://www.flashexplained.com/img/design/emm/emm_015.gif" alt="The  link text above the buttons rectangle area." width="101" height="40" /></p>
<p>14 Open up the Align panel <strong>(Window  &gt; Align)</strong>. With the link text you just typed still selected,  turn on the “Align to Stage” button (see 1 marked on the picture below).</p>
<p><img title="Using the Align panel to center the text inside the  button." src="http://www.flashexplained.com/img/design/emm/emm_016.gif" alt="Using the Align panel to center the text inside the button." width="208" height="190" /></p>
<p>Align the text horizontally (2) and vertically (3) inside the button.  So, since the “Align to Stage” button is turned on and you are working  inside the button, the text field will be centered in relation to the  button’s central point. If you’re interested, I made a separate tutorial  on <a target="_blank" href="http://flashexplained.com/basics/using-the-align-panel/">the  use of the Align panel</a>.</p>
<p>15 However, there are still manual changes  that need to be made. To ensure that your text renders correctly,  without any blurry parts, to make it more readable, go once again to the  Properties panel and set its position (coordinates) to round numbers.</p>
<p><img title="Setting the placement of the text field to round  coordinates manually." src="http://www.flashexplained.com/img/design/emm/emm_017.gif" alt="Setting the placement of the text field to round coordinates  manually." width="166" height="52" /></p>
<p>If the last number in the X an Y fields is equal or above 5 (like  18.9 in the picture above), round the whole number to the upper value.  If it is below 5, round it to the lower value. For example, if it is  14.3, round it to 14.0, and if it’s 14.5 or 14.8, round it to 15.0.</p>
<p>Once you have done this, if your text isn’t centered in relation to  the blue rectangle below it, position it with arrow keys on your  keybourd. Just press the up or down (or left and right if needed) key –  this will move your link text by 1 pixel, and it will stay on round  coordinates.</p>
<p>16 One last thing before you move on: be  sure that the “Selectable” option is <em><strong>turned off</strong></em>.  Check if this is so in the options for your text field below the scene.</p>
<p><img title="The selectable option for the text turned off." src="http://www.flashexplained.com/img/design/emm/emm_019.gif" alt="The  selectable option for the text turned off." width="119" height="57" /></p>
<p>Why is this necessary? If you have this option turned on, once a user  moves her mouse over the button, the cursor for selecting text will  appear, instead of the hand cursor. In addition to the fact that this  sucks (a text selecting mouse cursor appearing over a button definitely  does), your button may even not function at all!</p>
<p>Turn this option on only intentionally – for example, when you want  your users to be able to select a piece of text on your flash site, like  your address, etc.</p>
<p>17 Click on the “Scene 1″ link above the  layers to return to the main scene.</p>
<p><img title="Returning to the main scene of your movie." src="http://www.flashexplained.com/img/design/emm/emm_018.gif" alt="Returning to the main scene of your movie." width="198" height="41" /></p>
<p>There! The button is finished. Making the other buttons will be easy  now.</p>
<h3>Duplicating the other menu buttons from the existing one</h3>
<p>18 Open the Library (<strong>Window &gt;  Library)</strong>. Right-click on the <em>home button</em> symbol and  select “Duplicate” from the menu that appears.</p>
<p><img title="Duplicating a symbol inside the Library." src="http://www.flashexplained.com/img/design/emm/emm_020.gif" alt="Duplicating a symbol inside the Library." width="151" height="161" /></p>
<p>19 Call the new symbol <em>gallery button</em> and click OK.</p>
<p>20 Double-click on the newly created <em>gallery  button </em>symbol in the Library to enter inside it.</p>
<p>Click on the link label text field to edit it. You can do this by  double-clicking with the Selection tool <strong>(V)</strong>, or by  clicking once with the Text tool <strong>(T)</strong>. Write “Gallery”  (without the quotation marks, of course). Press <strong>Esc</strong> to  exit the text editing mode.</p>
<p>Use the <strong>left arrow</strong> and <strong>right arrow</strong> keys  if necessary to center the link label inside the button.</p>
<p><img title="Centering the link label inside the second menu button." src="http://www.flashexplained.com/img/design/emm/emm_021.gif" alt="Centering the link label inside the second menu button." width="91" height="31" /></p>
<p>21 Go back to the Library and repeat steps  18 through 20. Make three more button symbols. Call them <em>music  button</em>, <em>links button</em> and <em>contact button</em>. Change  their labels accordingly.</p>
<p>You don’t need to return to the main scene to do this. Just duplicate  them inside the Library, double-click on each one of them, change the  text and center it. When finished with all the buttons, return to the  main scene. You will have five different buttons for your menu in the  Library.</p>
<p><img title="The Library with all the menu buttons inside it." src="http://www.flashexplained.com/img/design/emm/emm_022.gif" alt="The  Library with all the menu buttons inside it." width="100" height="160" /></p>
<h3>Placing the site menu on the stage</h3>
<p>22 Choose the Selection tool <strong>(V)</strong>.  Click once on the home button to select it.</p>
<p>Press <strong>Ctrl+C</strong> (<strong>Cmd+C</strong> on a Mac) to  copy this button. Press <strong>Ctrl+Shift+V</strong> (<strong>Cmd+Shift+V</strong> on a Mac) to paste this button in place, exactly over the original one.</p>
<p>Now don’t click anywhere and don’t select any other tool. It may seem  that you have just one button on the scene right now, but there are  two. They are placed exactly one over the another (thanks to the Paste  in Place command).</p>
<p>Just press and hold <strong>Shift</strong> on your keyboard and while  holding it, press the <strong>right arrow</strong> key to move the copy  of the button horizontally. Each time you press the <strong>right arrow</strong> key, you will move the button by exactly 10 pixels. Press the key 10  times to move the button exactly by 100 pixels to the right.</p>
<p><img title="Two copies of the same menu button exactly 100 pixels  apart." src="http://www.flashexplained.com/img/design/emm/emm_023.gif" alt="Two copies of the same menu button exactly 100 pixels apart." width="204" height="45" /></p>
<p>If you had pressed just the arrow key without holding shift, you  would have moved your button by 1 pixel at time. This comes in handy  when you must design a precise layout.</p>
<p>23 Repeat the previous step by copying and  pasting in place the second button and moving it 100 pixels to the  right. Do this two more times to have five buttons in all on the scene.</p>
<p><img title="Five copies of the same button equally spaced on the  scene." src="http://www.flashexplained.com/img/design/emm/emm_024.gif" alt="Five copies of the same button equally spaced on the scene." width="495" height="35" /></p>
<h3>Finalizing the  site menu by swapping the button symbols</h3>
<p>You will see now how easy it is to place every menu button in its  right place. I love Flash! It is wonderful and really easy to work with <img src="http://flashexplained.com/wp-includes/images/smilies/icon_smile.gif" alt=":)" /></p>
<p>24 Click once with the Selection tool <strong>(B)</strong> on the second button from the left. Go to the Properties panel and  press the “Swap” button.</p>
<p><img title="The button for swapping symbols on the scene." src="http://www.flashexplained.com/img/design/emm/emm_025.gif" alt="The  button for swapping symbols on the scene." width="55" height="38" /></p>
<p>25 In the window that appears, select <em>gallery  button</em> and click OK.</p>
<p><img title="The Swap Symbol dialog." src="http://www.flashexplained.com/img/design/emm/emm_026.gif" alt="The  Swap Symbol dialog." width="220" height="117" /></p>
<p>Repeat this procedure 3 more times for each of the remaining buttons.  In the end, you will have all the particular buttons required for your  flash website menu on the stage.</p>
<p><img title="The finalized web site menu." src="http://www.flashexplained.com/img/design/emm/emm_027.gif" alt="The  finalized web site menu." width="497" height="37" /></p>
<p>After finishing the part of the menu that will server to navigate  through your Flash site, you are going to create the menu’s mirrored  reflection.</p>
<h3>Making the reflection of the menu</h3>
<p>26 Select all of the buttons on the stage.  Do this with the Selection tool <strong>(V)</strong>. Click somewhere  outside the buttons (for example, on the top left of the menu) and drag  your mouse to encompass all of them.</p>
<p>27 Copy the buttons <strong>(Ctrl+C)</strong> and paste them in place <strong>(Ctrl+Shift+V)</strong>.</p>
<p>28 While holding <strong>Shift</strong> press the <strong>down arrow </strong>3 times to move the copies down 30  pixels from the original symbols.</p>
<p>Release the <strong>Shift</strong> key and press only the <strong>down  arrow</strong> key five times. You have moved your button copies  exactly 35 pixels downwards.</p>
<p><img title="The copies of the buttons placed below the originals." src="http://www.flashexplained.com/img/design/emm/emm_028.gif" alt="The  copies of the buttons placed below the originals." width="497" height="72" /></p>
<p>If you followed the dimensions I gave you at the outset of this  tutorial for creating your buttons, the copies will be now spaced just a  few pixels from the originals. This will make for a nice and more  realistic mirror reflection effect. Also, you don’t want to move your  mirrored buttons too far from the real menu, to save space.</p>
<p>29 Keep the copies you just moved down  selected. Select <strong> Modify &gt; Transform &gt; Flip Vertical</strong>.</p>
<p><img title="The menu with its reflection." src="http://www.flashexplained.com/img/design/emm/emm_029.gif" alt="The  menu with its reflection." width="499" height="74" /></p>
<p>You have just made a mirror reflection of the menu. Now ain’t that  easy? Sure it is <img src="http://flashexplained.com/wp-includes/images/smilies/icon_smile.gif" alt=":)" /> But let’s give it a more realistic look.</p>
<p>30 You must have your reflection buttons  still selected. In the Properties panel, click on the Filters tab (1 in  the image below).</p>
<p><img title="Applying a blending filter to the buttons." src="http://www.flashexplained.com/img/design/emm/emm_030.gif" alt="Applying a blending filter to the buttons." width="183" height="92" /></p>
<p>Then click on the little blue plus icon (2) and select the “Adjust  color” blending filter. The controls for adjusting the colors of your  buttons will appear.</p>
<p>By dragging their respective sliders to the left, set the Brightness  to -18 and Saturation to -36. Or just enter these values manually in the  appropriate fields. Leave the other two values (Contrast and Hue) at  zero.</p>
<p>31 Click on the Properties tab (right next  to the Filters tab you clicked in the previous step). Select Alpha from  the Color menu and set it to 41%.</p>
<p><img title="Lowering the Alpha property of the inversed buttons." src="http://www.flashexplained.com/img/design/emm/emm_030a.gif" alt="Lowering the Alpha property of the inversed buttons." width="242" height="27" /></p>
<p>32 Lock the current (<em>menu</em>) layer.  Create a new layer between the two existing ones and call it <em>blue  background</em>.</p>
<p><img title="A new layer for reflection background." src="http://www.flashexplained.com/img/design/emm/emm_031.gif" alt="A  new layer for reflection background." width="221" height="66" /></p>
<p>You will draw a blue gradient here. This will make your navigational  header look more realistic and beautiful. Since you already have a  sky-like graphic behind your menu, it makes sense to create a reflection  of it too.</p>
<p>33 Select the Rectangle tool <strong>(R)</strong>.  Block the outline color and select a fill color that is in good  contrast with the existing graphical elements. You are doing this only  to draw and position your rectangle more easily. You will change its  color to a gradient later.</p>
<p>Draw a rectangle that 48 pixels high.  The width isn’t important –  only make it the same size as the scene or wider than that.</p>
<p><img title="The new rectangle beneath the menu." src="http://www.flashexplained.com/img/design/emm/emm_032.gif" alt="The  new rectangle beneath the menu." width="300" height="62" /></p>
<p>It is important to place the rectangle so that its upper edge is  between the real buttons and their reflections.</p>
<p><img title="Precisely placing the rectangle." src="http://www.flashexplained.com/img/design/emm/emm_033.gif" alt="Precisely placing the rectangle." width="182" height="89" /></p>
<p>Unselect the rectangle by clicking on an empty part of the scene with  the Selection tool <strong>(V)</strong>.</p>
<p>34 Go to the Color Mixer panel, click on  the paint bucket icon to adjust the fill color (and not the outline –  the pencil icon – just in case it is selected by default). Select Linear  as fill type. Make the following choices for your gradient:</p>
<p>The first color (little square on the left) should be set to #B6E2FA  and the second to #78B0E9. Leave the alphas for both colors at 100%.  Leave the left color on the gradient’s left edge and move the right one a  little bit inside (just click on the quare and drag it).</p>
<p><img title="Color values for the linear gradient fill." src="http://www.flashexplained.com/img/design/emm/emm_034.gif" alt="Color values for the linear gradient fill." width="198" height="63" /></p>
<p>This gradient is just a little bit different from the one you made in  step 4.</p>
<p>35 Select the Paint bucket tool <strong>(K)</strong>,  click on the rectangle’s bottom edge and start dragging upwards to make  a vertical fill. In this way, the darker color will be at the top.</p>
<p>You don’t have to make the exact mirror copy of the sky beneath the  menu buttons. What you’re making now will look very nice and  interesting.</p>
<p><img title="The second gradient blue rectangle in place." src="http://www.flashexplained.com/img/design/emm/emm_035.gif" alt="The  second gradient blue rectangle in place." width="300" height="61" /></p>
<p>36 Select the rectangle and copy it <strong>(Ctrl+C)</strong>.  Lock the current layer (<em>blue background</em>).</p>
<p>37 Make a new layer above all the existing  ones and call it <em>overlay</em>.</p>
<p><img title="The fourth layer, above all the others." src="http://www.flashexplained.com/img/design/emm/emm_036.gif" alt="The  fourth layer, above all the others." width="220" height="92" /></p>
<p>38 Paste in place <strong>(Ctrl+Shift+V)</strong> here the rectangle you just copied.</p>
<p>39 Go back to the Color Mixer panel and  make the following gradient: you must have four color squares. Add a  color square just by clicking anywhere between the two existing ones.</p>
<p>All the squares should have their color set to pure white (#FFFFFF).  But their alphas should have the following percentage values (from left  to right): 100, 79, 50 and 28.</p>
<p>Drag the squares so that they look like shown on the image below.</p>
<p><img title="The alpha values for the linear fill in the Color Mixer  panel." src="http://www.flashexplained.com/img/design/emm/emm_037.gif" alt="The alpha values for the linear fill in the Color Mixer panel." width="205" height="63" /></p>
<p>Lock this layer.</p>
<p>Now isn’t this a nice menu with its mirror reflection below it? Sure  it is <img src="http://flashexplained.com/wp-includes/images/smilies/icon_smile.gif" alt=":)" /></p>
<p><img title="The final look of the mirrored menu." src="http://www.flashexplained.com/img/design/emm/emm_038.gif" alt="The  final look of the mirrored menu." width="511" height="94" /></p>
<p>Before making your menu functional via ActionScript, you must first  make place for the different sections of your site, which is exactly  what you will do in the next few steps. Onward!</p>
<h3>Setting up the navigation system for your Flash website</h3>
<p>40 Make a new layer on top of the existing  layers and name it <em>site content</em>.</p>
<p>41 Right-click on frame 5 of the newly made  layer and select Insert Keyframe from the menu.</p>
<p><img title="Inserting a new keyframe." src="http://www.flashexplained.com/img/design/emm/emm_039.gif" alt="Inserting a new keyframe." width="326" height="136" /></p>
<p>42 Draw any kind of content here. Paint  something with a brush, make a circle, anything at all. This is just  temporary dummy content. Don’t lose time on making real content now, you  will do it later. Follow through to the end of this lesson, it is easy  to make changes later.</p>
<p>43 Repeat the previous step 3 more times:  right-click on frames 10, 15 and 20, select Insert Keyframe from the  menu and insert some kind of dummy content there.</p>
<p>You can draw over the existing content or erase it and make something  new. I am telling you this because when you insert a keyframe into a  layer, Flash automatically copies the content from the previous one, if  there existed something.</p>
<p>44 When finished, go back to the first  keyframe of this (<em>site content</em>) layer by clicking on it  (standard left mouse click). Create some content here too. Write “home”  or draw a house <img src="http://flashexplained.com/wp-includes/images/smilies/icon_smile.gif" alt=":)" /></p>
<p>Your timeline should now look like the one shown on the image below.</p>
<p><img title="All the layers in the timeline." src="http://www.flashexplained.com/img/design/emm/emm_040.gif" alt="All  the layers in the timeline." width="376" height="126" /></p>
<p>45 Lock this layer and make a new one above  it and name it <em>labels</em>.</p>
<p>46 Click on the first (and only, so far)  keyframe of the <em>labels</em> layer to select it. Go to the Properties  panel – you’ll find the “Frame label” input field on its left side.</p>
<p>Click inside it, type <em>home</em> and hit <strong>Enter</strong> to  confirm.</p>
<p><img title="Setting a label for a keyframe." src="http://www.flashexplained.com/img/design/emm/emm_041.gif" alt="Setting a label for a keyframe." width="163" height="75" /></p>
<p>47 Still in the same layer, right-click on  frame 5 and select Insert Keyframe from the menu. Do this again for  frames 10, 15 and 20. Your upper two layers should have keyframes in  exactly the same places.</p>
<p><img title="Top two layers and their timelines." src="http://www.flashexplained.com/img/design/emm/emm_042.gif" alt="Top  two layers and their timelines." width="357" height="61" /></p>
<p>48 Click on the frame number 5 to select  it. Go again to the Properties panel and give it a name: <em>gallery</em>.  Repeat this for the remaining three keyframes (10, 15 and 20): call  them <em>music</em>, <em>links</em> and <em>contact</em>, respectively.  All these frame labels will be visible on the timeline.</p>
<p><img title="The labels appearing on the timeline." src="http://www.flashexplained.com/img/design/emm/emm_043.gif" alt="The  labels appearing on the timeline." width="239" height="41" /></p>
<p>Lock this layer.</p>
<p>49 Right-click on frame 20 of the <em>overlay</em> layer and select “Insert Frame” from the menu (<em><strong>not</strong></em> Insert Keyframe).</p>
<p><img title="Prolonging the duration of a keyframe." src="http://www.flashexplained.com/img/design/emm/emm_044.gif" alt="Prolonging the duration of a keyframe." width="426" height="84" /></p>
<p>This will make this layer’s content appear throughout your flash  site. If you don’t this, these contents will only be visible on the  first keyframe, at the beginning.</p>
<p>And of course, all the other menu elements must be visible throughout  the timeline. So make this for each of the remaining layers: <em>menu</em>,  <em>blue background</em> and <em>sky</em>.</p>
<p>Below you can see the final look of the timeline.</p>
<p><img title="The final look of the timeline." src="http://www.flashexplained.com/img/design/emm/emm_045.gif" alt="The  final look of the timeline." width="357" height="144" /></p>
<p>Now that the site’s navigation system is in place, you will name your  buttons (all of them) so that you can issue them commands  programatically later.</p>
<h3>Naming the menu buttons</h3>
<p>50 Unlock the <em>menu</em> layer. Select  the Selection tool <strong>(V)</strong>. Click somewhere on stage to  unselect anything and everything that might be selected.</p>
<p>51 Click on the first button on the menu  from the left to select it (the Home button). Don’t click it’s  reflection.Go to the Properties panel, and enter its Instance name in  the appropriate field: call it <em>homeBtn</em>. Hit <strong>Enter</strong> to confirm.</p>
<p><img title="Selecting a button from the menu and assigning it an  Instance name." src="http://www.flashexplained.com/img/design/emm/emm_046.gif" alt="Selecting a button from the menu and assigning it an Instance  name." width="304" height="55" /></p>
<p>52 Repeat the procedure from the previous  step for each one of the menu buttons: call them <em>galleryBtn</em>, <em>musicBtn</em>,  <em>linksBtn</em> and <em>contactBtn</em>, respectively.</p>
<p>The Instance names make possible to control your buttons via  ActionScript.</p>
<div>
<p>You must always give unique names to your buttons, keyframe labels  and movie clips. You can’t have two objects in your Flash movie which  have the same name. That’s why you had to call the first keyframe home and its corresponding button homeBtn.  Also, remember that ActionScript is a case-sensitive programming  language. If you called your button galleryBtn  and later typed it as gallerybtn in your  ActionScript code, your button will not function because those are two  different Instance names. So, keep track of your Instance names and  always type them in your code exactly as you have when you named your  objects.</p>
</div>
<p>53 Now, select the first mirror button –  the reflection of the home button (the first from left in the second  row). Give it an Instance name – call it <em>homeBtn1</em>.</p>
<p>Why give Instance names to these mirror buttons? Well, precisely  because their purpose is to serve only as visual elements – mirrored  reflections of real menu buttons. If you left them like this, when a  user moved his mouse over them, the hand cursor would have appeared.  This would create a really inappropriate confusion. You must always be  user-friendly! So, you are naming these mirrored buttons to turn them  off later via ActionScript. Once you are going to do that, they won’t  function anymore, and will just be graphical elements, which is what you  want to accomplish!</p>
<p>54 Give Instance names to all the other  mirrored menu buttons: call them <em>galleryBtn1</em>, <em>musicBtn1</em>,  <em>linksBtn1</em> and <em>contactBtn1</em>.</p>
<h3>Writing the ActionScript code that powers the menu and the website  navigation system</h3>
<p>55 Lock this (<em>menu</em>) layer.  Create  a new layer above all the others and call it <em>actions</em>.</p>
<p>56 Click on the first (and only) keyframe  of the new <em>actions</em> layer to select it.</p>
<p><img title="Selecting the keyframe where ActionScript will be  stationed." src="http://www.flashexplained.com/img/design/emm/emm_047.gif" alt="Selecting the keyframe where ActionScript will be stationed." width="239" height="103" /></p>
<p>57 Open up the Actions panel <strong>(Window  &gt; Actions)</strong>. Write the following line of code inside:</p>
<p>stop();</p>
<p>This simple command stops your movie from going on and looping  endlessly.</p>
<p>Now, I want you to do a little test. Test your movie <strong>(Control  &gt; Test Movie)</strong>. Move your mouse accross the buttons <em><strong>and</strong></em> their reflections (mirrored buttons). As you can see, the hand cursor  will appear over both the menu and its mirror image. And you don’t want  that, so now I am going to show you how simply it is to disable these  buttons.</p>
<p>58 Write this piece of ActionScript  just  below the first line you entered in the previous step:</p>
<p>homeBtn1.enabled = false;<br />
galleryBtn1.enabled = false;<br />
musicBtn1.enabled = false;<br />
linksBtn1.enabled = false;<br />
contactBtn1.enabled = false;</p>
<p>Test your movie again (<strong>Ctrl+Enter</strong> on a PC, <strong>Cmd+Enter</strong> on a Mac). Move your mouse over the reflection buttons. As you can see,  there’s only the standard arrow cursor now – the hand cursor doesn’t  appear anymore. You can even try clicking on them – nothing will happen.</p>
<p>Yep, it is that simple! The <code>enabled</code> property of the  button symbol can have two values: <code>true</code> or <code>false</code>.  By default, it is set to <code>true</code>. So when you set it to <code>false</code>,  the button is visible, but doesn’t function any more – it cannot be  clicked, even if you tell it to do so via ActionScript. The button stays  disabled until its enabled property is set to <code>true</code> again  (of course, you’ll leave it at <code>false</code> for the reflected  buttons).</p>
<p>59 Append your code with the following  lines (again, just put it after the existing code):</p>
<p>homeBtn.onRelease = function():Void {<br />
gotoAndStop("home");<br />
}<br />
galleryBtn.onRelease = function():Void {<br />
gotoAndStop("gallery");<br />
}<br />
musicBtn.onRelease = function():Void {<br />
gotoAndStop("music");<br />
}<br />
linksBtn.onRelease = function():Void {<br />
gotoAndStop("links");<br />
}<br />
contactBtn.onRelease = function():Void {<br />
gotoAndStop("contact");<br />
}</p>
<p>Test your movie <strong>(Ctrl+Enter)</strong>. If you did everything  exactly as i wrote up to this point, you should be able to navigate your  site. Click on the menu buttons and see for yourself! Easy navigation,  isn’t it?</p>
<h3>Explaining the ActionScript behind the site menu buttons</h3>
<p>First, I want to explain you why you named the frames. Using frame  labels (like <em>gallery</em> for example) instead of a frame number (5)  has one practical benefit:</p>
<p>If you ever change your site contents by moving the keyframes or  inserting new ones, all you have to do is move the frames with labels so  that thay stay above their corresponding content keyframes. There is no  need to go back to your ActionScript code and rewrite or change the  numbers.</p>
<p>Now let’s see how the code for the buttons works. I will explain the  code functionality just for one of the menu buttons, because they are  basically all the same – only the button Instance name and the frame  label change.</p>
<p>homeBtn.onRelease = function():Void {<br />
gotoAndStop("home");<br />
}</p>
<p>The first line,</p>
<p>homeBtn.onRelease = function():Void {</p>
<p>says that a function is assigned the <code>onRelease</code> event for  the <code>homeBtn</code> button. The <code>onRelease</code> event  happens when a user <em><strong>clicks and releases</strong></em> his  mouse over the button.</p>
<p>If you want you can put the <code>onPress</code> event here instead,  that happens immediately when a user has <em><strong>just pressed</strong></em> his mouse over the button. But that event is more likely to be used in  games, when something has to happen immediately when the mouse has been  pressed – like a spaceship shooting, for example. I like to assign the  “standard” (<code>onRelease</code>) click for the buttons, menus and  various other kinds of website interfaces.</p>
<p>So, once the <code>onRelease</code> event has happened, a function  gets executed. You certainly noticed the <code>:Void</code> keyword  after the <code>function()</code> keyword. This means that the function  in question does not return a value. In many cases, a function in  ActionScript has to return a value. Look at this example:</p>
<p>function mySum():Number {<br />
var a:Number = 3;<br />
var b:Number = 4;<br />
var sum:Number = a+b;<br />
return sum;<br />
}</p>
<p>This function calculates a sum of two variables’ values. The last  line tells to return the value of <code>sum</code> to whatever object  that called the function. So that’s why the <code>:Number</code> keyword  after the function’s name. It states that the value returned by this  particular function will be a numerical one and not a text value or any  other.</p>
<p>So, in the case of your menu button, the type of value that the  function returns is <code>Void</code>. This means nothing, zero – the  function does not return any value, it just serves to advance the  playhead to a particular frame on the timeline.</p>
<p>And just what is it that gets run when the function is executed?  Everything between its curly braces – <code>{</code> and <code>}</code>.  Here it’s about just one line of code:</p>
<p>gotoAndStop("home");</p>
<p>This line tells Flash to jump to the frame which is labelled <code>home</code> and stay there. That’s all there is! Simple! Just one more thing,  however: if you wanted to insert a frame number instead of a frame label  here, you must do it without the quotation marks. Like this:</p>
<p>gotoAndStop(1);</p>
<p>Fine. Before wrapping this tutorial up, just read some advice below.</p>
<h3>A little bit about site navigation and usability</h3>
<p>You have seen how to make a slick menu. However, always keep in mind  your site (or your client’s site) users. The user is king. If a site  happens to be difficult to navigate and counter-intuitive, the most  beautiful and appealing graphics and design won’t help.</p>
<p>In fact, what is often overlooked, is that the design inolves  thinking and responding to your users’ needs. Make a button look like a  button – this doesn’t mean it has to look ugly or too similar to a  real-world button. There many, many examples of beautifully designed  navigation interfaces and menus who are also intuitive and easy to use.</p>
<p>You know that the reflection buttons you made in this lesson are real  button symbols. The user sees them as a nice graphic element only,  which is exactly how it should be.</p>
<p>Usabilty is a science in itself, that applies equally to HTML and  Flash websites. HTML is simple, and yet there are many things you have  to think about when building such a site. When confronted with all the  powerful and rich possibilities that Flash has to offer, this just gets  more complicated. When you have a myriad of possibilites for design and  developement, don’t get overwhelmed and think that you must try and  implement every single great gizmo in your Flash website. Be nice to  your users and they’ll like your site <img src="http://flashexplained.com/wp-includes/images/smilies/icon_smile.gif" alt=":)" /></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://blog.tikier.com/tutorials/flash-tutorials/design-a-mirror-website-flash-navigation-menu/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=Design+a+mirror+website+flash+navigation+menu&amp;link=http://blog.tikier.com/tutorials/flash-tutorials/design-a-mirror-website-flash-navigation-menu&amp;notes=In%20this%20lesson%20you%20will%20see%20how%20easy%20it%20is%20to%20create%20a%20nice%20Flash%20%20website%20menu%20interface%20and%20make%20it%20work%20also%21%20Particularly%2C%20you%20will%20%20learn%20how%20to%3A%0D%0A%0D%0A%09Create%20simple%20buttons%20and%20duplicate%20them%2C%0D%0A%09Make%20your%20link%20text%20look%20crisp%20and%20readable%2C%0D%0A%09Make%20%20mirror%20copies%20of%20your%20buttons%20easily%2C%0D%0A%09Design%20a&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://www.shareaholic.com/api/share/?title=Design+a+mirror+website+flash+navigation+menu&amp;link=http://blog.tikier.com/tutorials/flash-tutorials/design-a-mirror-website-flash-navigation-menu&amp;notes=In%20this%20lesson%20you%20will%20see%20how%20easy%20it%20is%20to%20create%20a%20nice%20Flash%20%20website%20menu%20interface%20and%20make%20it%20work%20also%21%20Particularly%2C%20you%20will%20%20learn%20how%20to%3A%0D%0A%0D%0A%09Create%20simple%20buttons%20and%20duplicate%20them%2C%0D%0A%09Make%20your%20link%20text%20look%20crisp%20and%20readable%2C%0D%0A%09Make%20%20mirror%20copies%20of%20your%20buttons%20easily%2C%0D%0A%09Design%20a&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=3&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=Design+a+mirror+website+flash+navigation+menu&amp;link=http://blog.tikier.com/tutorials/flash-tutorials/design-a-mirror-website-flash-navigation-menu&amp;notes=In%20this%20lesson%20you%20will%20see%20how%20easy%20it%20is%20to%20create%20a%20nice%20Flash%20%20website%20menu%20interface%20and%20make%20it%20work%20also%21%20Particularly%2C%20you%20will%20%20learn%20how%20to%3A%0D%0A%0D%0A%09Create%20simple%20buttons%20and%20duplicate%20them%2C%0D%0A%09Make%20your%20link%20text%20look%20crisp%20and%20readable%2C%0D%0A%09Make%20%20mirror%20copies%20of%20your%20buttons%20easily%2C%0D%0A%09Design%20a&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-gmail">
			<a href="http://www.shareaholic.com/api/share/?title=Design+a+mirror+website+flash+navigation+menu&amp;link=http://blog.tikier.com/tutorials/flash-tutorials/design-a-mirror-website-flash-navigation-menu&amp;notes=In%20this%20lesson%20you%20will%20see%20how%20easy%20it%20is%20to%20create%20a%20nice%20Flash%20%20website%20menu%20interface%20and%20make%20it%20work%20also%21%20Particularly%2C%20you%20will%20%20learn%20how%20to%3A%0D%0A%0D%0A%09Create%20simple%20buttons%20and%20duplicate%20them%2C%0D%0A%09Make%20your%20link%20text%20look%20crisp%20and%20readable%2C%0D%0A%09Make%20%20mirror%20copies%20of%20your%20buttons%20easily%2C%0D%0A%09Design%20a&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=52&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.shareaholic.com/api/share/?title=Design+a+mirror+website+flash+navigation+menu&amp;link=http://blog.tikier.com/tutorials/flash-tutorials/design-a-mirror-website-flash-navigation-menu&amp;notes=In%20this%20lesson%20you%20will%20see%20how%20easy%20it%20is%20to%20create%20a%20nice%20Flash%20%20website%20menu%20interface%20and%20make%20it%20work%20also%21%20Particularly%2C%20you%20will%20%20learn%20how%20to%3A%0D%0A%0D%0A%09Create%20simple%20buttons%20and%20duplicate%20them%2C%0D%0A%09Make%20your%20link%20text%20look%20crisp%20and%20readable%2C%0D%0A%09Make%20%20mirror%20copies%20of%20your%20buttons%20easily%2C%0D%0A%09Design%20a&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=74&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=Design+a+mirror+website+flash+navigation+menu&amp;link=http://blog.tikier.com/tutorials/flash-tutorials/design-a-mirror-website-flash-navigation-menu&amp;notes=In%20this%20lesson%20you%20will%20see%20how%20easy%20it%20is%20to%20create%20a%20nice%20Flash%20%20website%20menu%20interface%20and%20make%20it%20work%20also%21%20Particularly%2C%20you%20will%20%20learn%20how%20to%3A%0D%0A%0D%0A%09Create%20simple%20buttons%20and%20duplicate%20them%2C%0D%0A%09Make%20your%20link%20text%20look%20crisp%20and%20readable%2C%0D%0A%09Make%20%20mirror%20copies%20of%20your%20buttons%20easily%2C%0D%0A%09Design%20a&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.shareaholic.com/api/share/?title=Design+a+mirror+website+flash+navigation+menu&amp;link=http://blog.tikier.com/tutorials/flash-tutorials/design-a-mirror-website-flash-navigation-menu&amp;notes=In%20this%20lesson%20you%20will%20see%20how%20easy%20it%20is%20to%20create%20a%20nice%20Flash%20%20website%20menu%20interface%20and%20make%20it%20work%20also%21%20Particularly%2C%20you%20will%20%20learn%20how%20to%3A%0D%0A%0D%0A%09Create%20simple%20buttons%20and%20duplicate%20them%2C%0D%0A%09Make%20your%20link%20text%20look%20crisp%20and%20readable%2C%0D%0A%09Make%20%20mirror%20copies%20of%20your%20buttons%20easily%2C%0D%0A%09Design%20a&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=207&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-hotmail">
			<a href="http://www.shareaholic.com/api/share/?title=Design+a+mirror+website+flash+navigation+menu&amp;link=http://blog.tikier.com/tutorials/flash-tutorials/design-a-mirror-website-flash-navigation-menu&amp;notes=In%20this%20lesson%20you%20will%20see%20how%20easy%20it%20is%20to%20create%20a%20nice%20Flash%20%20website%20menu%20interface%20and%20make%20it%20work%20also%21%20Particularly%2C%20you%20will%20%20learn%20how%20to%3A%0D%0A%0D%0A%09Create%20simple%20buttons%20and%20duplicate%20them%2C%0D%0A%09Make%20your%20link%20text%20look%20crisp%20and%20readable%2C%0D%0A%09Make%20%20mirror%20copies%20of%20your%20buttons%20easily%2C%0D%0A%09Design%20a&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=53&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this via Hotmail">Email this via Hotmail</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.shareaholic.com/api/share/?title=Design+a+mirror+website+flash+navigation+menu&amp;link=http://blog.tikier.com/tutorials/flash-tutorials/design-a-mirror-website-flash-navigation-menu&amp;notes=In%20this%20lesson%20you%20will%20see%20how%20easy%20it%20is%20to%20create%20a%20nice%20Flash%20%20website%20menu%20interface%20and%20make%20it%20work%20also%21%20Particularly%2C%20you%20will%20%20learn%20how%20to%3A%0D%0A%0D%0A%09Create%20simple%20buttons%20and%20duplicate%20them%2C%0D%0A%09Make%20your%20link%20text%20look%20crisp%20and%20readable%2C%0D%0A%09Make%20%20mirror%20copies%20of%20your%20buttons%20easily%2C%0D%0A%09Design%20a&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=39&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=Design+a+mirror+website+flash+navigation+menu&amp;link=http://blog.tikier.com/tutorials/flash-tutorials/design-a-mirror-website-flash-navigation-menu&amp;notes=In%20this%20lesson%20you%20will%20see%20how%20easy%20it%20is%20to%20create%20a%20nice%20Flash%20%20website%20menu%20interface%20and%20make%20it%20work%20also%21%20Particularly%2C%20you%20will%20%20learn%20how%20to%3A%0D%0A%0D%0A%09Create%20simple%20buttons%20and%20duplicate%20them%2C%0D%0A%09Make%20your%20link%20text%20look%20crisp%20and%20readable%2C%0D%0A%09Make%20%20mirror%20copies%20of%20your%20buttons%20easily%2C%0D%0A%09Design%20a&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=Design+a+mirror+website+flash+navigation+menu&amp;link=http://blog.tikier.com/tutorials/flash-tutorials/design-a-mirror-website-flash-navigation-menu&amp;notes=In%20this%20lesson%20you%20will%20see%20how%20easy%20it%20is%20to%20create%20a%20nice%20Flash%20%20website%20menu%20interface%20and%20make%20it%20work%20also%21%20Particularly%2C%20you%20will%20%20learn%20how%20to%3A%0D%0A%0D%0A%09Create%20simple%20buttons%20and%20duplicate%20them%2C%0D%0A%09Make%20your%20link%20text%20look%20crisp%20and%20readable%2C%0D%0A%09Make%20%20mirror%20copies%20of%20your%20buttons%20easily%2C%0D%0A%09Design%20a&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://www.shareaholic.com/api/share/?title=Design+a+mirror+website+flash+navigation+menu&amp;link=http://blog.tikier.com/tutorials/flash-tutorials/design-a-mirror-website-flash-navigation-menu&amp;notes=In%20this%20lesson%20you%20will%20see%20how%20easy%20it%20is%20to%20create%20a%20nice%20Flash%20%20website%20menu%20interface%20and%20make%20it%20work%20also%21%20Particularly%2C%20you%20will%20%20learn%20how%20to%3A%0D%0A%0D%0A%09Create%20simple%20buttons%20and%20duplicate%20them%2C%0D%0A%09Make%20your%20link%20text%20look%20crisp%20and%20readable%2C%0D%0A%09Make%20%20mirror%20copies%20of%20your%20buttons%20easily%2C%0D%0A%09Design%20a&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=10&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=Design+a+mirror+website+flash+navigation+menu&amp;link=http://blog.tikier.com/tutorials/flash-tutorials/design-a-mirror-website-flash-navigation-menu&amp;notes=In%20this%20lesson%20you%20will%20see%20how%20easy%20it%20is%20to%20create%20a%20nice%20Flash%20%20website%20menu%20interface%20and%20make%20it%20work%20also%21%20Particularly%2C%20you%20will%20%20learn%20how%20to%3A%0D%0A%0D%0A%09Create%20simple%20buttons%20and%20duplicate%20them%2C%0D%0A%09Make%20your%20link%20text%20look%20crisp%20and%20readable%2C%0D%0A%09Make%20%20mirror%20copies%20of%20your%20buttons%20easily%2C%0D%0A%09Design%20a&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.shareaholic.com/api/share/?title=Design+a+mirror+website+flash+navigation+menu&amp;link=http://blog.tikier.com/tutorials/flash-tutorials/design-a-mirror-website-flash-navigation-menu&amp;notes=In%20this%20lesson%20you%20will%20see%20how%20easy%20it%20is%20to%20create%20a%20nice%20Flash%20%20website%20menu%20interface%20and%20make%20it%20work%20also%21%20Particularly%2C%20you%20will%20%20learn%20how%20to%3A%0D%0A%0D%0A%09Create%20simple%20buttons%20and%20duplicate%20them%2C%0D%0A%09Make%20your%20link%20text%20look%20crisp%20and%20readable%2C%0D%0A%09Make%20%20mirror%20copies%20of%20your%20buttons%20easily%2C%0D%0A%09Design%20a&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=24&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.shareaholic.com/api/share/?title=Design+a+mirror+website+flash+navigation+menu&amp;link=http://blog.tikier.com/tutorials/flash-tutorials/design-a-mirror-website-flash-navigation-menu&amp;notes=In%20this%20lesson%20you%20will%20see%20how%20easy%20it%20is%20to%20create%20a%20nice%20Flash%20%20website%20menu%20interface%20and%20make%20it%20work%20also%21%20Particularly%2C%20you%20will%20%20learn%20how%20to%3A%0D%0A%0D%0A%09Create%20simple%20buttons%20and%20duplicate%20them%2C%0D%0A%09Make%20your%20link%20text%20look%20crisp%20and%20readable%2C%0D%0A%09Make%20%20mirror%20copies%20of%20your%20buttons%20easily%2C%0D%0A%09Design%20a&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=43&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
</ul><div style="clear: both;"></div></div>




<p>Related posts:<ol><li><a href='http://blog.tikier.com/tutorials/flash-tutorials/glowing-neon-playback-control-buttons' rel='bookmark' title='Permanent Link: Glowing neon playback control buttons'>Glowing neon playback control buttons</a></li>
<li><a href='http://blog.tikier.com/tutorials/flash-tutorials/how-to-make-a-complete-flash-website-navigation-system-with-a-built-in-preloader-for-external-content' rel='bookmark' title='Permanent Link: How to make a complete Flash website navigation system with a built-in preloader for external content'>How to make a complete Flash website navigation system with a built-in preloader for external content</a></li>
<li><a href='http://blog.tikier.com/tutorials/flash-tutorials/glowing-neon-playback-control-buttons-2' rel='bookmark' title='Permanent Link: Glowing neon playback control buttons'>Glowing neon playback control buttons</a></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.tikier.com/tutorials/flash-tutorials/design-a-mirror-website-flash-navigation-menu/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Fonts and Texts</title>
		<link>http://blog.tikier.com/tutorials/css/css-fonts-and-texts</link>
		<comments>http://blog.tikier.com/tutorials/css/css-fonts-and-texts#comments</comments>
		<pubDate>Mon, 08 Mar 2010 15:17:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[color rgb]]></category>
		<category><![CDATA[family alternatives]]></category>
		<category><![CDATA[font]]></category>
		<category><![CDATA[font style]]></category>
		<category><![CDATA[hexadecimal number]]></category>
		<category><![CDATA[length]]></category>
		<category><![CDATA[Output]]></category>
		<category><![CDATA[output font]]></category>
		<category><![CDATA[Paragraph]]></category>
		<category><![CDATA[rgb color]]></category>
		<category><![CDATA[s system]]></category>
		<category><![CDATA[Sample]]></category>
		<category><![CDATA[small caps]]></category>
		<category><![CDATA[style]]></category>
		<category><![CDATA[style font]]></category>
		<category><![CDATA[text]]></category>
		<category><![CDATA[text direction]]></category>
		<category><![CDATA[value]]></category>
		<category><![CDATA[Values]]></category>

		<guid isPermaLink="false">http://blog.tikier.com/?p=265</guid>
		<description><![CDATA[You can define the font-style, font-weight, font-variant, font-size and font-family all at once. Value: font-style, font-weight, font-variant, font-size and font-family &#60;p style="font: italic bold 20px Verdana;"&#62;Sample Text&#60;/p&#62; Output: font-family You can choose which font family to use. You can put other font-family alternatives just in case the first font-family is not available in the user’s [...]


Related posts:<ol><li><a href='http://blog.tikier.com/tutorials/css/internet-explorer-css-bug-fixes' rel='bookmark' title='Permanent Link: Internet Explorer CSS bug fixes'>Internet Explorer CSS bug fixes</a></li>
<li><a href='http://blog.tikier.com/tutorials/css/two-column-layout-using-pure-css-and-divider-image' rel='bookmark' title='Permanent Link: Two column layout using pure css and divider image'>Two column layout using pure css and divider image</a></li>
<li><a href='http://blog.tikier.com/tutorials/css/css-borders' rel='bookmark' title='Permanent Link: CSS borders'>CSS borders</a></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_brick-red" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fblog.tikier.com%252Ftutorials%252Fcss%252Fcss-fonts-and-texts%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22CSS%20Fonts%20and%20Texts%22%20%7D);"></div>
<p>You  can define the font-style, font-weight, font-variant, font-size and  font-family all at once.</p>
<p><span style="color: #008000;">Value:  font-style, font-weight, font-variant, font-size and font-family</span></p>
<p>&lt;p <span style="color: #ff9900;">style="font: italic bold 20px Verdana;</span>"&gt;Sample  Text&lt;/p&gt;</p>
<p><span id="more-265"></span></p>
<p>Output:<br />
<a href="http://blog.tikier.com/wp-content/uploads/2010/03/01-font.gif"><img class="alignnone size-full wp-image-266" title="01-font" src="http://blog.tikier.com/wp-content/uploads/2010/03/01-font.gif" alt="" width="164" height="30" /></a></p>
<p><strong>font-family</strong><br />
You can choose which  font family to use. You can put other font-family alternatives just in  case the first font-family is not available in the user’s system. In our  example below, if Arial is not available in the user’s system fonts,  then it will use Helvetica . You can use many other generic fonts. They  will be prioritized according to their order.</p>
<p><span style="color: #008000;">Value: font name</span></p>
<p>&lt;p <span style="color: #ff6600;">style="font-family: Arial, Helvetica</span>"&gt;Sample  Text&lt;/p&gt;</p>
<p>Output:<br />
<a target="_blank" href="http://4.bp.blogspot.com/_4iDNB8o1a9s/Rn4ple5qgfI/AAAAAAAAAQw/6Igj9RI4S68/s1600-h/02-font-family.gif"></a><img class="alignnone size-full wp-image-267" title="02-font-family" src="http://blog.tikier.com/wp-content/uploads/2010/03/02-font-family.gif" alt="" width="112" height="30" /></p>
<p><strong>font-size </strong><br />
used for setting the  size of the font</p>
<p>Possible Values:<br />
<span style="color: #008000;">xx-small<br />
x-small<br />
small<br />
medium<br />
large<br />
x-large<br />
xx-large<br />
smaller<br />
larger<em><br />
</em>length<em><br />
</em>percentage</span></p>
<p>&lt;p <span style="color: #ff6600;">style="font-size: large;"</span>&gt;Sample  Text&lt;/p&gt;</p>
<p>Output:<br />
<a target="_blank" href="http://3.bp.blogspot.com/_4iDNB8o1a9s/Rn4pxO5qggI/AAAAAAAAAQ4/_05cdoEMvPw/s1600-h/03-font-size.gif"></a><img class="alignnone size-full wp-image-268" title="03-font-size" src="http://blog.tikier.com/wp-content/uploads/2010/03/03-font-size.gif" alt="" width="114" height="30" /></p>
<p><strong>font-style </strong><br />
Used for setting the  style of the font</p>
<p><span style="color: #008000;">Value:  normal, italic, oblique</span></p>
<p>&lt;p  <span style="color: #ff6600;">style="font-style: italic;</span>"&gt;Sample  Text&lt;/p&gt;</p>
<p>Output:<br />
<a target="_blank" href="http://3.bp.blogspot.com/_4iDNB8o1a9s/Rn4p8O5qghI/AAAAAAAAARA/u3YI6txzgFY/s1600-h/04-font-style.gif"></a><img class="alignnone size-full wp-image-269" title="04-font-style" src="http://blog.tikier.com/wp-content/uploads/2010/03/04-font-style.gif" alt="" width="97" height="30" /></p>
<p><strong>font-variant </strong><br />
Used for setting  fonts to small caps or in normal format</p>
<p><span style="color: #008000;">Possible  Values: normal, small-caps</span></p>
<p>&lt;p <span style="color: #ff6600;">style="font-variant: small-caps;</span>"&gt;Sample Text&lt;/p&gt;</p>
<p>Output:<br />
<a target="_blank" href="http://1.bp.blogspot.com/_4iDNB8o1a9s/Rn4qBu5qgiI/AAAAAAAAARI/zRc-oqRWqfA/s1600-h/05-font-variant.gif"></a><img class="alignnone size-full wp-image-270" title="05-font-variant" src="http://blog.tikier.com/wp-content/uploads/2010/03/05-font-variant.gif" alt="" width="111" height="30" /></p>
<p><strong>font-weight </strong><br />
Used for setting the  weight of the font</p>
<p>Possible Values:<br />
<span style="color: #008000;">normal<br />
bold<br />
bolder<br />
lighter<br />
100<br />
200<br />
300<br />
400<br />
500<br />
600<br />
700<br />
800<br />
900</span></p>
<p>&lt;p  <span style="color: #ff6600;">style="font-weight: bold;</span>"&gt;Sample  Text&lt;/p&gt;</p>
<p>Output:<br />
<a target="_blank" href="http://3.bp.blogspot.com/_4iDNB8o1a9s/Rn4qJO5qgjI/AAAAAAAAARQ/-EjOCC18ufo/s1600-h/06-font-weight.gif"></a><img class="alignnone size-full wp-image-271" title="06-font-weight" src="http://blog.tikier.com/wp-content/uploads/2010/03/06-font-weight.gif" alt="" width="104" height="30" /></p>
<p><strong>color </strong><br />
Used for setting the  color of a text. The color value may be a color name: (blue, red, etc.),  a hexadecimal number:(#ff00ff, #333443) or an RGB color:  (rgb(255,255,000), rgb 122,234,123).</p>
<p><span style="color: #008000;">Value: color</span></p>
<p>&lt;p  <span style="color: #ff6600;">style="color: red;"</span>&gt;Sample  Text&lt;/p&gt;</p>
<p>Output:<br />
<a target="_blank" href="http://3.bp.blogspot.com/_4iDNB8o1a9s/Rn4qUO5qgkI/AAAAAAAAARY/GLV45yb5e04/s1600-h/07-color.gif"></a><img class="alignnone size-full wp-image-272" title="07-color" src="http://blog.tikier.com/wp-content/uploads/2010/03/07-color.gif" alt="" width="99" height="30" /></p>
<p><strong>direction </strong><br />
Used for setting the text  direction</p>
<p><span style="color: #008000;">Possible Values: ltr, rtl</span></p>
<p>ltr (left to right) default<br />
rtl (right to left)</p>
<p>&lt;p <span style="color: #ff6600;"> style="direction: rtl;</span>"&gt;Sample  Text Sample Text2 Sample Text3&lt;/p&gt;</p>
<p>Output:<br />
<a target="_blank" href="http://2.bp.blogspot.com/_4iDNB8o1a9s/Rn4q7-5qgnI/AAAAAAAAARw/KPTFczE1b9o/s1600-h/08-direction.gif"></a><img class="alignnone size-full wp-image-273" title="08-direction" src="http://blog.tikier.com/wp-content/uploads/2010/03/08-direction.gif" alt="" width="274" height="66" /></p>
<p><strong><br />
line-height</strong></p>
<p>Used for setting the spacing between lines.</p>
<p>Possible Values:<br />
<span style="color: #008000;">normal<br />
number<em><br />
</em>length<em><br />
</em>percentage</span></p>
<p>&lt;p <span style="color: #ff6600;">style="line-height: 30px;</span>"&gt;<br />
Sample  Paragraph Sample Paragraph Sample Paragraph Sample Paragraph Sample  Paragraph Sample Paragraph Sample Paragraph Sample Paragraph Sample  Paragraph Sample Paragraph Sample Paragraph Sample Paragraph<br />
&lt;/p&gt;</p>
<p>Output:<br />
<a href="http://blog.tikier.com/wp-content/uploads/2010/03/09-line-height.png"><img class="alignnone size-full wp-image-274" title="09-line-height" src="http://blog.tikier.com/wp-content/uploads/2010/03/09-line-height.png" alt="" width="400" height="81" /></a></p>
<p><strong>letter-spacing </strong></p>
<p>Used for adjusting the space between letters<strong> </strong></p>
<p>Possible Values:  <span style="color: #008000;">normal, length</span><br />
<em> </em></p>
<p>&lt;p <span style="color: #ff6600;">style="letter-spacing: 5px;</span>"&gt;Sample  Text&lt;/p&gt;</p>
<p>Output:<br />
<a target="_blank" href="http://3.bp.blogspot.com/_4iDNB8o1a9s/Rn4rHO5qgoI/AAAAAAAAAR4/_z8jV9EBgRA/s1600-h/10-letter-spacing.gif"></a><img class="alignnone size-full wp-image-275" title="10-letter-spacing" src="http://blog.tikier.com/wp-content/uploads/2010/03/10-letter-spacing.gif" alt="" width="150" height="30" /></p>
<p><strong>text-align </strong></p>
<p>Used for setting the text  alignment</p>
<p>Possible  Values:<br />
<span style="color: #008000;">left<br />
right<br />
center<br />
justify</span></p>
<p>&lt;p  s<span style="color: #ff6600;">tyle="text-align: center;</span>"&gt;<br />
Sample  Paragraph Sample Paragraph<br />
Sample Paragraph Sample Paragraph Sample  Paragraph<br />
Sample Paragraph Sample Paragraph Sample Paragraph<br />
&lt;/p&gt;<br />
&lt;p  <span style="color: #ff6600;">style="text-align: justify;</span>"&gt;<br />
Sample  Paragraph Sample Paragraph<br />
Sample Paragraph Sample Paragraph<br />
Sample  Paragraph Sample Paragraph<br />
&lt;/p&gt;<br />
&lt;p <span style="color: #ff6600;">style="text-align: left;</span>"&gt;<br />
Sample  Paragraph Sample Paragraph<br />
Sample Paragraph Sample Paragraph<br />
Sample  Paragraph Sample Paragraph<br />
&lt;/p&gt;<br />
&lt;p <span style="color: #ff6600;">style="text-align: right;</span>"&gt;<br />
Sample  Paragraph Sample Paragraph<br />
Sample Paragraph Sample Paragraph<br />
Sample  Paragraph Sample Paragraph<br />
&lt;/p&gt;</p>
<p>Output:<br />
<img class="alignnone size-full wp-image-277" title="11-text-align" src="http://blog.tikier.com/wp-content/uploads/2010/03/11-text-align.gif" alt="" width="321" height="329" /></p>
<p><strong>text-decoration </strong></p>
<p>Used for adding decoration  to texts</p>
<p>Possible  Values:<br />
<span style="color: #008000;">none<br />
underline<br />
overline<br />
line-through<br />
blink</span></p>
<p>&lt;p <span style="color: #ff6600;"> style="text-decoration:  line-through;</span>"&gt;Sample Text&lt;/p&gt;</p>
<p>Output:<br />
<a target="_blank" href="http://4.bp.blogspot.com/_4iDNB8o1a9s/Rn4sie5qgqI/AAAAAAAAASI/2R4mXTR0MNc/s1600-h/12-text-decoration.gif"></a><img class="alignnone size-full wp-image-278" title="12-text-decoration" src="http://blog.tikier.com/wp-content/uploads/2010/03/12-text-decoration.gif" alt="" width="94" height="30" /></p>
<p><strong>text-indent </strong><br />
Used for indenting  the first line of a text</p>
<p>Possible Values: <span style="color: #008000;">length, percentage</span><br />
<em></em></p>
<p>&lt;p  <span style="color: #ff6600;">style="text-indent: 20px;</span>"&gt;<br />
Sample  Paragraph Sample Paragraph<br />
Sample Paragraph Sample Paragraph<br />
Sample  Paragraph Sample Paragraph<br />
&lt;/p&gt;<br />
Output:<br />
<a target="_blank" href="http://4.bp.blogspot.com/_4iDNB8o1a9s/Rn4s8e5qgrI/AAAAAAAAASQ/HjZclIayA-0/s1600-h/13-text-indent.gif"></a><img class="alignnone size-full wp-image-279" title="13-text-indent" src="http://blog.tikier.com/wp-content/uploads/2010/03/13-text-indent.gif" alt="" width="305" height="66" /></p>
<p><strong>text-transform </strong></p>
<p>Used for controlling text  display</p>
<p>Possible Values:<br />
<span style="color: #008000;">none<br />
capitalize<br />
uppercase<br />
lowercase</span></p>
<p>&lt;p <span style="color: #ff6600;">style="text-transform: uppercase;</span>"&gt;Sample  Text&lt;/p&gt;</p>
<p>Output:<br />
<a target="_blank" href="http://3.bp.blogspot.com/_4iDNB8o1a9s/Rn4tbO5qgsI/AAAAAAAAASY/b8d7XbkmIGc/s1600-h/14-text-transform.gif"></a><img class="alignnone size-full wp-image-280" title="14-text-transform" src="http://blog.tikier.com/wp-content/uploads/2010/03/14-text-transform.gif" alt="" width="124" height="30" /></p>
<p><strong>white-space </strong></p>
<p>Used for controlling  white spaces</p>
<p>Possible Values:<br />
<span style="color: #008000;">normal<br />
pre<br />
nowrap</span></p>
<p>&lt;p <span style="color: #ff6600;">style="white-space: pre;</span>"&gt;<br />
Sample  Text<br />
Sample Text Sample<br />
Text Sample Text Sample Text&lt;/p&gt;</p>
<p>Output:<br />
<a target="_blank" href="http://4.bp.blogspot.com/_4iDNB8o1a9s/Rn4toe5qgtI/AAAAAAAAASg/uqPP5KUCyus/s1600-h/15-white-space.gif"></a><img class="alignnone size-full wp-image-281" title="15-white-space" src="http://blog.tikier.com/wp-content/uploads/2010/03/15-white-space.gif" alt="" width="205" height="69" /></p>
<p><strong>word-spacing </strong></p>
<p>Used to control the  spacing between words</p>
<p>Possible Values: <span style="color: #008000;">normal  length</span></p>
<p>&lt;p <span style="color: #ff6600;">style="word-spacing: 10px;</span>"&gt;Sample  Text Sample Text&lt;/p&gt;</p>
<p>Output:<br />
<a target="_blank" href="http://4.bp.blogspot.com/_4iDNB8o1a9s/Rn4t0e5qguI/AAAAAAAAASo/Qe9AYlgCvbQ/s1600-h/16-word-spacing.gif"></a><img class="alignnone size-full wp-image-282" title="16-word-spacing" src="http://blog.tikier.com/wp-content/uploads/2010/03/16-word-spacing.gif" alt="" width="209" height="30" /></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://blog.tikier.com/tutorials/css/css-fonts-and-texts/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=CSS+Fonts+and+Texts&amp;link=http://blog.tikier.com/tutorials/css/css-fonts-and-texts&amp;notes=You%20%20can%20define%20the%20font-style%2C%20font-weight%2C%20font-variant%2C%20font-size%20and%20%20font-family%20all%20at%20once.%0D%0A%0D%0AValue%3A%20%20font-style%2C%20font-weight%2C%20font-variant%2C%20font-size%20and%20font-family%0D%0A%0D%0A%26lt%3Bp%20style%3D%22font%3A%20italic%20bold%2020px%20Verdana%3B%22%26gt%3BSample%20%20Text%26lt%3B%2Fp%26gt%3B%0D%0A%0D%0A%0D%0A%0D%0AOutput%3A%0D%0A%0D%0A%0D%0Afont-family%0D%0AYou%20can%20choose%20wh&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://www.shareaholic.com/api/share/?title=CSS+Fonts+and+Texts&amp;link=http://blog.tikier.com/tutorials/css/css-fonts-and-texts&amp;notes=You%20%20can%20define%20the%20font-style%2C%20font-weight%2C%20font-variant%2C%20font-size%20and%20%20font-family%20all%20at%20once.%0D%0A%0D%0AValue%3A%20%20font-style%2C%20font-weight%2C%20font-variant%2C%20font-size%20and%20font-family%0D%0A%0D%0A%26lt%3Bp%20style%3D%22font%3A%20italic%20bold%2020px%20Verdana%3B%22%26gt%3BSample%20%20Text%26lt%3B%2Fp%26gt%3B%0D%0A%0D%0A%0D%0A%0D%0AOutput%3A%0D%0A%0D%0A%0D%0Afont-family%0D%0AYou%20can%20choose%20wh&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=3&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=CSS+Fonts+and+Texts&amp;link=http://blog.tikier.com/tutorials/css/css-fonts-and-texts&amp;notes=You%20%20can%20define%20the%20font-style%2C%20font-weight%2C%20font-variant%2C%20font-size%20and%20%20font-family%20all%20at%20once.%0D%0A%0D%0AValue%3A%20%20font-style%2C%20font-weight%2C%20font-variant%2C%20font-size%20and%20font-family%0D%0A%0D%0A%26lt%3Bp%20style%3D%22font%3A%20italic%20bold%2020px%20Verdana%3B%22%26gt%3BSample%20%20Text%26lt%3B%2Fp%26gt%3B%0D%0A%0D%0A%0D%0A%0D%0AOutput%3A%0D%0A%0D%0A%0D%0Afont-family%0D%0AYou%20can%20choose%20wh&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-gmail">
			<a href="http://www.shareaholic.com/api/share/?title=CSS+Fonts+and+Texts&amp;link=http://blog.tikier.com/tutorials/css/css-fonts-and-texts&amp;notes=You%20%20can%20define%20the%20font-style%2C%20font-weight%2C%20font-variant%2C%20font-size%20and%20%20font-family%20all%20at%20once.%0D%0A%0D%0AValue%3A%20%20font-style%2C%20font-weight%2C%20font-variant%2C%20font-size%20and%20font-family%0D%0A%0D%0A%26lt%3Bp%20style%3D%22font%3A%20italic%20bold%2020px%20Verdana%3B%22%26gt%3BSample%20%20Text%26lt%3B%2Fp%26gt%3B%0D%0A%0D%0A%0D%0A%0D%0AOutput%3A%0D%0A%0D%0A%0D%0Afont-family%0D%0AYou%20can%20choose%20wh&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=52&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.shareaholic.com/api/share/?title=CSS+Fonts+and+Texts&amp;link=http://blog.tikier.com/tutorials/css/css-fonts-and-texts&amp;notes=You%20%20can%20define%20the%20font-style%2C%20font-weight%2C%20font-variant%2C%20font-size%20and%20%20font-family%20all%20at%20once.%0D%0A%0D%0AValue%3A%20%20font-style%2C%20font-weight%2C%20font-variant%2C%20font-size%20and%20font-family%0D%0A%0D%0A%26lt%3Bp%20style%3D%22font%3A%20italic%20bold%2020px%20Verdana%3B%22%26gt%3BSample%20%20Text%26lt%3B%2Fp%26gt%3B%0D%0A%0D%0A%0D%0A%0D%0AOutput%3A%0D%0A%0D%0A%0D%0Afont-family%0D%0AYou%20can%20choose%20wh&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=74&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=CSS+Fonts+and+Texts&amp;link=http://blog.tikier.com/tutorials/css/css-fonts-and-texts&amp;notes=You%20%20can%20define%20the%20font-style%2C%20font-weight%2C%20font-variant%2C%20font-size%20and%20%20font-family%20all%20at%20once.%0D%0A%0D%0AValue%3A%20%20font-style%2C%20font-weight%2C%20font-variant%2C%20font-size%20and%20font-family%0D%0A%0D%0A%26lt%3Bp%20style%3D%22font%3A%20italic%20bold%2020px%20Verdana%3B%22%26gt%3BSample%20%20Text%26lt%3B%2Fp%26gt%3B%0D%0A%0D%0A%0D%0A%0D%0AOutput%3A%0D%0A%0D%0A%0D%0Afont-family%0D%0AYou%20can%20choose%20wh&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.shareaholic.com/api/share/?title=CSS+Fonts+and+Texts&amp;link=http://blog.tikier.com/tutorials/css/css-fonts-and-texts&amp;notes=You%20%20can%20define%20the%20font-style%2C%20font-weight%2C%20font-variant%2C%20font-size%20and%20%20font-family%20all%20at%20once.%0D%0A%0D%0AValue%3A%20%20font-style%2C%20font-weight%2C%20font-variant%2C%20font-size%20and%20font-family%0D%0A%0D%0A%26lt%3Bp%20style%3D%22font%3A%20italic%20bold%2020px%20Verdana%3B%22%26gt%3BSample%20%20Text%26lt%3B%2Fp%26gt%3B%0D%0A%0D%0A%0D%0A%0D%0AOutput%3A%0D%0A%0D%0A%0D%0Afont-family%0D%0AYou%20can%20choose%20wh&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=207&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-hotmail">
			<a href="http://www.shareaholic.com/api/share/?title=CSS+Fonts+and+Texts&amp;link=http://blog.tikier.com/tutorials/css/css-fonts-and-texts&amp;notes=You%20%20can%20define%20the%20font-style%2C%20font-weight%2C%20font-variant%2C%20font-size%20and%20%20font-family%20all%20at%20once.%0D%0A%0D%0AValue%3A%20%20font-style%2C%20font-weight%2C%20font-variant%2C%20font-size%20and%20font-family%0D%0A%0D%0A%26lt%3Bp%20style%3D%22font%3A%20italic%20bold%2020px%20Verdana%3B%22%26gt%3BSample%20%20Text%26lt%3B%2Fp%26gt%3B%0D%0A%0D%0A%0D%0A%0D%0AOutput%3A%0D%0A%0D%0A%0D%0Afont-family%0D%0AYou%20can%20choose%20wh&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=53&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this via Hotmail">Email this via Hotmail</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.shareaholic.com/api/share/?title=CSS+Fonts+and+Texts&amp;link=http://blog.tikier.com/tutorials/css/css-fonts-and-texts&amp;notes=You%20%20can%20define%20the%20font-style%2C%20font-weight%2C%20font-variant%2C%20font-size%20and%20%20font-family%20all%20at%20once.%0D%0A%0D%0AValue%3A%20%20font-style%2C%20font-weight%2C%20font-variant%2C%20font-size%20and%20font-family%0D%0A%0D%0A%26lt%3Bp%20style%3D%22font%3A%20italic%20bold%2020px%20Verdana%3B%22%26gt%3BSample%20%20Text%26lt%3B%2Fp%26gt%3B%0D%0A%0D%0A%0D%0A%0D%0AOutput%3A%0D%0A%0D%0A%0D%0Afont-family%0D%0AYou%20can%20choose%20wh&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=39&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=CSS+Fonts+and+Texts&amp;link=http://blog.tikier.com/tutorials/css/css-fonts-and-texts&amp;notes=You%20%20can%20define%20the%20font-style%2C%20font-weight%2C%20font-variant%2C%20font-size%20and%20%20font-family%20all%20at%20once.%0D%0A%0D%0AValue%3A%20%20font-style%2C%20font-weight%2C%20font-variant%2C%20font-size%20and%20font-family%0D%0A%0D%0A%26lt%3Bp%20style%3D%22font%3A%20italic%20bold%2020px%20Verdana%3B%22%26gt%3BSample%20%20Text%26lt%3B%2Fp%26gt%3B%0D%0A%0D%0A%0D%0A%0D%0AOutput%3A%0D%0A%0D%0A%0D%0Afont-family%0D%0AYou%20can%20choose%20wh&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=CSS+Fonts+and+Texts&amp;link=http://blog.tikier.com/tutorials/css/css-fonts-and-texts&amp;notes=You%20%20can%20define%20the%20font-style%2C%20font-weight%2C%20font-variant%2C%20font-size%20and%20%20font-family%20all%20at%20once.%0D%0A%0D%0AValue%3A%20%20font-style%2C%20font-weight%2C%20font-variant%2C%20font-size%20and%20font-family%0D%0A%0D%0A%26lt%3Bp%20style%3D%22font%3A%20italic%20bold%2020px%20Verdana%3B%22%26gt%3BSample%20%20Text%26lt%3B%2Fp%26gt%3B%0D%0A%0D%0A%0D%0A%0D%0AOutput%3A%0D%0A%0D%0A%0D%0Afont-family%0D%0AYou%20can%20choose%20wh&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://www.shareaholic.com/api/share/?title=CSS+Fonts+and+Texts&amp;link=http://blog.tikier.com/tutorials/css/css-fonts-and-texts&amp;notes=You%20%20can%20define%20the%20font-style%2C%20font-weight%2C%20font-variant%2C%20font-size%20and%20%20font-family%20all%20at%20once.%0D%0A%0D%0AValue%3A%20%20font-style%2C%20font-weight%2C%20font-variant%2C%20font-size%20and%20font-family%0D%0A%0D%0A%26lt%3Bp%20style%3D%22font%3A%20italic%20bold%2020px%20Verdana%3B%22%26gt%3BSample%20%20Text%26lt%3B%2Fp%26gt%3B%0D%0A%0D%0A%0D%0A%0D%0AOutput%3A%0D%0A%0D%0A%0D%0Afont-family%0D%0AYou%20can%20choose%20wh&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=10&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=CSS+Fonts+and+Texts&amp;link=http://blog.tikier.com/tutorials/css/css-fonts-and-texts&amp;notes=You%20%20can%20define%20the%20font-style%2C%20font-weight%2C%20font-variant%2C%20font-size%20and%20%20font-family%20all%20at%20once.%0D%0A%0D%0AValue%3A%20%20font-style%2C%20font-weight%2C%20font-variant%2C%20font-size%20and%20font-family%0D%0A%0D%0A%26lt%3Bp%20style%3D%22font%3A%20italic%20bold%2020px%20Verdana%3B%22%26gt%3BSample%20%20Text%26lt%3B%2Fp%26gt%3B%0D%0A%0D%0A%0D%0A%0D%0AOutput%3A%0D%0A%0D%0A%0D%0Afont-family%0D%0AYou%20can%20choose%20wh&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.shareaholic.com/api/share/?title=CSS+Fonts+and+Texts&amp;link=http://blog.tikier.com/tutorials/css/css-fonts-and-texts&amp;notes=You%20%20can%20define%20the%20font-style%2C%20font-weight%2C%20font-variant%2C%20font-size%20and%20%20font-family%20all%20at%20once.%0D%0A%0D%0AValue%3A%20%20font-style%2C%20font-weight%2C%20font-variant%2C%20font-size%20and%20font-family%0D%0A%0D%0A%26lt%3Bp%20style%3D%22font%3A%20italic%20bold%2020px%20Verdana%3B%22%26gt%3BSample%20%20Text%26lt%3B%2Fp%26gt%3B%0D%0A%0D%0A%0D%0A%0D%0AOutput%3A%0D%0A%0D%0A%0D%0Afont-family%0D%0AYou%20can%20choose%20wh&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=24&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.shareaholic.com/api/share/?title=CSS+Fonts+and+Texts&amp;link=http://blog.tikier.com/tutorials/css/css-fonts-and-texts&amp;notes=You%20%20can%20define%20the%20font-style%2C%20font-weight%2C%20font-variant%2C%20font-size%20and%20%20font-family%20all%20at%20once.%0D%0A%0D%0AValue%3A%20%20font-style%2C%20font-weight%2C%20font-variant%2C%20font-size%20and%20font-family%0D%0A%0D%0A%26lt%3Bp%20style%3D%22font%3A%20italic%20bold%2020px%20Verdana%3B%22%26gt%3BSample%20%20Text%26lt%3B%2Fp%26gt%3B%0D%0A%0D%0A%0D%0A%0D%0AOutput%3A%0D%0A%0D%0A%0D%0Afont-family%0D%0AYou%20can%20choose%20wh&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=43&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
</ul><div style="clear: both;"></div></div>




<p>Related posts:<ol><li><a href='http://blog.tikier.com/tutorials/css/internet-explorer-css-bug-fixes' rel='bookmark' title='Permanent Link: Internet Explorer CSS bug fixes'>Internet Explorer CSS bug fixes</a></li>
<li><a href='http://blog.tikier.com/tutorials/css/two-column-layout-using-pure-css-and-divider-image' rel='bookmark' title='Permanent Link: Two column layout using pure css and divider image'>Two column layout using pure css and divider image</a></li>
<li><a href='http://blog.tikier.com/tutorials/css/css-borders' rel='bookmark' title='Permanent Link: CSS borders'>CSS borders</a></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.tikier.com/tutorials/css/css-fonts-and-texts/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Two column layout using pure css and divider image</title>
		<link>http://blog.tikier.com/tutorials/css/two-column-layout-using-pure-css-and-divider-image</link>
		<comments>http://blog.tikier.com/tutorials/css/two-column-layout-using-pure-css-and-divider-image#comments</comments>
		<pubDate>Sun, 07 Mar 2010 21:15:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[auto]]></category>
		<category><![CDATA[body margin]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[column]]></category>
		<category><![CDATA[css layout]]></category>
		<category><![CDATA[div]]></category>
		<category><![CDATA[div id]]></category>
		<category><![CDATA[footer]]></category>
		<category><![CDATA[left border]]></category>
		<category><![CDATA[left column]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[margin]]></category>
		<category><![CDATA[nav]]></category>
		<category><![CDATA[open style]]></category>
		<category><![CDATA[padding]]></category>
		<category><![CDATA[sans serif font]]></category>
		<category><![CDATA[style sheet]]></category>
		<category><![CDATA[table layout]]></category>
		<category><![CDATA[vertical line]]></category>
		<category><![CDATA[width]]></category>

		<guid isPermaLink="false">http://blog.tikier.com/?p=256</guid>
		<description><![CDATA[Some time ago I was trying to figure out how to create two column css layout where left column will be divided from the right one with a vertical line. It would be simple when you are trying to use a table layout - simply apply a left border to the right column and done, [...]


Related posts:<ol><li><a href='http://blog.tikier.com/tutorials/html-tutorials/2-column-layout' rel='bookmark' title='Permanent Link: 2 Column Layout'>2 Column Layout</a></li>
<li><a href='http://blog.tikier.com/tutorials/css/css-layout-technique-%e2%80%93-achieving-100-height' rel='bookmark' title='Permanent Link: CSS Layout Technique – Achieving 100% Height'>CSS Layout Technique – Achieving 100% Height</a></li>
<li><a href='http://blog.tikier.com/tutorials/css/css-shortcuts' rel='bookmark' title='Permanent Link: CSS Shortcuts'>CSS Shortcuts</a></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_brick-red" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fblog.tikier.com%252Ftutorials%252Fcss%252Ftwo-column-layout-using-pure-css-and-divider-image%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22Two%20column%20layout%20using%20pure%20css%20and%20divider%20image%22%20%7D);"></div>
<p>Some time ago I was trying to figure out how to create two column css  layout where left column will be divided from the right one with a  vertical line.<br />
It would be simple when you are trying to use a table layout - simply  apply a left border to the right column and done, but I wanted to do  completely table-less layout. When you use border in css for left or  right <strong>&lt;div&gt;</strong> then depends on the length of the  columns you might end up with a line shorter than the column with the  content.</p>
<p><span id="more-256"></span></p>
<p>This tutorial explains how to design two column css layout with a  line dividing left column from the right going through the whole length  of the page, regardless of the length of the columns. See it in action: <a title="Two column layout using css" href="http://blog.tikier.com/demos/two_column_css_layout_a/two_column_css_layout_a.html" target="_blank">Demo</a></p>
<p>To start with we need to design a structure of the layout.<br />
Please copy and paste the following structure in between the <strong>&lt;body&gt;&lt;/body&gt;</strong> tags of your page.</p>
<blockquote><p>&lt;div id="wrapper"&gt;<br />
&lt;div id="header"&gt;&lt;/div&gt;<br />
&lt;div id="container"&gt;<br />
&lt;div id="left"&gt;<br />
&lt;ul id="nav"&gt;<br />
&lt;li&gt;&lt;a href="#"&gt;Link 1&lt;/a&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;a href="#"&gt;Link 2&lt;/a&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;a href="#"&gt;Link 3&lt;/a&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;a href="#"&gt;Link 4&lt;/a&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;a href="#"&gt;Link 5&lt;/a&gt;&lt;/li&gt;<br />
&lt;/ul&gt;<br />
&lt;/div&gt;<br />
&lt;div id="right"&gt;&lt;/div&gt;<br />
&lt;div&gt;&lt;/div&gt;<br />
&lt;/div&gt;<br />
&lt;div id="footer"&gt;&lt;p&gt;©&lt;/p&gt;&lt;/div&gt;<br />
&lt;/div&gt;</p></blockquote>
<p>Create a small, 1px by 1px image with some background (it would be  best to give it the same colour as a border of your template) and save  it as <strong>divider.gif</strong>.<br />
You can also get this image from here:</p>
<p><img src="http://blog.tikier.com/wp-content/uploads/2010/03/divider.gif" alt="" width="100" height="100" /></p>
<p>Now create a style sheet and link it to our document.<br />
Open style sheet and copy and paste the following content.</p>
<blockquote><p>html, body {<br />
margin: 0px;<br />
padding: 0px;<br />
}<br />
body {<br />
font-family: Verdana, Arial, sans-serif;<br />
font-size: 11px;<br />
color: #3F4554;<br />
text-align: center;<br />
line-height: 1.8em;<br />
}<br />
#wrapper {<br />
width: 800px;<br />
margin: 15px auto 15px auto;<br />
padding: 0px;<br />
text-align: left;<br />
border: solid 1px #dadada;<br />
}<br />
#header {<br />
width: 100%;<br />
height: 70px;<br />
background-color: #f1f1f1;<br />
border-bottom: solid 1px #dadada;<br />
}<br />
#container {<br />
width: 100%;<br />
height: auto;<br />
margin: 0px;<br />
padding:2px 0px;<br />
<strong>background-image: url(divider.gif);<br />
background-repeat: repeat-y;<br />
background-position: 200px 0px;</strong><br />
}<br />
#left {<br />
width: 160px;<br />
height: auto;<br />
float: left;<br />
padding: 20px;<br />
margin: 0px;<br />
}<br />
#right {<br />
width: 530px;<br />
height: auto;<br />
float: left;<br />
padding: 20px 50px 20px 20px;<br />
margin: 0px;<br />
}<br />
#right p {<br />
margin: 0px;<br />
}<br />
.clearer {<br />
font-size: 0px;<br />
height: 0px;<br />
width: 100%;<br />
display: block;<br />
clear: both;<br />
}<br />
#nav {<br />
margin: 0px;<br />
padding: 0px;<br />
list-style: none;<br />
list-style-image: none;<br />
}<br />
#nav li {<br />
margin: 0px;<br />
padding: 0px;<br />
display: inline;<br />
}<br />
#nav li a:link, #nav li a:visited, #nav li a:active {<br />
color:#3F4554;<br />
text-decoration: none;<br />
display: block;<br />
margin: 0px;<br />
padding: 0px;<br />
width: 160px;<br />
}<br />
#nav li a:hover {<br />
color: #ccc;<br />
text-decoration: none;<br />
}<br />
#footer {<br />
padding: 0px;<br />
margin: 0px;<br />
border-top: solid 1px #dadada;<br />
text-align: center;<br />
}<br />
#footer p {<br />
margin: 0px auto 0px auto;<br />
padding: 10px 0px 10px 0px;<br />
color: #aaa;<br />
}<br />
#footer a:link, #footer a:visited, #footer a:active {<br />
color: #aaa;<br />
text-decoration: none;<br />
}<br />
#footer a:hover {<br />
color: #ccc;<br />
text-decoration: none;<br />
}</p></blockquote>
<p>The whole magic with the vertical line is done by using the  background image in <strong>#container</strong> and giving it the  position and repeat-y property (bolded code).</p>
<p>Now regardless whether the left of right column has more content, the  line in between the columns will always be going from the top to the  bottom of the page container.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://blog.tikier.com/tutorials/css/two-column-layout-using-pure-css-and-divider-image/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=Two+column+layout+using+pure+css+and+divider+image&amp;link=http://blog.tikier.com/tutorials/css/two-column-layout-using-pure-css-and-divider-image&amp;notes=Some%20time%20ago%20I%20was%20trying%20to%20figure%20out%20how%20to%20create%20two%20column%20css%20%20layout%20where%20left%20column%20will%20be%20divided%20from%20the%20right%20one%20with%20a%20%20vertical%20line.%0D%0AIt%20would%20be%20simple%20when%20you%20are%20trying%20to%20use%20a%20table%20layout%20-%20simply%20%20apply%20a%20left%20border%20to%20the%20right%20column%20and%20done%2C%20but%20I%20wanted%20to%20do%20%20comp&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://www.shareaholic.com/api/share/?title=Two+column+layout+using+pure+css+and+divider+image&amp;link=http://blog.tikier.com/tutorials/css/two-column-layout-using-pure-css-and-divider-image&amp;notes=Some%20time%20ago%20I%20was%20trying%20to%20figure%20out%20how%20to%20create%20two%20column%20css%20%20layout%20where%20left%20column%20will%20be%20divided%20from%20the%20right%20one%20with%20a%20%20vertical%20line.%0D%0AIt%20would%20be%20simple%20when%20you%20are%20trying%20to%20use%20a%20table%20layout%20-%20simply%20%20apply%20a%20left%20border%20to%20the%20right%20column%20and%20done%2C%20but%20I%20wanted%20to%20do%20%20comp&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=3&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=Two+column+layout+using+pure+css+and+divider+image&amp;link=http://blog.tikier.com/tutorials/css/two-column-layout-using-pure-css-and-divider-image&amp;notes=Some%20time%20ago%20I%20was%20trying%20to%20figure%20out%20how%20to%20create%20two%20column%20css%20%20layout%20where%20left%20column%20will%20be%20divided%20from%20the%20right%20one%20with%20a%20%20vertical%20line.%0D%0AIt%20would%20be%20simple%20when%20you%20are%20trying%20to%20use%20a%20table%20layout%20-%20simply%20%20apply%20a%20left%20border%20to%20the%20right%20column%20and%20done%2C%20but%20I%20wanted%20to%20do%20%20comp&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-gmail">
			<a href="http://www.shareaholic.com/api/share/?title=Two+column+layout+using+pure+css+and+divider+image&amp;link=http://blog.tikier.com/tutorials/css/two-column-layout-using-pure-css-and-divider-image&amp;notes=Some%20time%20ago%20I%20was%20trying%20to%20figure%20out%20how%20to%20create%20two%20column%20css%20%20layout%20where%20left%20column%20will%20be%20divided%20from%20the%20right%20one%20with%20a%20%20vertical%20line.%0D%0AIt%20would%20be%20simple%20when%20you%20are%20trying%20to%20use%20a%20table%20layout%20-%20simply%20%20apply%20a%20left%20border%20to%20the%20right%20column%20and%20done%2C%20but%20I%20wanted%20to%20do%20%20comp&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=52&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.shareaholic.com/api/share/?title=Two+column+layout+using+pure+css+and+divider+image&amp;link=http://blog.tikier.com/tutorials/css/two-column-layout-using-pure-css-and-divider-image&amp;notes=Some%20time%20ago%20I%20was%20trying%20to%20figure%20out%20how%20to%20create%20two%20column%20css%20%20layout%20where%20left%20column%20will%20be%20divided%20from%20the%20right%20one%20with%20a%20%20vertical%20line.%0D%0AIt%20would%20be%20simple%20when%20you%20are%20trying%20to%20use%20a%20table%20layout%20-%20simply%20%20apply%20a%20left%20border%20to%20the%20right%20column%20and%20done%2C%20but%20I%20wanted%20to%20do%20%20comp&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=74&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=Two+column+layout+using+pure+css+and+divider+image&amp;link=http://blog.tikier.com/tutorials/css/two-column-layout-using-pure-css-and-divider-image&amp;notes=Some%20time%20ago%20I%20was%20trying%20to%20figure%20out%20how%20to%20create%20two%20column%20css%20%20layout%20where%20left%20column%20will%20be%20divided%20from%20the%20right%20one%20with%20a%20%20vertical%20line.%0D%0AIt%20would%20be%20simple%20when%20you%20are%20trying%20to%20use%20a%20table%20layout%20-%20simply%20%20apply%20a%20left%20border%20to%20the%20right%20column%20and%20done%2C%20but%20I%20wanted%20to%20do%20%20comp&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.shareaholic.com/api/share/?title=Two+column+layout+using+pure+css+and+divider+image&amp;link=http://blog.tikier.com/tutorials/css/two-column-layout-using-pure-css-and-divider-image&amp;notes=Some%20time%20ago%20I%20was%20trying%20to%20figure%20out%20how%20to%20create%20two%20column%20css%20%20layout%20where%20left%20column%20will%20be%20divided%20from%20the%20right%20one%20with%20a%20%20vertical%20line.%0D%0AIt%20would%20be%20simple%20when%20you%20are%20trying%20to%20use%20a%20table%20layout%20-%20simply%20%20apply%20a%20left%20border%20to%20the%20right%20column%20and%20done%2C%20but%20I%20wanted%20to%20do%20%20comp&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=207&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-hotmail">
			<a href="http://www.shareaholic.com/api/share/?title=Two+column+layout+using+pure+css+and+divider+image&amp;link=http://blog.tikier.com/tutorials/css/two-column-layout-using-pure-css-and-divider-image&amp;notes=Some%20time%20ago%20I%20was%20trying%20to%20figure%20out%20how%20to%20create%20two%20column%20css%20%20layout%20where%20left%20column%20will%20be%20divided%20from%20the%20right%20one%20with%20a%20%20vertical%20line.%0D%0AIt%20would%20be%20simple%20when%20you%20are%20trying%20to%20use%20a%20table%20layout%20-%20simply%20%20apply%20a%20left%20border%20to%20the%20right%20column%20and%20done%2C%20but%20I%20wanted%20to%20do%20%20comp&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=53&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this via Hotmail">Email this via Hotmail</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.shareaholic.com/api/share/?title=Two+column+layout+using+pure+css+and+divider+image&amp;link=http://blog.tikier.com/tutorials/css/two-column-layout-using-pure-css-and-divider-image&amp;notes=Some%20time%20ago%20I%20was%20trying%20to%20figure%20out%20how%20to%20create%20two%20column%20css%20%20layout%20where%20left%20column%20will%20be%20divided%20from%20the%20right%20one%20with%20a%20%20vertical%20line.%0D%0AIt%20would%20be%20simple%20when%20you%20are%20trying%20to%20use%20a%20table%20layout%20-%20simply%20%20apply%20a%20left%20border%20to%20the%20right%20column%20and%20done%2C%20but%20I%20wanted%20to%20do%20%20comp&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=39&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=Two+column+layout+using+pure+css+and+divider+image&amp;link=http://blog.tikier.com/tutorials/css/two-column-layout-using-pure-css-and-divider-image&amp;notes=Some%20time%20ago%20I%20was%20trying%20to%20figure%20out%20how%20to%20create%20two%20column%20css%20%20layout%20where%20left%20column%20will%20be%20divided%20from%20the%20right%20one%20with%20a%20%20vertical%20line.%0D%0AIt%20would%20be%20simple%20when%20you%20are%20trying%20to%20use%20a%20table%20layout%20-%20simply%20%20apply%20a%20left%20border%20to%20the%20right%20column%20and%20done%2C%20but%20I%20wanted%20to%20do%20%20comp&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=Two+column+layout+using+pure+css+and+divider+image&amp;link=http://blog.tikier.com/tutorials/css/two-column-layout-using-pure-css-and-divider-image&amp;notes=Some%20time%20ago%20I%20was%20trying%20to%20figure%20out%20how%20to%20create%20two%20column%20css%20%20layout%20where%20left%20column%20will%20be%20divided%20from%20the%20right%20one%20with%20a%20%20vertical%20line.%0D%0AIt%20would%20be%20simple%20when%20you%20are%20trying%20to%20use%20a%20table%20layout%20-%20simply%20%20apply%20a%20left%20border%20to%20the%20right%20column%20and%20done%2C%20but%20I%20wanted%20to%20do%20%20comp&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://www.shareaholic.com/api/share/?title=Two+column+layout+using+pure+css+and+divider+image&amp;link=http://blog.tikier.com/tutorials/css/two-column-layout-using-pure-css-and-divider-image&amp;notes=Some%20time%20ago%20I%20was%20trying%20to%20figure%20out%20how%20to%20create%20two%20column%20css%20%20layout%20where%20left%20column%20will%20be%20divided%20from%20the%20right%20one%20with%20a%20%20vertical%20line.%0D%0AIt%20would%20be%20simple%20when%20you%20are%20trying%20to%20use%20a%20table%20layout%20-%20simply%20%20apply%20a%20left%20border%20to%20the%20right%20column%20and%20done%2C%20but%20I%20wanted%20to%20do%20%20comp&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=10&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=Two+column+layout+using+pure+css+and+divider+image&amp;link=http://blog.tikier.com/tutorials/css/two-column-layout-using-pure-css-and-divider-image&amp;notes=Some%20time%20ago%20I%20was%20trying%20to%20figure%20out%20how%20to%20create%20two%20column%20css%20%20layout%20where%20left%20column%20will%20be%20divided%20from%20the%20right%20one%20with%20a%20%20vertical%20line.%0D%0AIt%20would%20be%20simple%20when%20you%20are%20trying%20to%20use%20a%20table%20layout%20-%20simply%20%20apply%20a%20left%20border%20to%20the%20right%20column%20and%20done%2C%20but%20I%20wanted%20to%20do%20%20comp&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.shareaholic.com/api/share/?title=Two+column+layout+using+pure+css+and+divider+image&amp;link=http://blog.tikier.com/tutorials/css/two-column-layout-using-pure-css-and-divider-image&amp;notes=Some%20time%20ago%20I%20was%20trying%20to%20figure%20out%20how%20to%20create%20two%20column%20css%20%20layout%20where%20left%20column%20will%20be%20divided%20from%20the%20right%20one%20with%20a%20%20vertical%20line.%0D%0AIt%20would%20be%20simple%20when%20you%20are%20trying%20to%20use%20a%20table%20layout%20-%20simply%20%20apply%20a%20left%20border%20to%20the%20right%20column%20and%20done%2C%20but%20I%20wanted%20to%20do%20%20comp&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=24&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.shareaholic.com/api/share/?title=Two+column+layout+using+pure+css+and+divider+image&amp;link=http://blog.tikier.com/tutorials/css/two-column-layout-using-pure-css-and-divider-image&amp;notes=Some%20time%20ago%20I%20was%20trying%20to%20figure%20out%20how%20to%20create%20two%20column%20css%20%20layout%20where%20left%20column%20will%20be%20divided%20from%20the%20right%20one%20with%20a%20%20vertical%20line.%0D%0AIt%20would%20be%20simple%20when%20you%20are%20trying%20to%20use%20a%20table%20layout%20-%20simply%20%20apply%20a%20left%20border%20to%20the%20right%20column%20and%20done%2C%20but%20I%20wanted%20to%20do%20%20comp&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=43&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
</ul><div style="clear: both;"></div></div>




<p>Related posts:<ol><li><a href='http://blog.tikier.com/tutorials/html-tutorials/2-column-layout' rel='bookmark' title='Permanent Link: 2 Column Layout'>2 Column Layout</a></li>
<li><a href='http://blog.tikier.com/tutorials/css/css-layout-technique-%e2%80%93-achieving-100-height' rel='bookmark' title='Permanent Link: CSS Layout Technique – Achieving 100% Height'>CSS Layout Technique – Achieving 100% Height</a></li>
<li><a href='http://blog.tikier.com/tutorials/css/css-shortcuts' rel='bookmark' title='Permanent Link: CSS Shortcuts'>CSS Shortcuts</a></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.tikier.com/tutorials/css/two-column-layout-using-pure-css-and-divider-image/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Build a CSS Menu with Rollovers</title>
		<link>http://blog.tikier.com/tutorials/css/build-a-css-menu-with-rollovers</link>
		<comments>http://blog.tikier.com/tutorials/css/build-a-css-menu-with-rollovers#comments</comments>
		<pubDate>Sat, 06 Mar 2010 15:16:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[attribute]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[expression]]></category>
		<category><![CDATA[faults]]></category>
		<category><![CDATA[file]]></category>
		<category><![CDATA[font]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[item]]></category>
		<category><![CDATA[lt]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[menus]]></category>
		<category><![CDATA[rollover]]></category>
		<category><![CDATA[rollovers]]></category>
		<category><![CDATA[structure]]></category>
		<category><![CDATA[style]]></category>
		<category><![CDATA[tabs]]></category>
		<category><![CDATA[ul]]></category>

		<guid isPermaLink="false">http://blog.tikier.com/?p=220</guid>
		<description><![CDATA[This article is for people who have little to no experience with CSS. I will explain very detailed which codes to use and how to use them. At the end of this tutorial, you can code yourself this rollover menu, completed in CSS and HTML. !tip ALWAYS check your code on faults. You can validate [...]


Related posts:<ol><li><a href='http://blog.tikier.com/tutorials/css/horizontal-css-menus-that-grow-on-you' rel='bookmark' title='Permanent Link: Horizontal CSS Menus That Grow on You'>Horizontal CSS Menus That Grow on You</a></li>
<li><a href='http://blog.tikier.com/tutorials/css/css-borders' rel='bookmark' title='Permanent Link: CSS borders'>CSS borders</a></li>
<li><a href='http://blog.tikier.com/tutorials/css/css-shortcuts' rel='bookmark' title='Permanent Link: CSS Shortcuts'>CSS Shortcuts</a></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_brick-red" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fblog.tikier.com%252Ftutorials%252Fcss%252Fbuild-a-css-menu-with-rollovers%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22Build%20a%20CSS%20Menu%20with%20Rollovers%22%20%7D);"></div>
<p>This article is for people who have little to no experience with CSS.  I will explain very detailed which codes to use and how to use them. At  the end of this tutorial, you can code yourself this rollover menu, completed  in CSS and HTML.</p>
<p><span id="more-220"></span></p>
<p><strong>!tip </strong>ALWAYS check your code on faults.  You can validate <a target="_blank" title="Validate CSS" onclick="javascript:pageTracker._trackPageview('/go/article/jigsaw.w3.org');" href="http://jigsaw.w3.org/css-validator/" target="_blank">CSS</a> and <a target="_blank" title="Validate (x)HTML" onclick="javascript:pageTracker._trackPageview('/go/article/validator.w3.org');" href="http://validator.w3.org/" target="_blank">(x)HTML</a>.</p>
<p><strong>!tip</strong> Use tabs and space to organize your  codes (WordPress wouldn’t allow me to). You can download the files  (with organization) below.<br />
We’ll start. First, you should create 2 files. One called rollovers.css  and the other one rollover.html. Those files should be empty. The next  step is to open up rollover.html. In this file, our content will be  stored. In the file, past these codes:</p>
<p>Those codes will tell your browser everything it needs to know. It is  written in XHTML 1.0, so your browser will render your webpage the <em>XHTML  1.0</em>- way.</p>
<p>We are ready to start with the rollover menu. First, we will only  code the structure. If we have completed that part, we can start  changing the style.</p>
<p>So, you want the codes. No, I’ll first tell you something about the  structure. It may sound strange when you hear this for the first time,  but rollover menus are built from <em>Unordered lists</em>. When I first  heard this I thought it wasn’t possible. I thought CSS could never  change the expression of a list that much. But CSS can!</p>
<p>Everything that is content will need to be coded between the  &lt;body&gt; &lt;/body&gt; area. That’s where we start typing too. We’ll  start with a list, which you can call for with the  &lt;ul&gt;&lt;/ul&gt; attribute. For every item you want add, you need a  &lt;li&gt;&lt;/li&gt; between the &lt;ul&gt; attribute. Example:</p>
<pre>&lt;ul&gt;
	&lt;li&gt;item&lt;/li&gt;
	&lt;li&gt;item2&lt;/li&gt;
&lt;/ul&gt;
</pre>
<p>You can add as many items as you want, but maybe it’s easier to keep  it two or three items at this time. When we are finished, there’s enough  room for more items.<br />
In a rollover menu, there need to be clickable links. All you have to do  is add a &lt;a href=”"&gt; before and a &lt;/a&gt; after your item.</p>
<pre>&lt;ul&gt;
	&lt;li&gt;&lt;a href="http://www.divitodesign.com/wp-admin/item.html"&gt;item&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href="http://www.divitodesign.com/wp-admin/item2.html"&gt;item2&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</pre>
<p>Your menu structure is finished! The only thing we have to do in the  .html file is to make sure the right style file is included. We do this  with an extern CSS file. You have to include this in the rollovers.html  through the following codes.</p>
<p>As you can see, we include the rollovers.css as the extern CSS file.</p>
<p>Now, save the file and see how it looks. We will now start with the  CSS in the rollover.css file!</p>
<h2>CSS</h2>
<p>Open up your CSS file and make sure it is empty. In CSS, you style  existing attributes like &lt;ul&gt; , &lt;body&gt; and &lt;font&gt; as  the way you write them. Example:</p>
<pre>ul {
color:#fff;
}</pre>
<p>With this very simple code, you style all the ul&gt; attributes in  the webpage. You can add a lot of style-attributes to every attribute  you would like to style.</p>
<p>If you want to style a link attribute inside a ul&gt; attribute, this  is the way you should do it.</p>
<pre>ul a {
color:#fff;
}</pre>
<p>When you take a look on your rollover.html file, you see that your  menu has this structure:</p>
<pre>&lt;ul&gt;
	&lt;li&gt;&lt;a&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</pre>
<p>As you can see, the a&gt; attribute is inside the li&gt;, and the  li&gt; is inside the ul&gt; attribute. To style the links inside your  menu, you have to call for it in your CSS file like this. This order  only.</p>
<pre>ul li a{
color:#fff;
}</pre>
<p>And, because we will need to style all the ‘menu items’, we need to  style ul li too. Take a look below for some basic style on the <em>ul</em>,  <em>ul li</em> and <em>ul li a</em> styles. Explanation is beneath the  codes.</p>
<pre>ul{
margin: 0;
padding: 0;
font: 13px 'Lucida Grande', Arial, sans-serif;
list-style-type: none;
}
ul li{
display: inline;
}
ul li a{
text-decoration: none;
padding: .2em 1em;
color: #000;
background-color: #b0f664;
border:1px solid #8bda35;
}</pre>
<p>Let’s start with the <em>ul</em> attribute. Margin is the distance  outside the list, padding is inside the box. Font is just the font used,  size of the font etc. Now an attribute you might have never heard of.  It’s called list-style-type and it defines what should be shown before  every item. When you look at your default list-style-type, you’ll notice  there are black dots before every item. This is something we do not  want on our menu, so we set its value to none. If you want your whole  menu to show something, like font size, you can change it all in this <em>ul</em> attribute.</p>
<p>The <em>ul li</em> attribute. I have not much to tell you about this  one. Only thing I change from the default version is the display value.  When you look at your default list, you see the items are beneath each  other. This is something we don’t want with the menu we are making. When  you want a vertical menu, you should not change this value.</p>
<p>Now, take a look at the <em>ul li a</em> style values. In this  style, you can change everything you see when you don’t roll over the  menu with your mouse. You see I wanted a border, a background-color, a  text color and some space between the text and the border, called by  with padding. At default, a link has a blue color, with an underline. I  deleted the underline by changing text-decoration to none.</p>
<p>Please save your file and see what changed. You could also save it  after you have added a single line, so you know which things changes  with every aspect you add.</p>
<p>To finish this menu, you might want a different background color when  you roll over an item. You can do this with changing the <em>ul li  a:hover</em> attribute. Take a look below for the codes.</p>
<pre>ul li a:hover{
background-color: #ccf69f;
border:1px solid #a8e765;
}</pre>
<p>You don’t have to re-type all the things you don’t want to change on  the rollover. Only the things, like background-color and border, you  would like to change goes here.</p>
<p>We are finished! This is the easiest way to make a rollover menu.  Best of all, this is written the standard way! I love standards, and I  hope when you have read this tutorial, you think the same.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://blog.tikier.com/tutorials/css/build-a-css-menu-with-rollovers/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=Build+a+CSS+Menu+with+Rollovers&amp;link=http://blog.tikier.com/tutorials/css/build-a-css-menu-with-rollovers&amp;notes=This%20article%20is%20for%20people%20who%20have%20little%20to%20no%20experience%20with%20CSS.%20%20I%20will%20explain%20very%20detailed%20which%20codes%20to%20use%20and%20how%20to%20use%20them.%20At%20%20the%20end%20of%20this%20tutorial%2C%20you%20can%20code%20yourself%20this%20rollover%20menu%2C%20completed%20%20in%20CSS%20and%20HTML.%0D%0A%0D%0A%0D%0A%0D%0A%21tip%20ALWAYS%20check%20your%20code%20on%20faults.%20%20You%20can%20valid&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://www.shareaholic.com/api/share/?title=Build+a+CSS+Menu+with+Rollovers&amp;link=http://blog.tikier.com/tutorials/css/build-a-css-menu-with-rollovers&amp;notes=This%20article%20is%20for%20people%20who%20have%20little%20to%20no%20experience%20with%20CSS.%20%20I%20will%20explain%20very%20detailed%20which%20codes%20to%20use%20and%20how%20to%20use%20them.%20At%20%20the%20end%20of%20this%20tutorial%2C%20you%20can%20code%20yourself%20this%20rollover%20menu%2C%20completed%20%20in%20CSS%20and%20HTML.%0D%0A%0D%0A%0D%0A%0D%0A%21tip%20ALWAYS%20check%20your%20code%20on%20faults.%20%20You%20can%20valid&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=3&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=Build+a+CSS+Menu+with+Rollovers&amp;link=http://blog.tikier.com/tutorials/css/build-a-css-menu-with-rollovers&amp;notes=This%20article%20is%20for%20people%20who%20have%20little%20to%20no%20experience%20with%20CSS.%20%20I%20will%20explain%20very%20detailed%20which%20codes%20to%20use%20and%20how%20to%20use%20them.%20At%20%20the%20end%20of%20this%20tutorial%2C%20you%20can%20code%20yourself%20this%20rollover%20menu%2C%20completed%20%20in%20CSS%20and%20HTML.%0D%0A%0D%0A%0D%0A%0D%0A%21tip%20ALWAYS%20check%20your%20code%20on%20faults.%20%20You%20can%20valid&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-gmail">
			<a href="http://www.shareaholic.com/api/share/?title=Build+a+CSS+Menu+with+Rollovers&amp;link=http://blog.tikier.com/tutorials/css/build-a-css-menu-with-rollovers&amp;notes=This%20article%20is%20for%20people%20who%20have%20little%20to%20no%20experience%20with%20CSS.%20%20I%20will%20explain%20very%20detailed%20which%20codes%20to%20use%20and%20how%20to%20use%20them.%20At%20%20the%20end%20of%20this%20tutorial%2C%20you%20can%20code%20yourself%20this%20rollover%20menu%2C%20completed%20%20in%20CSS%20and%20HTML.%0D%0A%0D%0A%0D%0A%0D%0A%21tip%20ALWAYS%20check%20your%20code%20on%20faults.%20%20You%20can%20valid&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=52&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.shareaholic.com/api/share/?title=Build+a+CSS+Menu+with+Rollovers&amp;link=http://blog.tikier.com/tutorials/css/build-a-css-menu-with-rollovers&amp;notes=This%20article%20is%20for%20people%20who%20have%20little%20to%20no%20experience%20with%20CSS.%20%20I%20will%20explain%20very%20detailed%20which%20codes%20to%20use%20and%20how%20to%20use%20them.%20At%20%20the%20end%20of%20this%20tutorial%2C%20you%20can%20code%20yourself%20this%20rollover%20menu%2C%20completed%20%20in%20CSS%20and%20HTML.%0D%0A%0D%0A%0D%0A%0D%0A%21tip%20ALWAYS%20check%20your%20code%20on%20faults.%20%20You%20can%20valid&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=74&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=Build+a+CSS+Menu+with+Rollovers&amp;link=http://blog.tikier.com/tutorials/css/build-a-css-menu-with-rollovers&amp;notes=This%20article%20is%20for%20people%20who%20have%20little%20to%20no%20experience%20with%20CSS.%20%20I%20will%20explain%20very%20detailed%20which%20codes%20to%20use%20and%20how%20to%20use%20them.%20At%20%20the%20end%20of%20this%20tutorial%2C%20you%20can%20code%20yourself%20this%20rollover%20menu%2C%20completed%20%20in%20CSS%20and%20HTML.%0D%0A%0D%0A%0D%0A%0D%0A%21tip%20ALWAYS%20check%20your%20code%20on%20faults.%20%20You%20can%20valid&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.shareaholic.com/api/share/?title=Build+a+CSS+Menu+with+Rollovers&amp;link=http://blog.tikier.com/tutorials/css/build-a-css-menu-with-rollovers&amp;notes=This%20article%20is%20for%20people%20who%20have%20little%20to%20no%20experience%20with%20CSS.%20%20I%20will%20explain%20very%20detailed%20which%20codes%20to%20use%20and%20how%20to%20use%20them.%20At%20%20the%20end%20of%20this%20tutorial%2C%20you%20can%20code%20yourself%20this%20rollover%20menu%2C%20completed%20%20in%20CSS%20and%20HTML.%0D%0A%0D%0A%0D%0A%0D%0A%21tip%20ALWAYS%20check%20your%20code%20on%20faults.%20%20You%20can%20valid&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=207&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-hotmail">
			<a href="http://www.shareaholic.com/api/share/?title=Build+a+CSS+Menu+with+Rollovers&amp;link=http://blog.tikier.com/tutorials/css/build-a-css-menu-with-rollovers&amp;notes=This%20article%20is%20for%20people%20who%20have%20little%20to%20no%20experience%20with%20CSS.%20%20I%20will%20explain%20very%20detailed%20which%20codes%20to%20use%20and%20how%20to%20use%20them.%20At%20%20the%20end%20of%20this%20tutorial%2C%20you%20can%20code%20yourself%20this%20rollover%20menu%2C%20completed%20%20in%20CSS%20and%20HTML.%0D%0A%0D%0A%0D%0A%0D%0A%21tip%20ALWAYS%20check%20your%20code%20on%20faults.%20%20You%20can%20valid&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=53&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this via Hotmail">Email this via Hotmail</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.shareaholic.com/api/share/?title=Build+a+CSS+Menu+with+Rollovers&amp;link=http://blog.tikier.com/tutorials/css/build-a-css-menu-with-rollovers&amp;notes=This%20article%20is%20for%20people%20who%20have%20little%20to%20no%20experience%20with%20CSS.%20%20I%20will%20explain%20very%20detailed%20which%20codes%20to%20use%20and%20how%20to%20use%20them.%20At%20%20the%20end%20of%20this%20tutorial%2C%20you%20can%20code%20yourself%20this%20rollover%20menu%2C%20completed%20%20in%20CSS%20and%20HTML.%0D%0A%0D%0A%0D%0A%0D%0A%21tip%20ALWAYS%20check%20your%20code%20on%20faults.%20%20You%20can%20valid&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=39&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=Build+a+CSS+Menu+with+Rollovers&amp;link=http://blog.tikier.com/tutorials/css/build-a-css-menu-with-rollovers&amp;notes=This%20article%20is%20for%20people%20who%20have%20little%20to%20no%20experience%20with%20CSS.%20%20I%20will%20explain%20very%20detailed%20which%20codes%20to%20use%20and%20how%20to%20use%20them.%20At%20%20the%20end%20of%20this%20tutorial%2C%20you%20can%20code%20yourself%20this%20rollover%20menu%2C%20completed%20%20in%20CSS%20and%20HTML.%0D%0A%0D%0A%0D%0A%0D%0A%21tip%20ALWAYS%20check%20your%20code%20on%20faults.%20%20You%20can%20valid&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=Build+a+CSS+Menu+with+Rollovers&amp;link=http://blog.tikier.com/tutorials/css/build-a-css-menu-with-rollovers&amp;notes=This%20article%20is%20for%20people%20who%20have%20little%20to%20no%20experience%20with%20CSS.%20%20I%20will%20explain%20very%20detailed%20which%20codes%20to%20use%20and%20how%20to%20use%20them.%20At%20%20the%20end%20of%20this%20tutorial%2C%20you%20can%20code%20yourself%20this%20rollover%20menu%2C%20completed%20%20in%20CSS%20and%20HTML.%0D%0A%0D%0A%0D%0A%0D%0A%21tip%20ALWAYS%20check%20your%20code%20on%20faults.%20%20You%20can%20valid&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://www.shareaholic.com/api/share/?title=Build+a+CSS+Menu+with+Rollovers&amp;link=http://blog.tikier.com/tutorials/css/build-a-css-menu-with-rollovers&amp;notes=This%20article%20is%20for%20people%20who%20have%20little%20to%20no%20experience%20with%20CSS.%20%20I%20will%20explain%20very%20detailed%20which%20codes%20to%20use%20and%20how%20to%20use%20them.%20At%20%20the%20end%20of%20this%20tutorial%2C%20you%20can%20code%20yourself%20this%20rollover%20menu%2C%20completed%20%20in%20CSS%20and%20HTML.%0D%0A%0D%0A%0D%0A%0D%0A%21tip%20ALWAYS%20check%20your%20code%20on%20faults.%20%20You%20can%20valid&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=10&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=Build+a+CSS+Menu+with+Rollovers&amp;link=http://blog.tikier.com/tutorials/css/build-a-css-menu-with-rollovers&amp;notes=This%20article%20is%20for%20people%20who%20have%20little%20to%20no%20experience%20with%20CSS.%20%20I%20will%20explain%20very%20detailed%20which%20codes%20to%20use%20and%20how%20to%20use%20them.%20At%20%20the%20end%20of%20this%20tutorial%2C%20you%20can%20code%20yourself%20this%20rollover%20menu%2C%20completed%20%20in%20CSS%20and%20HTML.%0D%0A%0D%0A%0D%0A%0D%0A%21tip%20ALWAYS%20check%20your%20code%20on%20faults.%20%20You%20can%20valid&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.shareaholic.com/api/share/?title=Build+a+CSS+Menu+with+Rollovers&amp;link=http://blog.tikier.com/tutorials/css/build-a-css-menu-with-rollovers&amp;notes=This%20article%20is%20for%20people%20who%20have%20little%20to%20no%20experience%20with%20CSS.%20%20I%20will%20explain%20very%20detailed%20which%20codes%20to%20use%20and%20how%20to%20use%20them.%20At%20%20the%20end%20of%20this%20tutorial%2C%20you%20can%20code%20yourself%20this%20rollover%20menu%2C%20completed%20%20in%20CSS%20and%20HTML.%0D%0A%0D%0A%0D%0A%0D%0A%21tip%20ALWAYS%20check%20your%20code%20on%20faults.%20%20You%20can%20valid&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=24&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.shareaholic.com/api/share/?title=Build+a+CSS+Menu+with+Rollovers&amp;link=http://blog.tikier.com/tutorials/css/build-a-css-menu-with-rollovers&amp;notes=This%20article%20is%20for%20people%20who%20have%20little%20to%20no%20experience%20with%20CSS.%20%20I%20will%20explain%20very%20detailed%20which%20codes%20to%20use%20and%20how%20to%20use%20them.%20At%20%20the%20end%20of%20this%20tutorial%2C%20you%20can%20code%20yourself%20this%20rollover%20menu%2C%20completed%20%20in%20CSS%20and%20HTML.%0D%0A%0D%0A%0D%0A%0D%0A%21tip%20ALWAYS%20check%20your%20code%20on%20faults.%20%20You%20can%20valid&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=43&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
</ul><div style="clear: both;"></div></div>




<p>Related posts:<ol><li><a href='http://blog.tikier.com/tutorials/css/horizontal-css-menus-that-grow-on-you' rel='bookmark' title='Permanent Link: Horizontal CSS Menus That Grow on You'>Horizontal CSS Menus That Grow on You</a></li>
<li><a href='http://blog.tikier.com/tutorials/css/css-borders' rel='bookmark' title='Permanent Link: CSS borders'>CSS borders</a></li>
<li><a href='http://blog.tikier.com/tutorials/css/css-shortcuts' rel='bookmark' title='Permanent Link: CSS Shortcuts'>CSS Shortcuts</a></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.tikier.com/tutorials/css/build-a-css-menu-with-rollovers/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

