I dont think he has any idea on how to start itIt depends how you do it, are you having your links in <ul><li> format, or just plan <a> links?
Draw something up in paint on how you would like it, (I know you want a vertical navigation, but how you want it exactly confuses me) and I'll explain how you would go about this.Hey i am trying to make a vertical navigation. I want the background of it to stretch all the way to the bottom of the page if that makes sense. I am having some trouble doing this and i cannot find any tutorials or anything. Someone help?
body {
font-family: Georgia;
background-color: #FFF;
}
ul, li {
list-style-type: none;
margin: 0;
padding: 0;
}
.navbar ul {
background-color: #FE9A2E;
position: absolute;
top: 0;
left: 0;
height: 100%;
}
.navbar li {
background-color: #FE642E;
margin: 15px 0px 15px 0px;
padding: 5px 100px 5px 5px;
}
<div class="navbar">
<ul>
<li>List Item 1</li>
<li>Homepage</li>
</ul>
</div>
<ul class="navigation">
<li><a href="#">Home</a></li>
<li><a href="#">Page</a></li>
<li><a href="#">Nother</a></li>
</ul>
.navigation ul { ... }
.navigation ul li a {
background-color: #FE642E;
margin: 15px 0px 15px 0px;
padding: 5px 100px 5px 5px;
}
.navigation ul li a:hover { /* Style hover */ }
.navigation ul li a:active { /* Style active */ }