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