Make the following changes to your css to center the #navigation menu using inline-block list items.
Line 37
Code:
#navigation {
background: none repeat scroll 0 0 #B5F0E5;
float: left; /* Deleting this property will show the #navlist border-bottom; see line 344 below. */
width: 900px;
}
Line 43
Code:
#navigation ul {
margin: 0;
padding: 0;
text-align: center; /* add this property */
}
Line 49
Code:
#navigation ul li {
display: inline-block; /* change this property */
list-style-type: none;
vertical-align: top; /* add this property */
}
Line 344
Code:
#navlist {
border-bottom: 1px solid #000000; /* Do you want this border showing? If no, delete it. */
margin: 0;
padding: 0 0 20px 10px;
}
Line 383
Code:
#navigation li {
float: left; /* delete this property */
position: relative;
Bookmarks