benspangler 0 Report post Posted April 22, 2010 Is it possible to add a fourth level of navigation to the drop down menus? We have several areas where we would like to have people get deeper into our structure with out having to click pages for redirection. We are also experiening an issue where the highlight in the navigation stays on the first menu item while another highlight is created to follow the cursor. We have iBlogPro4 http://www.shorelinechurch.org Thanks, Ben Share this post Link to post Share on other sites
cmunns 16 Report post Posted April 22, 2010 You can modify the dropdown.css file in the pro folder so it includes 4th level, but generally speaking I would consider using sub-navigation instead. Share this post Link to post Share on other sites
benspangler 0 Report post Posted April 22, 2010 Are there any resources that you can point me to that would help make the need changes? Share this post Link to post Share on other sites
Andrew 207 Report post Posted April 22, 2010 you could try adding something like this to the end of dropdown.css... ` #nav ul.dropdown ul ul ul { left: 100%; top: 0; } #nav ul.dropdown ul li:hover > ul { display: block; } ` and change this line in `_nav.php`: `wp_list_pages('exclude='.$frontpage_id.$forum_exclude.'&depth=3&title_li=');?>` to `wp_list_pages('exclude='.$frontpage_id.$forum_exclude.'&depth=4&title_li=');?>` that's untested... but some variation of it should work. Share this post Link to post Share on other sites