Not sure how much code you need, I’ve pasted here the menu coding from index.php… let me know if I need to make a change:
<div id=”menu”>
- <?php _e(‘Categories:’); ?>
<?php get_links_list(); ?>
<li id=”search”>
<label for=”s”><?php _e(‘Search:’); ?></label>
<form id=”searchform” method=”get” action=”<?php echo $PHP_SELF; ?>”>
<div>
<input type=”text” name=”s” id=”s” size=”15″ />
<input type=”submit” name=”submit” value=”<?php _e(‘Go!’); ?>” />
</div>
</form>
<li id=”archives”><?php _e(‘Archives:’); ?>
<?php wp_get_archives(‘type=monthly’); ?>
<li id=”calendar”>
<?php get_calendar(); ?>
<li id=”other”><?php _e(‘Other:’); ?>
– Rebekkah