GRRR!! Can’t get the bullets removed from my pages list!
July 15th, 2007If anyone can make a suggestions, I would hugely appreciate it. Here’s what I think is the necessary code:
From the CSS:
/*** NavBar Format ***/
#Nav {
margin-top: 8px;
padding: 0;
list-style: inline;
float: right;
font-family: Calibri, Verdana, Trebuchet, Arial, Sans-Serif;
font-size: 14px;
margin-right: 12px;
}#Nav li {
float: left;
color: #fff;
}#Nav li.first a{
color: #fff;
text-decoration: none;
}#Nav a {
float: right;
padding: 0 5px 0 5px;
text-align: center;
line-height: 30px;
text-decoration: none;
color: #fff;
width: 80px;
}#Nav a:hover
{text-decoration: none;
color: #D83B00;
}
And from the Header:
<div id=”Nav”>
<ul><li class=”page_item”><a href=”<?php bloginfo(’url’); ?>”>Home</a></li>
<?php wp_list_pages(’title_li=’); ?>
</ul>
</div>



July 18th, 2007 at 11:02 am
Add the following to the CSS:
#Nav ul {
list-style-type: none;
}