What the heck? There's a menu at the bottom of the page
I thought I had messed up my code somehow, but there is ALMOST the same menu at the bottom of the page as there is at the top. Guess there is not really a problem with it being there except for the fact that the categories are not in the bottom menu. Delete!
Here's the code to look for in the footer.php file to delete it.
Replace:
<ul>
<li class="first"><a href="<?php echo get_option('home')?>"><?php _e('Home','appthemes'); ?></a></li>
<?php wp_list_pages('sort_column=menu_order&depth=1&titl e_li=&exclude='.get_option('cp_excluded_pages')); ?>
</ul>
With:
<ul>
<li class="first"></li>
</ul>
Done.