To remove the drop down menu items, do the following...
- Open "header.php"
- Locate the following items in the "dropmenu"...
<?php wp_list_cats('exclude='. $the_cat .''); ?>
and
<?php wp_list_pages('sort_column=menu_order&exclude='. $the_page .'&title_li='); ?> - add "&depth=1" to each so that they look like this...
<?php wp_list_cats('exclude='. $the_cat .'&depth=1'); ?>
and
<?php wp_list_pages('sort_column=menu_order&exclude='. $the_page .'&title_li=&depth=1'); ?> - that's it!