Forum Moderators: not2easy
<ul id="subnav">
<li> <a href="link1.html">Link One</a> </li>
<li> <a href="link2.html">Link Two</a> </li>
<li> <a href="link3.html">Link Three</a> </li>
</ul>
#subnav {
color: #3c3c3c;
font-size: 18px;
margin: 0px;
padding: 3px 0px;
border-bottom: 2px solid #db0029;
width: auto }
#subnav li {
list-style-type: none;
margin: 0px 6px 0px 0px;
position: relative;
width: auto;
display: inline }
#subnav li a {
background-color: white;
float: none;
padding: 3px;
border-style: solid solid none solid;
border-width: 1px;
border-color: #3c3c3c;
width: auto }
#subnav li a:hover {
color: #db0029;
border-style: solid solid none solid;
border-color: #db0029 }
i found that the list in this tutorial [css.maxdesign.com.au] worked as you want.
you will need .clearboth {
clear: both;
}
in the CSS and to put <br class="clearboth"> immediately beneath the navigation div for it to appear correctly in mozilla
jim