Esmi,
Thanks for the suggestion. I found the section of code that controls it, but I can’t figure out how to implement what you suggest. Here is the code:
<ul id="menus">
<li class="<?php echo($home_menu); ?>"><a class="home" title="<?php _e('Home', 'inove'); ?>" href="<?php echo get_settings('home'); ?>/"><?php _e('Home', 'inove'); ?></a></li>
<?php
if($options['menu_type'] == 'categories') {
wp_list_categories('depth=2&title_li=0&orderby=name&show_count=0');
} else {
wp_list_pages('depth=2&title_li=0&sort_column=menu_order');
}
?>
<li><a class="lastmenu" href="javascript:void(0);"></a></li>
</ul>
I tried changing the ‘2’ to a ‘3’ but that didn’t work.
Do you have any ideas?
PS – I have the option checked for ‘pages’ to be the top navigation.