You'll basically need to rewrite a lot of your code for your site to work. Your website essentially has 4 parts all wrapped within a "wrapper" div:
- Header
- Sidebar
- Content
- Footer
So consider the following html to divide your content:
<div id="wrapper">
<div id="header">
</div>
<div id="sidebar">
</div>
<div id="content">
</div>
<div id="footer">
</div>
</div> <!-- close "wrapper" -->
- <div id="wrapper">
-
- <div id="header">
- </div>
-
- <div id="sidebar">
- </div>
-
- <div id="content">
- </div>
-
- <div id="footer">
- </div>
-
- </div> <!-- close "wrapper" -->
-
After you separate your content as the example above shows, you can move each div around with css:
#wrapper {
width: 960px;
}
#header {
height: 150px;
}
#sidebar {
width: 250px;
float: left;
display: inline; /* display inline is applied to floated elements so they works in IE6 */
}
#content {
width: 710px; /* your wrapper width minus your sidebar width */
}
- #wrapper {
- width: 960px;
- }
-
- #header {
- height: 150px;
- }
-
- #sidebar {
- width: 250px;
- float: left;
- display: inline; /* display inline is applied to floated elements so they works in IE6 */
- }
-
- #content {
- width: 710px; /* your wrapper width minus your sidebar width */
- }
-
Once you have your section, you can add your visible content inside of their appropriate divs. For instance, your navigation would go inside your "sidebar" div.
A navigation bar is essentially a list of items, so why not use a list to declare them? It would look something like this:
<div id="sidebar">
<ul id="navbar">
<li><a href="index.html">Home</a></li>
<li><a href="artist.html">Artist</a></li>
<li><a href="night-1.html">Night</a> <!-- here, you can embed another list for your indented link items -->
<ul>
<li><a href="night-2.html">6-11</a></li>
<li><a href="night-3.html">12-16</a></li>
<li><a href="night-4.html">17-21</a></li>
<li><a href="night-5.html">22-26</a></li>
<li><a href="night-6.html">27-31</a></li>
</ul>
</li> <!-- close list item -->
<li><a href="man-1.html">Man</a></li>
</ul> <!-- close "navbar" -->
</div> <!-- close "sidebar" -->
- <div id="sidebar">
-
- <ul id="navbar">
- <li><a href="index.html">Home</a></li>
- <li><a href="artist.html">Artist</a></li>
- <li><a href="night-1.html">Night</a> <!-- here, you can embed another list for your indented link items -->
- <ul>
- <li><a href="night-2.html">6-11</a></li>
- <li><a href="night-3.html">12-16</a></li>
- <li><a href="night-4.html">17-21</a></li>
- <li><a href="night-5.html">22-26</a></li>
- <li><a href="night-6.html">27-31</a></li>
- </ul>
- </li> <!-- close list item -->
- <li><a href="man-1.html">Man</a></li>
- </ul> <!-- close "navbar" -->
-
- </div> <!-- close "sidebar" -->
-
Continue adding content within each div section and play around with the css, if you have any further troubles let us know.
Use your words like arrows to shoot toward your goal.