I'm using the Music Template for my site at http://www.magnatone.info but I can't figure out how to make the menu horizontal rather then vertical. I'd like it to go across the page right above the red area. Can somebody point me in the right direction?
I tried accessing the CSS to see what you had as the css for the navigation code, but for some reason it won't let me access it, so are you using the CSS that comes with the music template or did you modify it? Your HTML should look like this: <div id="header_menu"> <a href="http://#"><b>History</b></a> <a href="http://#"><b>Models</b></a> <a href="http://#"><b>Forum</b></a> <a href="http://#"><b>Schematics</b></a> <a href="http://#"><b>Contacts</b></a> </div> <!-- End of Page Header : Menu --> And in your CSS you need to widen the navigation menu to something larger for example it should be something like: /* Header Navigation Menu */ #header_menu { padding-top: 28px; width:500px; float: left; } Hope that helps...