hard coding?
try to edit header.php, and add the code for a page navigation:
<div id="head_nav">
<ul>
<?php wp_list_pages('title_li=' ); ?>
</ul>
</div>
– so that the code at the end looks like:
<div id="header" role="banner">
<div id="headerimg">
<?php $blog_title = get_bloginfo('name');
$blog_title = str_replace('o','<span style="color: #ccc;">o</span>',$blog_title);
?>
<h1><a href="<?php echo get_option('home'); ?>/"><?php echo $blog_title; ?></a></h1>
<div class="description"><?php bloginfo('description'); ?></div>
</div>
</div>
<div id="head_nav">
<ul>
<?php wp_list_pages('title_li=' ); ?>
</ul>
</div>
<hr />
to turn it into a horizontal nav, edit style.css and add these lines at the end:
/* horizontal header nav */
#head_nav {margin: 5px 20px; float:left; background-color: #eee; width:720px; }
#head_nav h2 {display:none;}
#head_nav ul {
float: left;
width: 100%;
margin:0;
padding-left: 0;
list-style-type:none;
}
#head_nav ul li { display: inline; }
#head_nav ul li a {
float: left;
display:block;
padding-top: 7px;
padding-bottom: 5px;
padding-left:10px;
padding-right:10px;
text-decoration: none;
border-right: 1px solid #000033;
background:#eee;
color:#000066;
font-size:120%;
}
#head_nav ul li.current_page_item a {
background-color: #ddd; color: #000;
}
#head_nav ul li a:hover {
background-color: #ccc ; text-decoration:none;
}
ul li .current-page-item a { color:#ddd; }
change the colors, etc. to your liking…
be aware, that the default them will be replaced with an update of wordpress, it is a good idea to save your modified default theme under a new name ??