Ok I spent some time looking on the Internet for tutorials on horizontal menus but nothing really has what I am trying to achieve. I have a background that the buttons sit on. The buttons are all sliced (6 of them for the "up" state and 6 for the "hover/down/active" state. I need a jump start to get this going. All buttons as sliced individually....don't know if that is correct. I have my unordered list and I know that I have to make it in-line to get get it horizontal...at least I think I do. If you could explain how this is done and what is the easiest way to do this so I can reuse the code in the future.
Here is the HTML
<div id="nav_bg">
<ul id="menu">
<li><a href="#">Home</a></li>
<li><a href="#">History</a></li>
<li><a href="#">How Can We Help?</a></li>
<li><a href="#">Design Pricing</a></li>
<li><a href="#">Portfolio</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
Here is the CSS so far...I have the nav background but am not sure where to start for the actual buttons.
#nav_bg {
background-image: url(../images/nav_bg.png);
background-repeat: no-repeat;
margin-left: 115px;
height: 117px;
}







.


Bookmarks