Horizontal menu in default WP theme
2 answers
Taking a look at your site, it looks like you might have figured it out by now, but just in case - to edit the page template, go to header.php in your theme folder and put this function under the <h1> header display:
<?php wp_list_pages(); ?>
Then you can wrap this function in a div and create a list that will be displayed horizontally.
Alternative solution: I haven't tried this, but there is a plugin to create a menu in WordPress - here's the link: http://wordpress.org/extend/plugins/allwebmenus-wordpress-menu-plugin/
Or just search for "menu" at http://wordpress.org/extend/plugins/
0
a source to share