<?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"
	>

<channel>
	<title>MicoHono</title>
	<atom:link href="http://www.micohono.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.micohono.com</link>
	<description>Graphic Design, Programming, and Tech</description>
	<pubDate>Thu, 28 Feb 2008 19:09:13 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
	<language>en</language>
			<item>
		<title>Easy way to make gloss</title>
		<link>http://www.micohono.com/2007/12/easy-way-to-make-gloss/</link>
		<comments>http://www.micohono.com/2007/12/easy-way-to-make-gloss/#comments</comments>
		<pubDate>Fri, 14 Dec 2007 02:59:51 +0000</pubDate>
		<dc:creator>MicoHono</dc:creator>
		
		<category><![CDATA[Illustrator]]></category>

		<guid isPermaLink="false">http://www.micohono.com/2007/12/easy-way-to-make-gloss/</guid>
		<description><![CDATA[In this tutorial I will show how to make things shiny in illustrator, this is the easiest way I know of.

First make your shape however you want, I will be using a star for this tutorial, like below.

Next take the pen tool, make it so theres no fill, and draw the shape you wish you [...]]]></description>
			<content:encoded><![CDATA[<p>In this tutorial I will show how to make things shiny in illustrator, this is the easiest way I know of.</p>
<p><span id="more-36"></span></p>
<p>First make your shape however you want, I will be using a star for this tutorial, like below.</p>
<p style="text-align: center"><img src="http://www.micohono.com/images/tutorials/gloss/star.jpg" alt="star" class="imageclass" /></p>
<p>Next take the pen tool, make it so theres no fill, and draw the shape you wish you would like the shine to take, through your shape, so something like below:</p>
<p style="text-align: center"><img src="http://www.micohono.com/images/tutorials/gloss/pen.jpg" alt="pen" class="imageclass" /></p>
<p>Now select the star, Copy it, and paste it(Cntrl+F).</p>
<p>Select the line you drew and the star copy.</p>
<p>Goto Window &gt; PathFinder and press Divide.</p>
<p style="text-align: center"><img src="http://www.micohono.com/images/tutorials/gloss/divide.jpg" alt="divide" class="imageclass" /></p>
<p>Your star should look something like this,</p>
<p style="text-align: center"><img src="http://www.micohono.com/images/tutorials/gloss/divide2.jpg" alt="divide2" class="imageclass" /></p>
<p>Double click the star, click the bottom half and delete it. It should look like this when selected:</p>
<p style="text-align: center"><img src="http://www.micohono.com/images/tutorials/gloss/startop.jpg" alt="star top" class="imageclass" /></p>
<p>Now remove the stroke, and change the fill to white.</p>
<p>Goto Object &gt; Path &gt; Offset Path, and enter -2 pt in the offset box.</p>
<p>Select the outer offset and delete it. (If needed you may need to double click the white to allow the selection of the outer offset.)</p>
<p>Set the opacity to about 30% and thats it <img src='http://www.micohono.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> Simple enough. My results are below.</p>
<p style="text-align: center"><img src="http://www.micohono.com/images/tutorials/gloss/final.jpg" alt="final star" class="imageclass" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.micohono.com/2007/12/easy-way-to-make-gloss/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Beginners Complete Guide to C++</title>
		<link>http://www.micohono.com/2007/12/beginners-complete-guide-to-c/</link>
		<comments>http://www.micohono.com/2007/12/beginners-complete-guide-to-c/#comments</comments>
		<pubDate>Fri, 14 Dec 2007 00:26:44 +0000</pubDate>
		<dc:creator>MicoHono</dc:creator>
		
		<category><![CDATA[C++]]></category>

		<guid isPermaLink="false">http://www.micohono.com/2007/12/beginners-complete-guide-to-c/</guid>
		<description><![CDATA[Here you will learn the basics of the C++ Programming language.
To start off you must know that we are using the C++ that uses the Win32 Console, not graphical interface.
Table of Contents:
1. Variable types
2. Library headers
3. input/output
Variable Types
Here is a list of the most common variable types, you will learn more as you improve, also [...]]]></description>
			<content:encoded><![CDATA[<p>Here you will learn the basics of the C++ Programming language.</p>
<p>To start off you must know that we are using the C++ that uses the Win32 Console, not graphical interface.<span id="more-35"></span></p>
<p>Table of Contents:<br />
1. <a href="#">Variable types</a><br />
2. <a href="2/">Library headers</a><br />
3. <a href="3/">input/output</a></p>
<h2>Variable Types</h2>
<p>Here is a list of the most common variable types, you will learn more as you improve, also you will learn how to use each more effectively.</p>
<p>int<br />
short<br />
long<br />
string<br />
char<br />
float<br />
double<br />
long double<br />
bool</p>
<p>each variable type takes a certain amount of memory which is listed below<br />
ints and floats - 32-bit<br />
short - 16-bit<br />
chars - 8-bit<br />
doubles and long - 64-bit<br />
bools - 8-bit</p>
<p>depending on the program you may need to use one or the other, but also because computers have so much memory you could most likely just use the maximum memory usage of each type. But the problem with doing so, some people may still be running low end computers and may run out of memory.</p>
<p><strong>int/short/long</strong></p>
<p>int is any integer, anyone with basic math skills would know that integers are all whole numbers such as &#8230;-5, -4, -3, -2, -1, 0, 1, 2, 3, 4, 5&#8230;and so on. int short and long are all used for integers only, it just depends on how much space is needed for each type. short can only hold -128 to 127. int can only hold -32,768 to 32,767, and long int -2,147,483,648 to  2,147,483,647. Also remembre that this is for most computers, though as computers advance the larger these numbers get. If you try adding a number such as 2.5 to an integer type, it will just drop the numbers after the decimal. example: 2.5 + 3 = 5</p>
<p>&#8211;</p>
<p><strong>float/double/long double</strong></p>
<p>floating point numbers(float) can be any number, from integers to floats. Then why not just use float for everything and never use integers? Floating points numbers are not that accurate, there are often times when a number lets say &#8220;3.1445&#8243; may be the answer on one computer, but on another it may be &#8220;3.1446&#8243;, even if you say do not show decimal places, it may still use the decimal places to add the so called &#8220;integers&#8221; and you may come out with inaccurate answers. The maximum number for each type of float datatype are listed below:<br />
float: 3.4 * 10^(-38) to 3.4 * 10^(38)<br />
double: 1.7 * 10^(-308) to 1.7 * 10^(308)<br />
long double: 3.4 * 10^(-4392) to 3.4 * 10^(4392)</p>
<p>Each set also has a number of precision after the decimal place before it starts to become inaccurate which is also listed below.</p>
<p>float - 7-decimal places<br />
double - 15-decimal places<br />
long double - 19-decimal places</p>
<p>&#8211;</p>
<p><strong>boolean</strong></p>
<p>booleans are very easy to use, all they say is True or False, if you want to do a program which checks to see if a value is correct, if it is you may say continue the program, or goto another section of the program, or in alot of cases maybe even quit program. Boolean can only hold two different values, &#8220;True&#8221; or &#8220;False&#8221;.</p>
<p><strong>string/char</strong></p>
<p>Chars can become very complicated, but I will just tell you the basics, you will learn how to use them alot better, and learn more functionality with it. Char is just keeps one letter in storage, so if you have a char variable and lets say you enter &#8220;Hello&#8221; to store into the char, the only thing the char will store is the &#8220;H&#8221;. Chars only take up 4-bytes.</p>
<p>Strings do more than char, they can store whole sentences, or more, I do not thing I have ever run into a memory limit for strings except for the computers limit. If you enter a whole sentence such as &#8220;Hello world, this is a p2l tutorial&#8221; the string will store that whole thing.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<h2>Library Headers</h2>
<p>Headers are the statements that call in a library so you may use certain functions in that library. The library that is used in almost every single program is called iostream, and to use this library you must put this at the top of your code:</p>
<pre class="codebox">#include &lt;iostream&gt;</pre>
<p>This library holds all the common commands in C++ such as cin, cout, int, float, double, long int&#8230;etc. Although iostream has alot more functions that I dont know either, you can easily goto the microsoft website and look it up in their Library. Although iostream contains alot of commands you would think it would allow you to use strings, but it doesnt. To include strings into your program you need to use the library called &#8220;string&#8221;, obvious eh?<br />
To include this file you would do the same thing, and this is the style for all libraries:</p>
<pre class="codebox">#include &lt;string&gt;</pre>
<p>For your refrence this is how you call libraries</p>
<pre class="codebox">#include &lt;libraryname&gt;</pre>
<p>Where libraryname is the library name. Often there are libraries that may need a &#8220;.h&#8221; at the end, you must include that in the library name for it to compile, some libraries that have the .h at the end may be exchanged and instead put the c in the front. Here is an example, the library math which includes math functions such as power, and log, and other things. But to call this you need to use this code</p>
<pre class="codebox">#include &lt;math.h&gt;</pre>
<p>You may also call this library by this way also:</p>
<pre class="codebox">#include &lt;cmath&gt;</pre>
<p>Although this works for this library, it may not work for all libraries, so dont hold me to this if you have to keep the .h =)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.micohono.com/2007/12/beginners-complete-guide-to-c/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Comments by admin Fix!</title>
		<link>http://www.micohono.com/2007/12/comments-by-admin-fix/</link>
		<comments>http://www.micohono.com/2007/12/comments-by-admin-fix/#comments</comments>
		<pubDate>Tue, 11 Dec 2007 17:49:38 +0000</pubDate>
		<dc:creator>MicoHono</dc:creator>
		
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.micohono.com/2007/12/comments-by-admin-fix/</guid>
		<description><![CDATA[There are various ways to fix the problem with someone choosing the same &#8216;displayname&#8217; as the admin, The way I did so is change it so the comment author e-mail matches the admins e-mail. So instead of
if($comment-&#62;comment_author ==$userdata-&#62;display_name) ?&#62;
You would put
if($comment-&#62;comment_author_email == "admin@email.com") { ?&#62;
And thats it  Just choose an e-mail that other users [...]]]></description>
			<content:encoded><![CDATA[<p>There are various ways to fix the problem with someone choosing the same &#8216;displayname&#8217; as the admin, The way I did so is change it so the comment author e-mail matches the admins e-mail. So instead of</p>
<pre class="codebox">if($comment-&gt;comment_author ==$userdata-&gt;display_name) ?&gt;</pre>
<p>You would put</p>
<pre class="codebox">if($comment-&gt;comment_author_email == "admin@email.com") { ?&gt;</pre>
<p>And thats it <img src='http://www.micohono.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> Just choose an e-mail that other users cannot guess, like a personal e-mail that you do not use on your website, and you should be safe.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.micohono.com/2007/12/comments-by-admin-fix/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Create Codeboxes/Warnings in Wordpress</title>
		<link>http://www.micohono.com/2007/12/create-codeboxeswarnings-in-wordpress/</link>
		<comments>http://www.micohono.com/2007/12/create-codeboxeswarnings-in-wordpress/#comments</comments>
		<pubDate>Tue, 11 Dec 2007 15:50:50 +0000</pubDate>
		<dc:creator>MicoHono</dc:creator>
		
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.micohono.com/2007/12/create-codeboxeswarnings-in-wordpress/</guid>
		<description><![CDATA[In this tutorial I will teach you how to create code boxes similar to the ones you see in my post, which are quite similar to code boxes you see on forums and message boards.
These are quite simple actually all you need to do is create a class for each one.

So create the class and [...]]]></description>
			<content:encoded><![CDATA[<p>In this tutorial I will teach you how to create code boxes similar to the ones you see in my post, which are quite similar to code boxes you see on forums and message boards.</p>
<p>These are quite simple actually all you need to do is create a class for each one.</p>
<p><span id="more-31"></span></p>
<p>So create the class and style as you wish. Heres the class I use for my codebox:</p>
<pre class="codebox">.codebox {
font-family:"Lucida Console";
font-size:11px;
color:#455d71;
width:90%;
margin-left:10px;
border-left:4px solid #7ea0b6;
border-right:1px dashed #7ea0b6;
border-bottom:1px dashed #7ea0b6;
border-top:1px dashed #7ea0b6;
padding:5px;
padding-top:30px;
background:url(images/codebox.jpg) no-repeat #d3e5f1;
overflow: auto;
}</pre>
<p>The padding-top30px is so the text does not overlay the top image, if you do not have an image to represent the type of box you do not need to have such a huge padding. Be sure to also add overflow: auto, so when needed the box will scroll to accommodate text that may overflow.</p>
<p>Now all you need to do is when posting, type the code you want in your post and then go into the Code tab of your post and type</p>
<pre class="codebox">&lt;pre class="yourclassname"&gt;Code here&lt;/pre&gt;</pre>
<pre class="warningbox">If you are making an image label at the top like I did, be sure
not to set a fixed height, doing so will result in the text going
above the background when scrolling.</pre>
<p>Also be sure to put all tags such as &lt; should be in their html equivelant inside of codeboxes, the best way to do this is type the code in the &#8216;visual&#8217; tab, and then later go into the code tab and add the codebox tags around it.</p>
<p>A disadvantage to wordpress is if you keep switching between visual and code tab it will add more and more space between your lines of code which gets quite annoying, So I suggest adding the tags around everything after you are completely done with your post.</p>
<pre class="tipbox">Have your code/warning/tip boxes fixed width so they do not
overflow outside the borders of your post.</pre>
<p>For tip/warning boxes you may want to format the text a bit so they do not need to scroll to read the text, Code scrolling sideways should be fine to keep the code clean and not have split lines, but scrolling sideways to read warnings/tips can be annoying so I suggest to format code yourself so no scrolling is involved for those.</p>
<p>I haven&#8217;t quite figured out how to do numbered line, when I do I will be sure to update with the solution <img src='http://www.micohono.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.micohono.com/2007/12/create-codeboxeswarnings-in-wordpress/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Vortex in Photoshop</title>
		<link>http://www.micohono.com/2007/12/vortex-in-photoshop/</link>
		<comments>http://www.micohono.com/2007/12/vortex-in-photoshop/#comments</comments>
		<pubDate>Fri, 07 Dec 2007 18:29:56 +0000</pubDate>
		<dc:creator>MicoHono</dc:creator>
		
		<category><![CDATA[Photoshop]]></category>

		<guid isPermaLink="false">http://www.micohono.com/2007/12/vortex-in-photoshop/</guid>
		<description><![CDATA[
About time for another tutorial! This tutorial will teach you how to make a nice vortex type image in Photoshop. For this tutorial you may want a stylus unless you are good at drawing almost full circles with the mouse.

Alright to begin, Start with a canvas size 550px by 550px and black Background.
This part is [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center"><img src="http://www.micohono.com/images/tutorials/pstutmed.jpg" alt="Med" height="50" width="400" /></p>
<p>About time for another tutorial! This tutorial will teach you how to make a nice vortex type image in Photoshop. For this tutorial you may want a stylus unless you are good at drawing almost full circles with the mouse.</p>
<p><span id="more-30"></span></p>
<p>Alright to begin, Start with a canvas size 550px by 550px and black Background.</p>
<p>This part is pretty easy, Just take the brush tool, grab the &#8220;leaf&#8221; brush and draw a few leaves in the center like below.</p>
<p style="text-align: center"><img src="http://www.micohono.com/images/tutorials/vortex/leaf.jpg" alt="Leaf" class="imageclass" /></p>
<p>Now goto Filter &gt; Blur &gt; Radial Blur and use the settings below:</p>
<p style="text-align: center"><img src="http://www.micohono.com/images/tutorials/vortex/radialblur.jpg" alt="radialblur" class="imageclass" /></p>
<p>Next goto Filter &gt; Blur Radial Blur again except use the settings below:</p>
<p style="text-align: center"><img src="http://www.micohono.com/images/tutorials/vortex/radialblur2.jpg" alt="radialblur2" class="imageclass" /></p>
<p>Of course this depends on how many leaves you added, you can always go back and add more if needed, also Mess around with the blurs to get best results. These are my results so far:</p>
<p style="text-align: center"><img src="http://www.micohono.com/images/tutorials/vortex/center.jpg" class="imageclass" alt="center" /></p>
<p>Alright now for the fun stuff! <img src='http://www.micohono.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Take your brush tool, Create a new layer, select the leaf brush again(or try others see if it changes the look). I choose the leaf tool because it has a different points to give rather than circles. Goto the brush settings, Scatter and use the settings below:</p>
<p style="text-align: center"><img src="http://www.micohono.com/images/tutorials/vortex/scatter.jpg" alt="scatter" class="imageclass" /></p>
<p>Now draw some swirls around the center like below. This is the part you may want the stylus to get smooth curves unless you are good with the mouse, or you could just use the pen tool <img src='http://www.micohono.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p style="text-align: center"><img src="http://www.micohono.com/images/tutorials/vortex/swirl.jpg" alt="swirl" class="imageclass" /></p>
<p>When you are done drawing the swirls, Goto the layer settings and set an outer glow, change the color to white, everything else can remain default. Next draw some lines around the center and try to diversify the sizes of the lines and the distance between them, like below.</p>
<p style="text-align: center"><img src="http://www.micohono.com/images/tutorials/vortex/lines.jpg" alt="lines" class="imageclass" /></p>
<p>Now merge the layers for the lines and on the layer goto Filter &gt; Blur &gt; Radial Blur and use the settings below:</p>
<p style="text-align: center"><img src="http://www.micohono.com/images/tutorials/vortex/radialblur.jpg" alt="radialblur" class="imageclass" /></p>
<p>Then goto Filter &gt; Blur &gt; Radial Blur again and use these settings:</p>
<p style="text-align: center"><img src="http://www.micohono.com/images/tutorials/vortex/radialblur3.jpg" alt="radialblur" class="imageclass" /></p>
<p>Again depends on the lines and how much blur you think looks best.</p>
<p>Now repeat the last 3 steps except instead of drawing lines use the brush scatter tool, same scatter settings, and brush less lines toward the center then what you did with the lines, add an outer glow, and use the same blur settings, you should get something similar to below:</p>
<p style="text-align: center"><img src="http://www.micohono.com/images/tutorials/vortex/vortex.jpg" alt="vortex" class="imageclass" height="259" width="440" /></p>
<p>Now all you need to do is Layer &gt; New Layer, grab the Rainbow Gradient make it gradient on the layer you just created, and set it to Overlay and Opacity 35%. Looks cool? <img src='http://www.micohono.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Now you can just grab a star map or make your own splatters etc in the background and make it look like it&#8217;s in space or similar. Here are my results:(Click for full view).</p>
<p><a href="http://www.micohono.com/images/tutorials/vortex/vortexfinal.jpg" rel="lightbox"></a></p>
<p style="text-align: center"><a href="http://www.micohono.com/images/tutorials/vortex/vortexfinal.jpg" rel="lightbox"><img src="http://www.micohono.com/images/tutorials/vortex/vortexfinal.jpg" alt="final" class="imageclass" height="248" width="421" /></a></p>
<p><font color="#ff0000">**Extra, Try adding a Surface blur to the layer with the streaks that you just created, may make it look a bit more realistic <img src='http://www.micohono.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </font></p>
]]></content:encoded>
			<wfw:commentRss>http://www.micohono.com/2007/12/vortex-in-photoshop/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Fully code your site in CSS!</title>
		<link>http://www.micohono.com/2007/11/fully-code-your-site-in-css/</link>
		<comments>http://www.micohono.com/2007/11/fully-code-your-site-in-css/#comments</comments>
		<pubDate>Thu, 29 Nov 2007 03:12:40 +0000</pubDate>
		<dc:creator>MicoHono</dc:creator>
		
		<category><![CDATA[CSS/XHTML]]></category>

		<guid isPermaLink="false">http://www.micohono.com/2007/11/fully-code-your-site-in-css/</guid>
		<description><![CDATA[My long and promised tutorial has arrived. Fully code your website in Valid CSS and XHTML!
For this tutorial I assume you have basic knowledge of HTML. We will be making the website as previewed here.
To Download the template images for this tutorial click here.
This tutorial will take about an hour to complete if you are [...]]]></description>
			<content:encoded><![CDATA[<p>My long and promised tutorial has arrived. Fully code your website in Valid CSS and XHTML!</p>
<p><span id="more-29"></span>For this tutorial I assume you have basic knowledge of HTML. We will be making the website as previewed <a href="http://www.micohono.com/projectdownloads/kirby/">here</a>.</p>
<p>To Download the template images for this tutorial <a href="http://www.micohono.com/projectdownloads/kirby/images.zip">click here</a>.</p>
<p>This tutorial will take about an hour to complete if you are completely new to CSS and read every detail.</p>
<p>To start of make a folder for your website, inside of it create a file called index.html and stylesheet.css, also create a folder called images which is where you should put all your images for your template now.</p>
<p>Inside index.html have the basic html code setup ready so we can begin.<br />
In the head of index.html put this code</p>
<pre class="codebox">&lt;link href="stylesheet.css" rel="stylesheet" type="text/css" /&gt;</pre>
<p>This line of code links to the stylesheet so we can use the styles inside of it, if your stylesheet was in a different folder we would put instead:</p>
<pre class="codebox">&lt;link href="example/stylesheet.css" rel="stylesheet" type="text/css" /&gt;</pre>
<p>Now we will add the first classes to the CSS File.</p>
<pre class="codebox">body {font-family:verdana, arial, helvetica, sans-serif;

text-align: center;margin:0;

}

#containerborder {

margin: 0 auto;

text-align: left;

width: 1028px;

background-color:#8ab5d3;

overflow:hidden;

}#container {

margin: 0 auto;text-align: left;

width: 1024px;background-color:#FFFFFF;

overflow:hidden;padding-bottom:20px;

}</pre>
<p>Now, the body is the body tag class. Margin:0; makes it so there isn&#8217;t any margin in between the borders of the browser and your website. Text-align will make the div centered in the website.</p>
<p>We have containerborder which will be the side border of the website, its width is 1028px so we have 4px extra on each side from the container. The background color will be the border color which we will use #8ab5d3.</p>
<p>Container is the div which all the website content will be contained inside of, hence the name &#8216;container.&#8217; text-align aligns the text to the left side. And overflow:hidden makes it so the div stretches with the content whether the div is being floated or not (Will be explained more later in this tutorial).</p>
<p>Now in index.html add this code inside the body tag:</p>
<pre class="codebox">&lt;div id="containerborder"&gt; &lt;div id="container"&gt;

&lt;/div&gt;

&lt;/div&gt;</pre>
<p>So whats the difference between class and id?. ID is more of the identification of the div, and Class is he class. When in the CSS style sheet if you see a # then that class can only be used for an objects id, while if the class starts with a . then its a class and can be used for anything. The problem with using ID is the w3 Validator will bring up errors if you have multiple items with the same id <em>name</em> so be sure to only use the # for items you know will only show up ONCE in your page, and use . for everything else!</p>
<p>Moving on, inside the container div add the header, so you should have this code now inside of index.html&#8217;s body tag.</p>
<pre class="codebox">&lt;div id="containerborder"&gt; &lt;div id="container"&gt;

&lt;div id="header"&gt;&lt;/div&gt;

&lt;/div&gt;

&lt;/div&gt;</pre>
<p>Like I said the id is just the identification of the tag, for this div we do not need to make a class inside of the css file because this one will just contain the header image, so we can put this in now.</p>
<pre class="codebox">&lt;div id="containerborder"&gt; &lt;div id="container"&gt;

&lt;div id="header"&gt;&lt;img src="images/header.jpg" alt="Header" /&gt;&lt;/div&gt;

&lt;/div&gt;

&lt;/div&gt;</pre>
<p>This is pretty simple understanding, and the alt tag IS required in every image if you wish to be valid by the w3 validator standards.</p>
<p>Now before we move on, you need to know how div&#8217;s work. Div&#8217;s are like boxes that push each other around, and it does get quite annoying to fix them if you don&#8217;t know what you are doing. So for example. The header stretches along the whole length of the container (because the image is 1024px wide), so the next div we put in will automatically be pushed to right below the header, this is pretty basic logic. One thing you need to watch out for is 1px off div&#8217;s. Sometimes a div is set 1px too wide and it pushes everything else around, these are some of the most annoying cases on website building especially with lots of classes it can be pretty hard to find if you don&#8217;t know what you are looking for. So be sure to always calculate the widths of everything when you place them so you can avoid small mistakes.</p>
<p>Now add this code to your index.html file</p>
<pre class="codebox">&lt;div id="containerborder"&gt; &lt;div id="container"&gt;

&lt;div id="header"&gt;&lt;img src="images/header.jpg" alt="Header" /&gt;&lt;/div&gt;

&lt;div id="navigation"&gt;

&lt;/div&gt;

&lt;/div&gt;

&lt;/div&gt;</pre>
<p>And add this to stylesheet.css</p>
<pre class="codebox">#navigation {background:url(images/navigation.jpg) repeat-x;

height:40px;

width:100%;

}</pre>
<p>Repeat-x repeats the background image along the x-axis, if you did repeat-y it would repeat along the y-axis, and no-repeat is obviously no repeat.</p>
<p>Width:100% is pretty self explanatory, it goes 100% of the width  of the outside div, not the width of the browser. If you wanted something to go the width of the browser, the parameter would be width:100% and not contained inside any other div&#8217;s which are fixed width. If inside a fixed width div the 100% will be the width of that container div.<br />
height:40px; is for the background image, because div&#8217;s don&#8217;t stretch the height for background images you need to state the height yourself.</p>
<p>Moving on, in index add this in between the navigation div, so you should have this:(from here on out I wont add the whole code, the top line and bottom line will be from the previous code entry only, so you can see where the new code should be placed. All code in between the top and bottom line will be new code.</p>
<p>index.html:</p>
<pre class="codebox">&lt;div id="navigation"&gt;

 &lt;div id="leftimg"&gt;&lt;/div&gt;

 &lt;div id="navlinks"&gt;&lt;/div&gt;

 &lt;div id="rightimg"&gt;&lt;/div&gt;

&lt;/div&gt;</pre>
<p>and in stylesheet.css add:</p>
<pre class="codebox">#navlinks {

margin-top:12px;

text-align:center;

float:left;

width:596px;

}

#leftimg {

float:left;

}

#rightimg {

float:right;

}</pre>
<p>Margin-top sets the margin between the top of the div using that class and the div its contained inside of.<br />
Float basically says I&#8217;m on the right/left side of this div and thats that? The reason we use these because of the pushiness of div&#8217;s like I had said above. But I did say something wrong above, no matter how much space the div takes, it will always push the next div down. So the div could take up 1px width of a 6000px div, but any div below that 1px div will be pushed below it. Thats why we use float. Float left allows us to set multiple divs next to each other. Float:left will put this div right up to the leftside of the container, the very next div that has float:left will be put up next to that previous floated div. And the float right will be put on the rightside of the container div&#8230;confusing? Heres an example image.</p>
<p style="text-align: center"><img src="http://www.micohono.com/projectdownloads/kirby/divex.png" alt="example" /></p>
<p>Hopefully that makes sense? Now edit the code in index.html to include the navigation and side images.</p>
<pre class="codebox">&lt;div id="leftimg"&gt;&lt;img src="images/navleft.jpg" alt="kirbyleft" /&gt;&lt;/div&gt;&lt;div id="navlinks"&gt;» Home » Games » Latest » News » Community » Downloads  » About » Contact &lt;/div&gt;&lt;div id="rightimg"&gt;&lt;img src="images/navright.jpg" alt="kirbyright" /&gt;&lt;/div&gt;</pre>
<p>Remember always add the alt tag to your images. Now add this div to your code (Make sure it&#8217;s inside the container div and nothing else. SO heres what you should have in index.html</p>
<pre class="codebox">&lt;div id="containerborder"&gt;

 &lt;div id="container"&gt;

  &lt;div id="header"&gt;

   &lt;img src="images/header.jpg" alt="Header" /&gt;

  &lt;/div&gt;

  &lt;div id="navigation"&gt;

   &lt;div id="leftimg"&gt;&lt;img src="images/navleft.jpg" alt="kirbyleft" /&gt;&lt;/div&gt;

   &lt;div id="navlinks"&gt;» Home » Games » Latest » News » Community » Downloads  » About » Contact &lt;/div&gt;

   &lt;div id="rightimg"&gt;&lt;img src="images/navright.jpg" alt="kirbyright" /&gt;&lt;/div&gt;

  &lt;/div&gt;

  &lt;div id="navleftside"&gt;&lt;/div&gt;

  &lt;div id="content"&gt;

  &lt;/div&gt;

  &lt;div id="rightnav"&gt;

  &lt;/div&gt;

 &lt;/div&gt;

&lt;/div&gt;</pre>
<p>And in stylesheet.css you should add:</p>
<pre class="codebox">#navleftside {width:273px;float:left;}#content {float:left;width:530px;margin-top:50px;}#rightnav {float:right;margin-top:65px;margin-right:5px;

width:200px;

padding-right:5px;

}</pre>
<p>You should by now know what all these do, margin adds a margin to that side from the containing div. Padding however adds a type of margin except from the content inside itself. Not much difference except one sets space on the outside of itself, and the other sets space on the inside itself from the border of itself.</p>
<p>Now inside add this code inside of navleftside</p>
<pre class="codebox"> &lt;div id="navleftside"&gt;  &lt;div id="star"&gt;&lt;img src="images/star.jpg" alt="starend" /&gt;&lt;/div&gt;&lt;/div&gt;</pre>
<p>This is the code for the last part of kirby&#8217;s star. We don&#8217;t need a class because the image is not the background, so the div stretches to the image width, and thats all we needed.</p>
<p>Now we can add our Game list below the star, so add this code below the star div.</p>
<pre class="codebox">
  &lt;div id="star"&gt;&lt;img src="images/star.jpg" alt="starend" /&gt;&lt;/div&gt;  &lt;div class="nav"&gt;&lt;/nav&gt;</pre>
<p>And you can add this to stylesheets.css.</p>
<pre class="codebox">.nav {margin-left:10px;background:#fff url(images/sidenav.jpg) no-repeat;width:187px;padding-left:5px;padding-bottom:10px;}</pre>
<p>The margin-left sets the navigation away from the edge of the website by 10px so it&#8217;s not right up against the border. Background image is the navigation image, and the padding forces the text inside the div to be pushed away from the borders, this helps keep the text inside the background image &#8216;limits&#8217;.</p>
<p>So you can add your navigation inside of the nav div. So your code should be as below.</p>
<pre class="codebox">&lt;div class="nav"&gt;&lt;h2&gt;Game List&lt;/h2&gt;&lt;div class="navcont"&gt;&lt;a href="index.html"&gt;Kirby's Dream Land&lt;/a&gt;&lt;br /&gt;Kirby's Adventure&lt;br /&gt;Kirby's Pinball Land&lt;br /&gt;Kirby's Dream Course&lt;br /&gt;Kirby's Avalanche&lt;br /&gt;Kirby's Dream Land 2&lt;br /&gt;Kirby's Block Ball&lt;br /&gt;

Kirby Super Star&lt;br /&gt;

Kirby's Star Stacker&lt;br /&gt;

Kirby's Dream Land 3&lt;br /&gt;

Kirby The Crystal Shards&lt;br /&gt;

Kirby Tilt 'n' Tumble&lt;br /&gt;

Kirby: Nightmare in Dream Land&lt;br /&gt;

Kirby Air Ride&lt;br /&gt;

Kirby &amp; the Amazing Mirror&lt;br /&gt;

Kirby: Canvas Curse&lt;br /&gt;

Kirby: Squeak Squad&lt;br /&gt;

Kirby Wii&lt;/div&gt;

&lt;/div&gt;</pre>
<p>I snuck another div in there, which styles the text for the game list. Add this to your stylesheets.css code.</p>
<pre class="codebox">
.navcont {color:#529dc0;font-size:10px;font-family:Verdana;}</pre>
<p>Now what about the h2? It&#8217;s ugly, and when I link the games its just going to be the ugly default dark blue font underlined and all. Well, heres how to do it. If you wish to style an h2 tag for a certain div all you need to do is this.</p>
<pre class="codebox">.nav h2 {padding-top:13px;font-family:Verdana;color:#e3819a;font-size:14px;margin-bottom:5px;}</pre>
<p>put the div class and the h2 right after it with the styles you want. Notice that nav and navcont have the . instead of the # key, that&#8217;s because I know eventually these classes will be used again on the same page, and this could lead to XHTML validator errors. So my div&#8217;s now are</p>
<pre class="codebox">&lt;div class="nav"&gt; instead of &lt;div id="nav"&gt;</pre>
<p>Now you wish to style your links? Same idea as the h2, except with a:link and a:hover etc.</p>
<pre class="codebox">.navcont a:link {color:#529dc0;text-decoration:none;}.navcont  a:active {color:#529dc0;text-decoration:none;}

.navcont a:visited {

color:#529dc0;

text-decoration:none;

}

.navcont a:hover {

color:#295f79;

text-decoration:none;

}</pre>
<p>Put this in your code. this styles the link, a:link is just a..link, a active is an active link, a visited is the link style of the link has been visited before, and a:hover is when you hover your mouse over the link.  text-decoration basically is the decoration of the link, you can say text-decoration underline, hightlight, and then you can change the style of the highlight/underline etc. If you look at the preview page which I gave a link at the top of this tutorial, the top link on the navigation is linked so you can see what it looks like.</p>
<p>Now the rest of the page is pretty much a copy of what we just did but different modifications. So onto the news section. Add this code inside the content div we added earlier.</p>
<pre class="codebox">&lt;div id=content"&gt;&lt;div class="newsbox"&gt;&lt;/div&gt;&lt;/div&gt;</pre>
<p>And add this to your stylesheet.css.</p>
<pre class="codebox">.newsbox {width:455px;margin-bottom:20px;background:url(images/news.jpg) no-repeat;margin-left:20px;padding-left:14px;padding-right:14px;

color:#999999;

font-size:11px;

}

.newsbox h2 {

padding-top:20px;

font-family:Verdana;

color:#e3819a;

font-size:16px;

}</pre>
<p>You should know everything that is going on here, padding, color is the text color inside the text, font-family is the font family, you can add more than one font, so you could have font-family:Verdana, Arial, Times New Roman; etc&#8230;What is the point? If the users computer doesn&#8217;t have Verdana it moves to the next one which would be arial and so on. Margin-bottom is so we have a bit of space between each news box.</p>
<p>Now you can add some content to your news and add some other content.</p>
<p>Once you add some text to your content area(I added a bunch of lipsum text). You can add this below your text:</p>
<pre class="codebox">&lt;div class="readmore"&gt;&lt;a href="#"&gt;Read More...&lt;/a&gt;&lt;/div&gt;&lt;div class="comments"&gt;Comments(14)&lt;/div&gt;</pre>
<p>And add this to stylesheet.css.</p>
<pre class="codebox">.readmore {float:left;padding-top:10px;font-size:11px;color:#999999;}

.comments {

float:right;

padding-top:10px;

font-size:10px;

color:#999;

}</pre>
<p>I styled my comments for read more, you can use the example above to do the same. Now if you wish you can copy the whole codebox div and put it below/above the previous codebox div and change the words so you can see what the page looks like with multiple news elements on it.</p>
<p>Now that we have finished the news boxes, we will finish the right navigation.</p>
<p>The great thing about classes is instead of making the same class again for a different area of the page you can use it again, which is why I said make sure you know whether you will be using a class again or not so you know when to use the # or the . if you want to be safe you can just use the . all the time, but I prefer not to.</p>
<p>So all you really need to do is copy this from the left navigation:</p>
<pre class="codebox">&lt;div class="nav"&gt;&lt;h2&gt;Game List&lt;/h2&gt;&lt;div class="navcont"&gt;&lt;/div&gt;&lt;/div&gt;</pre>
<p>And change the words/add content. So my right navigation looks like the code below:</p>
<pre class="codebox">&lt;div class="nav"&gt;&lt;h2&gt;Forum Stats&lt;/h2&gt;&lt;div class="navcont"&gt;1,648,483Posts&lt;br /&gt;4,583 Members&lt;br /&gt;Newest Member: Atly&lt;br /&gt;

&lt;p&gt;Latest Posts:&lt;br /&gt;

OMG NEW SECRET!&lt;br /&gt;

Hi, I'm New..&lt;br /&gt;

I need help&lt;/p&gt;

&lt;p&gt;Login   / Register&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="nav"&gt;&lt;h2&gt;Affiliates&lt;/h2&gt;

&lt;div class="navcont"&gt;kirbyD&lt;br /&gt;

Kirby Official Site&lt;br /&gt;

Kirby Nintendo&lt;br /&gt;

Kirby IGN&lt;br /&gt;

Kirby File Planet&lt;br /&gt;

Kirby Anime&lt;/div&gt;&lt;/div&gt;</pre>
<p>If you look at the rightnav class you will see instead of margin-left we have margin-right to give it space from the right side border of the website.</p>
<p>Now the footer, Add it right above the very last &lt;/div&gt; tag, so you should have this for the footer in index.html:</p>
<pre class="codebox">&lt;div id="footer"&gt;Copyright Kirby's Lair 2007 Created by MicoHono.com&lt;/div&gt;&lt;/div&gt;</pre>
<p>And in stylesheet.css you should have:</p>
<pre class="codebox">#footer {width:100%;height:30px;color:#0a3244;

font-size:10px;

text-align:center;

padding-top:3px;

}</pre>
<p>padding-top so the text isn&#8217;t right along the top edge, and if you look at the container class it has a padding of 20px so all content inside of it is away from it&#8217;s edge by 20px so the footer isn&#8217;t too close.<br />
&lt;/body&gt;</p>
<p>Thats all, preview your website and it should look similar to <a href="http://www.micohono.com/projectdownloads/kirby/">this</a>, if theres any questions feel free to ask <img src='http://www.micohono.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.micohono.com/2007/11/fully-code-your-site-in-css/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Tetris Revolution</title>
		<link>http://www.micohono.com/2007/11/tetris-revolution/</link>
		<comments>http://www.micohono.com/2007/11/tetris-revolution/#comments</comments>
		<pubDate>Tue, 27 Nov 2007 06:12:41 +0000</pubDate>
		<dc:creator>MicoHono</dc:creator>
		
		<category><![CDATA[Photoshop]]></category>

		<guid isPermaLink="false">http://www.micohono.com/2007/11/tetris-revolution/</guid>
		<description><![CDATA[Tetris image made in 3ds Max and Photoshop, didn&#8217;t come out as well as I wanted but I think I&#8217;m done messing with this image for a while. Rendered in 640&#215;480 Resolution took about 30 minutes to render&#8230;3ds Max isn&#8217;t optimized for vista yet I suppose  

]]></description>
			<content:encoded><![CDATA[<p>Tetris image made in 3ds Max and Photoshop, didn&#8217;t come out as well as I wanted but I think I&#8217;m done messing with this image for a while. Rendered in 640&#215;480 Resolution took about 30 minutes to render&#8230;3ds Max isn&#8217;t optimized for vista yet I suppose <img src='http://www.micohono.com/wp-includes/images/smilies/icon_cry.gif' alt=':cry:' class='wp-smiley' /> </p>
<p style="text-align: center"><a href="http://www.micohono.com/images/projects/tetris.jpg" rel="lightbox"><img src="http://www.micohono.com/images/projects/tetristh.jpg" alt="tetris" class="imageclass" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.micohono.com/2007/11/tetris-revolution/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Photo&#8217;s</title>
		<link>http://www.micohono.com/2007/11/photos/</link>
		<comments>http://www.micohono.com/2007/11/photos/#comments</comments>
		<pubDate>Mon, 26 Nov 2007 17:57:29 +0000</pubDate>
		<dc:creator>MicoHono</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.micohono.com/2007/11/photos/</guid>
		<description><![CDATA[While waiting on my next tutorial, here are some photo&#8217;s I took in my yard earlier today.







]]></description>
			<content:encoded><![CDATA[<p>While waiting on my next tutorial, here are some photo&#8217;s I took in my yard earlier today.</p>
<table border="0" cellpadding="0"  align="center" width="80%">
<tr>
<td><a href="http://www.micohono.com/images/photos/pink.jpg" rel="lightbox"><img src="http://www.micohono.com/images/photos/pinkth.jpg" alt="pink flower" class="imageclass" /></a></td>
<td><a href="http://www.micohono.com/images/photos/pink2.jpg" rel="lightbox"><img src="http://www.micohono.com/images/photos/pink2th.jpg" alt="More pink" class="imageclass" /></a></td>
<td><a href="http://www.micohono.com/images/photos/dandy.jpg" rel="lightbox"><img src="http://www.micohono.com/images/photos/dandyth.jpg" alt="Dandylion" class="imageclass" /></a></td>
</tr>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.micohono.com/2007/11/photos/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Icons by your post title</title>
		<link>http://www.micohono.com/2007/11/icons-by-your-post-title/</link>
		<comments>http://www.micohono.com/2007/11/icons-by-your-post-title/#comments</comments>
		<pubDate>Sat, 24 Nov 2007 21:29:15 +0000</pubDate>
		<dc:creator>MicoHono</dc:creator>
		
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.micohono.com/2007/11/icons-by-your-post-title/</guid>
		<description><![CDATA[It was suggested to me to have icons next to my title that represented what the post was about, ex. a post for illustrator would have the illustrator logo next to the title. And so I have done so.
Now in this tutorial I will show you have to make it so your post automatically puts [...]]]></description>
			<content:encoded><![CDATA[<p>It was suggested to me to have icons next to my title that represented what the post was about, ex. a post for illustrator would have the illustrator logo next to the title. And so I have done so.</p>
<p>Now in this tutorial I will show you have to make it so your post automatically puts the icon next to each title and with the correct icon for that category. This is a really simple technique.<span id="more-26"></span></p>
<p>Goto your mainIndex Template page and find the line</p>
<pre class="codebox">&lt;a href="&lt;?php the_permalink() ?&gt;" rel="bookmark" title="Permanent Link to &lt;?php the_title(); ?&gt;"&gt;

&lt;?php the_title(); ?&gt;</pre>
<p>Right above it put this code.</p>
<pre class="codebox">&lt;?php if ( in_category('27') || in_category('47')): ?&gt;

&lt;img src="URL of image" alt="description" /&gt;

&lt;?php elseif( in_category('46')): ?&gt;

&lt;img src="URL of image" alt="description" /&gt;

&lt;?php endif; ?&gt;</pre>
<p>What this does is if the post is in category 27 or 47 it will put the image of the icon next to the title, if it is not, then it will check, if it is in category 46 and put that icon etc. You can add as many elseif statements, and you can add as many or&#8217;s inside of the if statement, so you can have something like</p>
<pre class="codebox">&lt;?php if ( in_category('1') || in_category('2') ||  in_category('3') || in_category('4') ||  in_category('5') || in_category('6')): ?&gt;</pre>
<p>If you wish to do the same for &#8217;singlepost&#8217; pages just add the same code into the singlepost template page.</p>
<p>Very simple code and effective. Good luck, any questions please ask <img src='http://www.micohono.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.micohono.com/2007/11/icons-by-your-post-title/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Create an Abstract Equalizer</title>
		<link>http://www.micohono.com/2007/11/create-an-abstract-equalizer/</link>
		<comments>http://www.micohono.com/2007/11/create-an-abstract-equalizer/#comments</comments>
		<pubDate>Sat, 24 Nov 2007 09:41:02 +0000</pubDate>
		<dc:creator>MicoHono</dc:creator>
		
		<category><![CDATA[Photoshop]]></category>

		<guid isPermaLink="false">http://www.micohono.com/2007/11/create-an-abstract-equalizer/</guid>
		<description><![CDATA[
This tutorial we will learn to make an abstract/glassy equalizer in Photoshop. Begin with a canvas size 700&#215;360 and black background.
I assume you know the interface to Photoshop in this tutorial and most of the basic functions.
We will start off with the easy stuff, Begin with using the rectangular tool and selecting the whole canvas. [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center"><img src="http://www.micohono.com/images/tutorials/pstutmed.jpg" height="50" width="400" alt="medium" /></p>
<p>This tutorial we will learn to make an abstract/glassy equalizer in Photoshop. Begin with a canvas size 700&#215;360 and black background.<br />
I assume you know the interface to Photoshop in this tutorial and most of the basic functions.<span id="more-25"></span></p>
<p>We will start off with the easy stuff, Begin with using the rectangular tool and selecting the whole canvas. Now select the Elliptical Marquee tool, and While holding Alt draw an ellipse on the bottom half so you should have something like below:</p>
<p style="text-align: center"><img src="http://www.micohono.com/images/tutorials/equalizer/marquee.jpg" alt="marquee" class="imageclass" /></p>
<p>Now create a new layer, name it “shine”, fill it with white and set the opacity to 10%.<br />
Onto the next step, this may take a few minutes. Grab the Rectangular Marquee tool and set it to Fixed Size. Make the Width 30px. And make the height any height you wish. Just don’t go more than half the canvas if possible, and keep fluctuating the size each time you set marquee tool. Hold shift while placing the rectangles such that the previous do not disappear. I suggest placing them no more than 2px apart. I set mine 1px apart, you should get something like below.</p>
<p style="text-align: center"><img src="http://www.micohono.com/images/tutorials/equalizer/equalizer1.jpg" alt="equalizer" class="imageclass" /></p>
<p>Once you are complete, create a new layer called Equalizer and Fill it with a gradient. The colors I used were #194255 and #70c5cf respectively. Make sure when you fill the darker color is on the bottom. You should now have something similar to below:</p>
<p style="text-align: center"><img src="http://www.micohono.com/images/tutorials/equalizer/equalizer2.jpg" alt="equalizer" class="imageclass" /></p>
<p>Now without deselecting, Grab the Rectangular Marquee tool. Set the feather to around 10px, and while holding Alt Draw on the bottom half of the equalizer. This will keep the top half only. Now create a new layer, Call it EqualizerGrad, and fill it with white. Because of the feather you should get a gradient, on your layer, if you do not try setting the feather higher. Once complete set the layer style to Overlay.<br />
Moving on…Deselect everything by pressing Cntrl+D, and reselect the layer again, this time with the rectangular tool set the feather to 0 and do the same as above, remove the bottom half of the selection. Now go to Select &gt; Modify &gt; Contract and contract by 2px. Create a new Layer, name it barShine and fill it with white. Set the layer opacity to 13%.<br />
You should now have something like Below:</p>
<p style="text-align: center"><img src="http://www.micohono.com/images/tutorials/equalizer/equalshine.jpg" alt="equalshine" class="imageclass" /></p>
<p>Just to make sure you are up to speed on everything, you should have 5 layers, Background, Equalizer, EqualizerGrad, barShine, and shine. If you have all these and your image looks something similar to above(except your equalizer looking different, continue).<br />
Now Copy layers Equalizer, EqualizerGrad, and barShine, Merge the copies and flip them vertically. Move them to be approx 1px below the original and set the opacity to 28%.</p>
<p>Now grabbing the Elliptical tool, draw a thin ellipse underneath the original equalizer across the whole canvas, create a layer called ‘surface’, fill it with white and set the opacity to 16%.</p>
<p>Alright onto the fun stuff, <a href="http://www.micohono.com/images/tutorials/equalizer/Odysee_Brushes_by_Axeraider70.abr">Download this brush set</a>, and brush!</p>
<p style="text-align: center"><img src="http://www.micohono.com/images/tutorials/equalizer/brush.jpg" alt="brush" class="imageclass" height="90" width="285" /></p>
<p>Do not brush like crazy, use the softer brushes, Like Brush 2, 8 and 9. A couple times here and there on their own layer behind the equalizer.(this is really up to you how you wish to brush it, I suggest only using a couple brushes on each side of the canvas.</p>
<p>Once you are completed with that, grab the rectangular tool…again And draw a rectangle along the whole width of the bottom of the canvas going to the bottom edge of the equalizer. Having the brush layer selected press delete, and deselect (Cntrl+D). This is so the brushing you did does not get into the reflection area of the canvas. Now Cntrl + Click the Equalizer layer to get the selection. Going back to your brush layer press delete again. This will make it so whether your brush layer is above or below the equalizer layer it does not overlap.</p>
<p>Wait what? My brushes overlap in the final image you saw? =) We are going to do that now, use the more defined brushes (that aren’t as soft) such as 3 and 7. And brush on the same brushing layer you just did until satisfied. Repeat the step to remove the brushing from the reflection area of the canvas. DO NOT delete the equalizer area of this new brushing. Bring this layer above the equalizer, Cntrl+ Click, Grab the rainbow gradient, set the brush settings to overlay and draw it across the diagonal of the canvas, if needed do so again for brighter colors. Now your image should look something like below!Now do with the brushed layer copy it, flip it vertical, and put it below the equalizer so it also has a reflection. Set the opacity to 11%.</p>
<p>Now grab the Elliptical Marquee Tool, set the feather to 30px and draw an ellipse on the bottom of the canvas. Now select the brush reflection layer and press delete a few times until you are happy with the fade. The feather helps make it more ‘faded’ away rather than sharp edges. Once you are done with the brush reflections do the same with the equalizer reflection.</p>
<p>Now before we continue, I forgot a step with the equalizer. Cntrl+Click the equalizer layer, grab a nice feathered brush quite large, I’d say around 60px in size. Choose the color #366d86, set the brush mode to Color dodge and draw across the bottom of the equalizer about 3 times across. Once complete, set the layer style to Luminosity.</p>
<p>Now go to the equalizer layer again, make a stroke, with these settings.</p>
<p style="text-align: center"><img src="http://www.micohono.com/images/tutorials/equalizer/grad.jpg" alt="stroke" class="imageclass" /></p>
<p><font color="#ff0000">**This part on is optional.</font> Create a new layer, and using the gradient tool with the rainbow gradient selected draw across the whole canvas, put this layer above everything else and set the layer style to Soft Light with Opacity 50%.</p>
<p>Lastly using the text tool write a song name, the artist, and the song length, put it below the equalizer in pretty big font size, Add an outer glow that is white, and you are done! Hope you enjoyed this tutorial, if you have any questions about any of the steps please ask!</p>
<p align="center"><a href="http://www.micohono.com/images/tutorials/equalizer/final.jpg" rel="lightbox">Click here for Full View</a></p>
<p style="text-align: center"><img src="http://www.micohono.com/images/tutorials/equalizer/finalprev.jpg" alt="equalfinal" class="imageclass" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.micohono.com/2007/11/create-an-abstract-equalizer/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
