Hi. :)
I'd imagine this will be a pretty simple trick for some of you.
Basically, I want a horizontal navbar that displays my pages, and upon hovering over a certain menu item, the subpages are displayed directly below.
Right now, I've got every part fully working except for the sub-page display. Can someone help? Here's my code:
HTML:
<div id="navcontainer">
<ul id="navlist">
<li<?php if(is_home()) echo ' class="current_page_item"' ?>><a href="<?php bloginfo('url'); ?>/">Home</a></li>
<?php wp_list_pages('title_li=&sort_column=menu_order&depth=0&include=');?>
</ul>
</div>
CSS:
CSS Here
Thanks! :)