I created a custom menu, but how can I implement it?
Here's my url. I bought the theme. http://bit.ly/gXh1sj
Here is the code from that part:
<!--/logo -->
<div class="topnav">
<ul>
<li class="<?php if (is_home()) { ?>current_page_item<?php } ?>"><a href="<?php echo get_option('home'); ?>" title="<?php bloginfo('name'); ?>">Home</a></li>
<?php wp_list_pages('title_li='); ?>
</ul>
<div class="clr"></div>
</div>
<!--/topnav -->
<div class="clr"></div>
<?php include (TEMPLATEPATH . '/slide_block.php'); ?>
<div id="nav1">
<ul class="sf-menu sf-js-enabled">
<?php wp_list_categories('title_li='); ?>
</ul>
<div class="clr"></div>
</div>
</div>
<!--/header -->
The menu is at <?php wp_list_pages('title_li='); ?>
But how can I replace this with dropdown menus, etc?