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

primary menu dropdown function

  • in looking at a theme like twentyten, what code or function within that theme executes the primary menu dropdown function? I don't see anything within the code of header.php or functions.php that would call for the code to do it? what am I missing? is it a function built into wordpress or as part of the call to wp_nav_menu?

    Al
  • I guess to answer my own question about Twentyten dropdown menu:

    #access ul ul {
    display: none;
    }
    #access ul li:hover > ul {
    display: block;
    }

    It appears that the use of "display:block;" on hover is used to display the dropdown menus.

    Some parts have been editted out to shorten the code display.

    Al