treehouse : what would you like to learn today?
Web Design Web Development iOS Development

CSS Drop Down Nav Bar Menu

  • There seems to be an issue with my drop down nav bar menu and after working with it not sure what the cause is. Anyone else able to pinpoint the issue?

    http://kansasoutlawwrestling.com/v3/index.php
  • The navigation is calling ul#nav2 which you haven't styled. You have styled #nav ul li etc.
  • Okay I changed some things around so that I only have to worry about the first main menu headings first.

    How does it look now?
  • I think I have it looking pretty good now however I'm having issues with the positioning of the submenus. Anyone guide me to how to improve it.
  • Change
    #nav ul li ul {
    display:none;
    position:absolute;
    top:0;
    }

    To
    #nav ul li ul {
    display:none;
    position:absolute;
    top:0;
    margin-top: -10px;
    }