I am using Cutline 3-Column Split 1.1 for a website under construction.
I'd like to add drop down links in the header so that when someone moused over or clicked on a page link, links to any daughter pages would appear as a drop down menu.
There could be number, as many as six, daughter pages.
Of course this is possible. But, is there an easy modification to the header.php file? Do I need a particulat plug-in?
Has anyone done this?
The Revolution News theme has this feature. Here is a snippets from the header.php file that draws the top navigation bar (left side):
<div id="navbar">
<div id="navbarleft">
<ul id="nav">
<?php wp_list_pages('title_li=&depth=2&sort_column=menu_order'); ?>
</div>
...
Doesn't look like it calls a plug-in.