<?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>Learn HTML Code &#187; HTML Tutorials</title>
	<atom:link href="http://www.thosecodes.com/category/html-tutorials/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thosecodes.com</link>
	<description>HTML Codes and Tutorials the Easy Way</description>
	<lastBuildDate>Sun, 24 Jan 2010 22:57:16 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Creating a Roll Over Navigation Bar with CSS</title>
		<link>http://www.thosecodes.com/creating-a-roll-over-navigation-bar-with-css/#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed</link>
		<comments>http://www.thosecodes.com/creating-a-roll-over-navigation-bar-with-css/#comments</comments>
		<pubDate>Sat, 05 Sep 2009 07:31:40 +0000</pubDate>
		<dc:creator>Zach</dc:creator>
				<category><![CDATA[HTML Tutorials]]></category>

		<guid isPermaLink="false">http://www.thosecodes.com/?p=55</guid>
		<description><![CDATA[If you have not looked at my CSS image roll over tutorial you should do so now. You can click here to go there, otherwise continue on with this tutorial! I will teach you how to make a navigation bar using one image that contains all your buttons and roll over effects. To start your [...]]]></description>
			<content:encoded><![CDATA[<p>If you have not looked at my CSS image roll over tutorial you should do so now. You can click here to go there, otherwise continue on with this tutorial! I will teach you how to make a navigation bar using one image that contains all your buttons and roll over effects. To start your going to want to create a image file that you will put all your buttons in. If you have 4 buttons and each one is 200px wide by 50 px high, then <span id="more-55"></span>you would want an image canvas that is 200px wide and200px high (If you had 2 buttons then your canvas would be 100px high). The image I will be working with may be seen below. This image is 260px wide and each button is 75px tall.</p>
<p><img class="aligncenter size-full wp-image-211" title="roll over image" src="http://www.thosecodes.com/wp-content/uploads/2009/08/buttons.jpg" alt="roll over image" width="260" height="450" /></p>
<p>First off we can tell we are going to want to hide the image and we will only want to show one button at a time. Before we can style any of these buttons in CSS we need to create our navigation bar.</p>
<p>Our navigation bar would look like so:</p>
<div class="code">
<p>&lt;div id=&#8221;topnav&#8221;&gt;&lt;!&#8211; controls the top nav above the banner &#8211;&gt;</p>
<p>&lt;ul id=&#8221;toplist&#8221;&gt;</p>
<p>&lt;li&gt;&lt;a href=&#8221;#&#8221;&gt;&lt;/a&gt;&lt;/li&gt;</p>
<p>&lt;li&gt;&lt;a href=&#8221;#&#8221;class=&#8221;club&#8221;&gt;Bonita Club&lt;/a&gt;&lt;/li&gt;</p>
<p>&lt;li&gt;&lt;a href=&#8221;#&#8221;&gt;Gift Cards&lt;/a&gt;&lt;/li&gt;</p>
<p>&lt;/ul&gt;</p>
<p>&lt;div&gt;</p>
</div>
<p>This will give us the ability to style our CSS and show our image navigation bar. You will notice that I put text in each one, but when we style our CSS the text will disappear! To create this simple navigation bar we will need a lot of code. I will give you the CSS and then explain what each section does.</p>
<div class="code">topnav</p>
<p>{</p>
<p>margin:0px 0 0 0;</p>
<p>}</p>
<p>#topnav ul</p>
<p>{</p>
<p>list-style-type: none;</p>
<p>margin: 0px 0 0 0px;</p>
<p>padding: 0px;</p>
<p>}</p>
<p>#topnav ul li</p>
<p>{</p>
<p>margin: 0px 0 0 0px;</p>
<p>padding: 0px;</p>
<p>}</p>
<p>#topnav ul li a</p>
<p>{</p>
<p>display: block;</p>
<p>background-repeat: no-repeat;</p>
<p>text-indent: -9999px;</p>
<p>overflow: hidden;</p>
<p>}</p>
<p>.specials</p>
<p>{</p>
<p>background-image: url(images/buttons.jpg);</p>
<p>width: 260px;</p>
<p>height: 75px;</p>
<p>background-position:left top;</p>
<p>}</p>
<p>.specials:hover</p>
<p>{</p>
<p>background-position:0px -225px;</p>
<p>}</p>
<p>.club</p>
<p>{</p>
<p>background-image: url(images/buttons.jpg);</p>
<p>width: 260px;</p>
<p>height: 75px;</p>
<p>background-position:0 -75px;</p>
<p>}</p>
<p>.club:hover</p>
<p>{</p>
<p>background-position:0px -300px;</p>
<p>}</p>
<p>.cards</p>
<p>{</p>
<p>background-image: url(images/buttons.jpg);</p>
<p>width: 260px;</p>
<p>height: 75px;</p>
<p>background-position:0 -150px;</p>
<p>}</p>
<p>.cards:hover</p>
<p>{</p>
<p>background-position:0px -375px;</p>
<p>}</p>
</div>
<p>First we style the Div of <em>topnav</em>. This is how you move your navigation bar around using either float or margins. Give this div a width and height if you want to float other materials next to it, otherwise it will act as a block level element and other items will appear either above or below it. In the <em>topnav ul</em> class we give it a <em>list-style-type</em>of none to take away the bullets that an unordered list creates. Always declare your margins and paddings as 0 so your images don&#8217;t have any unnecesary padding.</p>
<p><br ></p>
<p>Now comes one of the most important parts to making this work. We must style the <em>topnav ul li a.</em> We give it a display of block to show our images. If we didn&#8217;t give it a <em>display: block;</em> then we would not see our images and we would just see the text. We set the background to not repeat to stop the images from repeated themselves accross the screen. The text-indent moves the text that we put in our body off the screen. Finally, the part that hides our image from the viewers, <em>overflow: hidden;</em>. If you do not declare the overflow as hidden your entire image will show.</p>
<p><br ></p>
<p>Now we have to style the classes that we added to each list item. Each class has the same background because it is just one image. Where we show the background is how we change what the button looks like. If we break down my image we see that the second button starts at 75px and the third at 150px. This is very important to take note of when styling your CSS. In my CSS i used left top for the first button because that declares the area as 0 0 (your second button would be 0 -75). For the hover of my first button you will notice that the background-positions is the only thing that changes. It changes to 0px -225px. This is because the button I want displayed for specials appears at 225px down from the first image. In the non-hover area of the CSS is where we declare the size of the button.</p>
<p><br ></p>
<p>With this information you can walk through the rest of my CSS and see how I showed the rest of the buttons. We use a negative px to move down the image. If you used a positive px it would move up the image.</p>
<p><br ></p>
<p>If you want to trouble shoot and walkthrough this you can save the image and create a webpage with the above code that I gave you. Be sure to change your image links so the image appears. You can see my working example below. The bonita club image moves to the left 1px because I was 1px off with my measurement.</p>
<p><br ></p>
<div id="topnav"><!-- controls the top nav above the banner --></p>
<ul id="toplist">
<li><a class="specials" title="roll over image with css" href="##utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed">Specials</a></li>
<li><a class="club" title="roll over image with css" href="##utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed">Bonita Club</a></li>
<li><a class="cards" title="roll over image with css" href="##utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed">Gift Cards</a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.thosecodes.com/creating-a-roll-over-navigation-bar-with-css/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Roll over Image using CSS</title>
		<link>http://www.thosecodes.com/roll-over-image-using-css/#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed</link>
		<comments>http://www.thosecodes.com/roll-over-image-using-css/#comments</comments>
		<pubDate>Sat, 05 Sep 2009 07:29:59 +0000</pubDate>
		<dc:creator>Zach</dc:creator>
				<category><![CDATA[HTML Tutorials]]></category>

		<guid isPermaLink="false">http://www.thosecodes.com/?p=49</guid>
		<description><![CDATA[The tutorial you are about to go through does not use scripts to create a roll over image. Using javascript to create a roll over image can be slow and take a while to respond to a users mouse on and off. The way I will teach you already loads the image onto the page, [...]]]></description>
			<content:encoded><![CDATA[<p>The tutorial you are about to go through does not use scripts to create a roll over image. Using javascript to create a roll over image can be slow and take a while to respond to a users mouse on and off.<span id="more-49"></span> <img class="alignright size-full wp-image-171" title="blank" src="http://www.thosecodes.com/wp-content/uploads/2009/08/blank.jpg" alt="blank" width="200" height="135" />The way I will teach you already loads the image onto the page, so when a user mouses on the image, it instantly changes. This is also how I created my navigation buttons for my website.</p>
<p>First you need to create a white box to paint/color in. I am using Photoshop, but you can use paint if you do not have an image creating software. <strong>Watch out</strong> while using paint because if your text does not line up it will seem like the text is jumping up and down on mouse roll overs. If your text does not stay static this means you are off in your measurements. An example of my box may be seen to the right. I put my measurement in for the center of my box.</p>
<p>Next we will put in a background and put in the top half of the text. The second step in this task can be seen on the right. I gave the image a red background and black text that says hover here.<img class="alignright size-full wp-image-174" title="top" src="http://www.thosecodes.com/wp-content/uploads/2009/08/top.jpg" alt="top" width="200" height="100" /></p>
<p>We just have one more task to complete with the image and then we are ready to start putting the CSS in for our roll over image. We need to put whatever we want the roll over to be on the bottom half. If you are doing text roll over images you must be careful in your placement. If you are 1px off you will be able to tell when you hover your mouse over the picture.</p>
<p>This roll over technique is useful for any roll over image that you would normally use javascript for. Now lets implement this last stage in our picture. My example may be seen on the right again.<img class="alignright size-full wp-image-173" title="final" src="http://www.thosecodes.com/wp-content/uploads/2009/08/final.jpg" alt="final" width="200" height="100" /></p>
<p>Now we need the CSS for our rollover image. You need to make your image a background-image inside a div. You need to give the div a class, set the background-image to the picture, set the size to the width of the image and set the height to half of the image. You set the height to half because you only want to display one part at a time. You will want to set a background-position of <em>left top;</em>. You will then want to make another CSS that is <em>yourclassname:hover</em> and set that to a background-position of <em>left bottom</em>. Example code of the CSS:</p>
<div class="code">.example {<br />
background-image: url(rollover/example.jpg);<br />
width: 100px;<br />
height: 25px;<br />
background-position: left top;<br />
}<br />
.example:hover {<br />
background-position: left bottom;<br />
}</div>
<p>The HTML Body cody would look like this:</p>
<div class="code">&lt;div class=&#8221;example&#8221;&gt;<br />
&lt;/div&gt;</div>
<p>The CSS makes it so only the top half of your image is shown. Then when the users mouse hovers over your image it shows the bottom half of your image.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thosecodes.com/roll-over-image-using-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding Content and a Navigation Bar</title>
		<link>http://www.thosecodes.com/adding-content-and-a-navigation-bar/#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed</link>
		<comments>http://www.thosecodes.com/adding-content-and-a-navigation-bar/#comments</comments>
		<pubDate>Sat, 05 Sep 2009 07:29:43 +0000</pubDate>
		<dc:creator>Zach</dc:creator>
				<category><![CDATA[HTML Tutorials]]></category>

		<guid isPermaLink="false">http://www.thosecodes.com/?p=47</guid>
		<description><![CDATA[If you are here you have either completed the WOS-LA website breakdown and want to learn how to add content and a navigation bar to the website or you know how to create your layout, but you need help with how to insert content. Either way, you will need the wos-la file to join me [...]]]></description>
			<content:encoded><![CDATA[<p><!--pagetitle:Adding Content and a Navigation Bar-->If you are here you have either completed the WOS-LA website breakdown and want to learn how to add content and a navigation bar to the website or you know how to create your layout, but you need help with how to insert content. Either way, you will need the wos-la file to join me in this tutorial. If you do not have it you can download a copy of the file <a class="inpar" href="http://www.thosecodes.com/wos-la.zip#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed">here</a>. You will need WinRar to unzip it. The file may be edited in whatever program you would like to use. If you do not<span id="more-47"></span> have one you can always use notepad!<br />
<br />
Lets get started. The rest of the screen shots I show in this tutorial will be zoomed up on the object we are inserting material to. We will start by adding a CSS navigation bar to this webpage. The following code is for a generic navigation bar so you can get used to the ropes. As you become more experiences you may play with more advanced navigation bars. I used <a class="selec" href="http://css.maxdesign.com.au/listamatic/" rel="nofollow">listamatic</a> to get the CSS and HTML code for this navigation bar.<br />
<br />
The HTML Code you need would look like this:</p>
<div class="code">&lt;div id=&#8221;navcontainer&#8221;&gt;<br />
&lt;ul id=&#8221;navlist&#8221;&gt;<br />
&lt;li id=&#8221;active&#8221;&gt;&lt;a href=&#8221;#&#8221; id=&#8221;current&#8221;&gt;Item one&lt;/a&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;a href=&#8221;#&#8221;&gt;Item two&lt;/a&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;a href=&#8221;#&#8221;&gt;Item three&lt;/a&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;a href=&#8221;#&#8221;&gt;Item four&lt;/a&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;a href=&#8221;#&#8221;&gt;Item five&lt;/a&gt;&lt;/li&gt;<br />
&lt;/ul&gt;<br />
&lt;/div&gt;</div>
<p>
The CSS for the code would look like this:</p>
<div class="code">#navlist li {<br />
display: inline;<br />
list-style-type: none;<br />
padding-right: 20px;<br />
}</div>
<p>
This gives you the bare minimums for a simple horizontal list. The inline display makes the list items appear on one line and the style type of none removes the bullets that an unstyled list would have. Place the HTML code in the div named &#8216;nav&#8217;. If you refresh your webpage it should now look similar to the image below.<br />
<br />
<img class="aligncenter size-full wp-image-142" title="navbar" src="http://www.thosecodes.com/wp-content/uploads/2009/08/navbar.jpg" alt="navbar" width="600" height="75" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thosecodes.com/adding-content-and-a-navigation-bar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WOS-LA Website Breakdown using Divs</title>
		<link>http://www.thosecodes.com/wos-la-website-breakdown-using-divs/#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed</link>
		<comments>http://www.thosecodes.com/wos-la-website-breakdown-using-divs/#comments</comments>
		<pubDate>Sat, 05 Sep 2009 07:29:26 +0000</pubDate>
		<dc:creator>Zach</dc:creator>
				<category><![CDATA[HTML Tutorials]]></category>

		<guid isPermaLink="false">http://www.thosecodes.com/?p=45</guid>
		<description><![CDATA[I will walk you through the recreation of this website using css. If you go to the website you will notice that the website is constructed with tables and images. Taking off image showing on your browser will make their website virtually blank. We will construct the entire website minus the flash and required images [...]]]></description>
			<content:encoded><![CDATA[<p>I will walk you through the recreation of this website using css. If you go to the website you will notice that the website is constructed with tables and images. Taking off image showing <span id="more-45"></span><img class="alignleft size-full wp-image-106" title="homepagesmall" src="http://www.thosecodes.com/wp-content/uploads/2009/08/homepagesmall.jpg" alt="homepagesmall" width="200" height="300" />on your browser will make their website virtually blank. We will construct the entire website minus the flash and required images with css. Please note this is for learning purposes only. This website belongs to White Oak Studio Landscape Architecture. To see this website you can <a href="http://www.wos-la.com/">click here</a>. If you want to have my code to trouble shoot what you did wrong you can right <a href="http://www.thosecodes.com/wos-la.zip#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed">click here</a> and choose save link as. You will need WinRar to unzip it.<br />
<br />
First we must start with creating a webpage document. To do this we need the essential code. We need to declare the html, style, head, title, and body. If you do not know how to do this you can look at the code I have provided below.</p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<div class="code">&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt; title of your website &lt;/title&gt;<br />
&lt;style type=”text/css”&gt;<br />
Your css style code goes here<br />
&lt;/style&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
Your content will go here<br />
&lt;/body&gt;<br />
&lt;/html&gt;</div>
<p>If you copy and paste this code you will have to replace the quotations or else it will not work. This is the begining code to every webpage. The style tags can be replaced later with a css style sheet, but for coding purposes it is easier to edit one document rather then two.<br />
<br />
Next we have to make our background black. To do this we have to add some css to our style tag. You reference the body by just typing body. You do not need a &#8216;#&#8217; or &#8216;.&#8217;. You may see an example of the code below. It goes inbetween the style tags. We also delcare our font type and how we want to align the text in this area.<br />
<br />
<img class="alignright size-full wp-image-108" title="blackscreensmall" src="http://www.thosecodes.com/wp-content/uploads/2009/08/blackscreensmall.jpg" alt="blackscreensmall" width="200" height="300" /></p>
<div class="code">&amp; body {<br />
margin: 0;<br />
padding: 0;<br />
background-color: #000;<br />
text-align: center;<br />
font-family: arial, helvetica, sans-serif;<br />
}</div>
<p>If done correctly your browser should now look like the screen shot on the right.</p>
<p>Next we need to create a div that contains our entire website. This will be the white background that the WOS-LA website has. To do this we need to create a div in the body of our website. Once we have this div created we need to style it in our css to give it a white background. If you do not know how to create a div you can reference the code below. I will also supply the CSS code for you. The height of this div is 891px and the width is 756px.</p>
<div class="code">&lt;div id=&#8221;main&#8221;&gt;<br />
&lt;/div&gt;</div>
<p>The CSS code would look like this:<img class="alignright size-full wp-image-111" title="firstdivsmall" src="http://www.thosecodes.com/wp-content/uploads/2009/08/firstdivsmall.jpg" alt="firstdivsmall" width="200" height="300" /></p>
<div class="code">#main {<br />
height: 891px;<br />
width: 756px;<br />
background-color: #fff;<br />
}</div>
<p>Yours should look similiar to the one on the right.<br />
<br />
Now, if you looked at their website you will notice their content is centered in the browser and pushed down. To center ours we need to add a margin into our main CSS style. When doing margins remember that it styles TOP, RIGHT, LEFT, BOTTOM. This means that if you type in margin: 0 auto 0 auto; then the browser will not move the page vertically, but will center the main div horizontally. If you have the same top and bottom tags and the same right and left tags, then you would only have to type margin: 0 auto;.<br />
<br />
Therefore the CSS you need to add to your #main to center the page is:</p>
<div class="code">#margin: 50px auto;</div>
<p>
<img class="alignleft size-full wp-image-110" title="divcentersmall" src="http://www.thosecodes.com/wp-content/uploads/2009/08/divcentersmall.jpg" alt="divcentersmall" width="200" height="124" />Your website should now look like the one on the left.<br />
<br />
Now we will create the flash box in the website. From here on we will assign random colors to our divs just so we can tell them apart. We will create this div just how we created our main div. The difference is this will be place inbetween the opening and closing of your content div. The flash width is 144px and the height is 143px. Example code is below as well as an image on the right to compare your new div.<br />
<br />
<img class="alignright size-full wp-image-114" title="flashsmall" src="http://www.thosecodes.com/wp-content/uploads/2009/08/flashsmall.jpg" alt="flashsmall" width="200" height="194" /><br />

<div class="code">&lt;div id=&#8221;main&#8221;&gt;<br />
&lt;div id=&#8221;flash&#8221;&gt;<br />
&lt;/div&gt;<br />
&lt;/div&gt;</div>
<p>The CSS would look like:<br />

<div class="code">#flash {<br />
height: 143px;<br />
width: 144px;<br />
background-color: #999;<br />
}</div>
]]></content:encoded>
			<wfw:commentRss>http://www.thosecodes.com/wos-la-website-breakdown-using-divs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Navigation Bars</title>
		<link>http://www.thosecodes.com/navigation-bars/#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed</link>
		<comments>http://www.thosecodes.com/navigation-bars/#comments</comments>
		<pubDate>Sat, 05 Sep 2009 07:22:57 +0000</pubDate>
		<dc:creator>Zach</dc:creator>
				<category><![CDATA[HTML Basics (learn HTML)]]></category>
		<category><![CDATA[HTML Tutorials]]></category>

		<guid isPermaLink="false">http://www.thosecodes.com/?p=8</guid>
		<description><![CDATA[HTML navigation bars can be fun and tricky to make. If you are not using special pictures for users to click on to navigate through your webpage then I highly suggest you use html/css navigation bars. They are easy to implement and you do not have to worry about broken links or the pictures not [...]]]></description>
			<content:encoded><![CDATA[<p>HTML navigation bars can be fun and tricky to make. If you are not using special pictures for users to click on to navigate through your webpage then I highly suggest you use html/css navigation bars. They are easy to implement and you do not have to worry about broken links or the pictures not showing up. However, as stated above, they are not as customizable as <span id="more-8"></span>image navigation bars.</p>
<p> </p>
<p>Well, if you decided to make image bars then you only need a few lines of code!</p>
<div class="code">&lt;a href=&#8221;home.jpg&#8221;&gt;<br />
&lt;img src=&#8221;images/homebanner.jpg&#8221;<br />
height=&#8221;50&#8243; width=&#8221;75&#8243; alt=&#8221;home&#8221;&gt;<br />
&lt;/a&gt;</div>
<p>An example of this can be seen here.</p>
<p> </p>
<p><a style="padding: 0; margin:0" href="##utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><br />
<img style="border: 2px solid #0000ff;" src="http://www.thosecodes.com/wp-content/themes/Zach/images/buttonexample.jpg" alt="home" width="75" height="50" /></a></p>
<p> </p>
<p>If your like me, you don&#8217;t like that blue line going around your nice box! To remove this blue line we have to add the style code &#8216;text-decoration: none;&#8217; and add a &#8216;border: none;&#8217; to the img code.</p>
<p> </p>
<div class="code">&lt;a style=&#8221;text-decoration: none&#8221; href=&#8221;home.jpg&#8221;&gt;<br />
&lt;img style=&#8221;border: none&#8221; src=&#8221;images/homebanner.jpg&#8221;<br />
height=&#8221;50&#8243; width=&#8221;75&#8243; alt=&#8221;home&#8221;&gt;<br />
&lt;/a&gt;</div>
<p> </p>
<p><a style="text-decoration:none; padding: 0; margin: 0" href="##utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><br />
<img style="border: none; padding: 0; margin: 0" src="http://www.thosecodes.com/wp-content/themes/Zach/images/buttonexample.jpg" alt="home" width="75" height="50" /></a></p>
<p> </p>
<p>If you are not doing a special button then you can create your navigation bar with html/css. There is no point in re-inventing the wheel so take a visit to <a style="COLOR: #1aa344; TEXT-DECORATION: none" href="http://css.maxdesign.com.au/listamatic/">listamatic</a>. This is a site with numerous navigation bars that you may use. Once you have found the one you wish to use, paste the HTML code inside your body tags. The code should be pasted where you want your nav bar to be located. Next copy and paste the CSS code into your style sheet. Voila! You now have a nice looking navigation bar.</p>
<p> </p>
<p>To change the colors, size, and style of the bar you must change the CSS code. To see an example of one of these navigation bars you may look at my vertical bar I use in this site. I got this bar from the website and re-styled the CSS to my liking.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thosecodes.com/navigation-bars/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
