Hi,
1) just give it a left margin:
Code:
#navigation ul{margin:0 0 0 320px}
2) Because you have given it a 66px bottom margin! Remove the bottom margin and it should be ok.
Code:
#navigation ul li a {
background:#EFE8CF url(img/nav_bg.jpg) repeat-x 0 0;
border:1px solid #EEE6CA;
color:#990022;
display:block;
float:left;
margin:66px 2px 0;
padding:4px 16px;
text-decoration:none;
}
Your left and right shadow images would have been better as one image (i.e left and right bits in on wide image) that could be applied to the background of the main container in one go. This would clean up the html and make it more solid without those floats in the way.
Bookmarks