Hi - I have been testing a navigation bar that I found online (please see code below), that will not center (i.e., margin: autoin the fixed position and was wondering if there is away around this problem. Thank you... Ronnie
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"
<html xmlns=" xml:lang="en" lang="en">
<head>
<title></title>
<style type="text/css">
#navlist{
padding: 0 1px 1px;
margin: auto;
font: bold 12px Verdana, sans-serif;
width: 50%;
font-family: arial, sans-serif;
height:100px;
/* position:fixed; - Does not center */
font-size:14px;
z-index:100;
color: #336699;
}
#navlist li{
list-style: none;
margin: 0;
border-top: 1px solid gray;
display: inline;
}
#navlist li a{
padding: 0.25em 0.5em 0.25em 0.75em;
border-left: 1em solid #AAB;
background: #CCD;
text-decoration: none;
}
#navlist li a:link {
color: #448;
}
#navlist li a:visited {
color: #667;
}
#navlist li a:hover{
border-color: #FE3;
color: #FFF;
background: #332;
}
</style>
</head>
<body>
<div id="navcontainer">
<ul id="navlist">
<li id="active"><a href="#" id="current">Item one</a></li>
<li><a href="#">Item two</a></li>
<li><a href="#">Item three</a></li>
<li><a href="#">Item four</a></li>
<li><a href="#">Item five</a></li>
</ul>
</div>
</body>
</html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"
<html xmlns=" xml:lang="en" lang="en">
<head>
<title></title>
<style type="text/css">
#navlist{
padding: 0 1px 1px;
margin: auto;
font: bold 12px Verdana, sans-serif;
width: 50%;
font-family: arial, sans-serif;
height:100px;
/* position:fixed; - Does not center */
font-size:14px;
z-index:100;
color: #336699;
}
#navlist li{
list-style: none;
margin: 0;
border-top: 1px solid gray;
display: inline;
}
#navlist li a{
padding: 0.25em 0.5em 0.25em 0.75em;
border-left: 1em solid #AAB;
background: #CCD;
text-decoration: none;
}
#navlist li a:link {
color: #448;
}
#navlist li a:visited {
color: #667;
}
#navlist li a:hover{
border-color: #FE3;
color: #FFF;
background: #332;
}
</style>
</head>
<body>
<div id="navcontainer">
<ul id="navlist">
<li id="active"><a href="#" id="current">Item one</a></li>
<li><a href="#">Item two</a></li>
<li><a href="#">Item three</a></li>
<li><a href="#">Item four</a></li>
<li><a href="#">Item five</a></li>
</ul>
</div>
</body>
</html>