Put the below in your page where you want the navigation. (Please note: this is just one link in the navigation table. Change the parts in red to suit your needs.)
Code:
<a href="url-to-page" class="nav"> Page title</a>
Then place this in your css:
Code:
a.nav:link, a.nav:visited, a.nav:active {
text-decoration: none;
font-family: arial, helvetica, sans-serif;
font-size: 8pt;
line-height:13pt;
color:#000000;
background-color: #E5E5E5;
cursor: default;
display: block;
margin: 0px;
margin-bottom: 0px;
padding: 3px;
border-left: 7px solid #D60000;
border-bottom:0px;
}
a.nav:hover {
text-decoration: none;
font-weight:none;
font-family:arial, helvetica, sans-serif;
font-size: 8pt;
line-height: 13pt;
color: #FFFFFF;
background-color: #000000;
cursor: default;
display: block;
margin: 0px;
margin-bottom: 0px;
padding: 3px;
border-left: 7px solid #000000;
font-style: normal;
}
Hope this helps.
Bookmarks