Why dont the dashes show up between the links.
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<style>
div.bottomNavBar{
background:#25587E;
margin:9px 9px 0 9px;
}
ul.bottomNavBarul{
padding:0;
margin:0;
margin-left: 40px;
list-style-type:none;
text-transform:uppercase;
width:100%;
}
li.bottomNavBarli{
display:inline;
}
a.bottomNavBara{
float:left;
margin-right:5px;
padding:1px;
color:white;
text-decoration: none;
font-size:95%;
}
</style>
</head>
<body>
<div class="bottomNavBar">
<!-- Bottom Horizontal Navigation Bar Links Go Here -->
<ul class="bottomNavBarul">
<li class="bottomNavBarli"><a class="bottomNavBara" href="#">Link one</a></li>
<li class="bottomNavBarli">-</li>
<li class="bottomNavBarli"><a class="bottomNavBara" href="#">Link two</a></li>
<li class="bottomNavBarli">-</li>
<li class="bottomNavBarli"><a class="bottomNavBara" href="#">Link three</a></li>
<li class="bottomNavBarli">-</li>
<li class="bottomNavBarli"><a class="bottomNavBara" href="#">Link four</a></li>
</ul>
</div>
</body>
</html>
Last edited by jamest; 08-29-2007 at 09:51 PM..
|