Hello,
This is my first table-less site, so go easy on me, this may be a really easy question.
http://www.transeca.com
On the above page you see the navigation bar under the header, basically I want these links evenly spaced out across 100% of the width.
Right now they are UL items in a DIV, with the below CSS:
#menu {
background: #6699FF;
background: url(../images/header_slice.png);
float: left;
list-style: none;
margin: 0;
padding: 0;
width: 100%;
}
#menu li {
float: left;
font: 67.5% "Lucida Sans Unicode", "Bitstream Vera Sans", "Trebuchet Unicode MS", "Lucida Grande", Verdana, Helvetica, sans-serif;
margin: 0;
padding: 0;
}
Any guidance would be great!
Thanks!
Last edited by bmp99; 05-07-2009 at 01:08 AM..
|