Forum Moderators: not2easy
How can I make it so when they shrink (minimize) the browser they dont shrink my CSS menu into different row?
Most often this is because the total width of your internal elements exceeds the width of your container. Try setting the min-width property on the container (although this doesn't work in IE6; you need to do some special tricks or just set a fixed width on the container . . ugh.)
<div id="main">
.... internal elements
</div>
....
#main { width: 95%; min-width: 800px; max-width: 1024px; }