Help! I can't for the life of me center this **** horizontal navigation
* {
margin:0;
padding:0;
}
body {
font-size: 14px;
font-family: Verdana;
background-color: #fff;
height: 100%;
}
/* Header */
#header {
height: 198px;
width: 734px;
margin: 0 auto;
background: url('img/head.jpg') no-repeat;
border-top: 1px solid #000;
border-left: 1px solid #000;
border-right: 1px solid #000;
margin-top: 5px;
}
/* Menu */
#menu {
width: 734px;
height: 40px;
margin: 0 auto;
background: url(img/nav.jpg);
border-left: 1px solid #000;
border-right: 1px solid #000;
border-top: 1px solid #000;
}
#menu ul {
margin: 0 auto;
padding: 0;
list-style: none;
line-height: normal;
margin-top: 2px;
text-align: center;
}
#menu li {
display: inline;
}
#menu a {
display: block;
float: left;
width: 168px;
height: 18px;
padding: 4px 4px 0 4px;
text-align: center;
text-decoration: none;
background: url(img/img05.png) no-repeat center top;
margin: 0 auto
}
#menu a:hover {
background-image: url(img/img06.png);
}
#menu .active a {
background-image: url(img/img06.png);
}
/* Content */
#content {
width: 734px;
margin: 0 auto;
border: 1px solid #000;
border-top: none;
background: #f4f7f2;
}
|