Yeah, set it to 100%
Main Topics
Browse All TopicsI'm having a problem with my menu (see pic) its not stretching across the screen when i maximize windows on other computers. or even center it.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
change the li a to % as well... or better yet don't give them a width and using padding to seperate them....
Here is how I do it on my site http://www.effectivewebdes
make this change and you should be good to go...
body{
margin:0 auto;
text-align:center;
}
.menu{
border:none;
border:0px;
margin:0px;
padding:0px;
font: 67.5% "Lucida Sans Unicode", "Bitstream Vera Sans", "Trebuchet Unicode MS", "Lucida Grande", Verdana, Helvetica, sans-serif;
font-size:10px;
font-weight:bold;
width:100em;
display:-moz-inline-stack;
display:inline-block;
zoom:1;
*display:inline;
vertical-align:top;
margin-top:5em;
}
What I did is center the body and then added
display:-moz-inline-stack;
display:inline-block;
zoom:1;
*display:inline;
vertical-align:top;
margin-top:5em;
to the menu container. See the problem is that with floated objects you cannot center them. So the css trick around this is use display:inline-block. The problem is display:-inline-block does not work in IE so the other things are needed to force IE to behave...
Business Accounts
Answer for Membership
by: lharrispvPosted on 2009-08-12 at 06:58:01ID: 25078740
set you width in .menu to 100em (or better yet 100%) rather than in .menu ul.