I have a working code for a vertical navigation bar, but I want it to:
1). move along with me as I scroll down....
2). keep it on the left side and not interfer with the textual information in paragraphs...
here is my vertical navigation code:
ul#navigation {
width: 12em;
}
ul#navigation li {
list-style: none;
background-color: #039;
border-top: solid 1px #039;
text-align: left;
margin: 0;
}
ul#navigation li a {
display: block;
text-decoration: none;
padding: .25em;
border-bottom: 1px solid #3399FF;
border-right: 1px solid #3399FF;
}
a:link, a:visited { color: #FFFFFF; }
a:hover, a:active { color: #000000; }
a:hover { background-color: #fff; }
p a:link, p a:visited { color: #000; }