Hi Daniel,
you can use the following script for the pages menu:
<div id="my-menu">
<?php wp_page_menu('show_home=1'); ?>
</div><!-- my-menu ends -->
The above code will show a menu of all blog pages including home page.
The css for this depends on your theme color and sizes, but try this:
#my-menu {
float: left;
width: 1020px;
height: 35px;
}
#my-menu .current_page_item {
background-color: lightred;
}
#my-menu li:hover {
background-color: darkblue;
}
#my-menu li {
float: left;
list-style: none;
font-family: Verdana;
font-size: 14px;
text-align: center;
height: 28px;
padding-top: 7px;
padding-left: 5px;
padding-right: 5px;
}
#my-menu a {
text-decoration: none;
color: #8D95CD;
}
[signature moderated Please read the Forum Rules]