Forum Moderators: not2easy
the code
#nav{
background-color: #006699;
color: #FFFFFF;
padding: 1px 1% 1px 0%;
width: 99%;
border-top-width: 1px;
border-bottom-width: 1px;
border-top-style: ridge;
border-bottom-style: ridge;
border-top-color: #000000;
border-bottom-color: #000000;
float: left;
z-index: 1;
}
is there a way I can hide another specifcation for the width to be 100% from IE6/Moz?
Sounds like you may be running into IE's incorrect rendering of the box model. Try it without the padding and borders to see.
You may need to use the famous 'box model hack' - A google search should bring up the right page ;)
Nick