Menu on Music Template

Discussion in 'HTML - XHTML - CSS' started by theehman, Jun 8, 2007.

  1. theehman New Member

    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?
  2. lmfrench New Member

    remove the <li></li> this creates a list...
  3. theehman New Member

    Is that on the HTML or the CSS?
  4. Scoooooty New Member

    Its in the HTML
  5. lmfrench New Member

    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...