I think I know what you mean... Maybe something like this?
HTML
Code:
<div id="menu">
<ul>
<li><a href="#">Menu Item</a></li>
<li><a href="#">Menu Item</a></li>
<li><a href="#">Menu Item</a></li>
<li><a href="#">Menu Item</a></li>
</ul>
</div>
CSS:
Code:
#menu {
width:100%; /* 100% of browser window */
background:#000 url(img) repeat-x top left; /* BG color/img */
}
#menu ul {
margin:0 auto; /* Centers in the middle of div */
width:900px; /* Width of rest of site */
list-style:none; /* Remove bullet points */
padding:0;
margin:0;
}
#menu ul li {
display:block;
float:left;
}
#menu ul li a {
float:left;
display:block;
padding:0 25px;
}
Hope this helps...
- Alex
Bookmarks