Forum Moderators: not2easy
you will need to control the overflow property too.
although you div itself is only 20px high the content of the div will, by default, overflow the 20px boundary (or in IE it will stretch it), try putting a temp background color on the div to see the difference between stretching and overflowing.
But if you explicitly set the overflow to hidden it should be fine..
#menuhide {
background: #ffc; /* temporary */
height: 20px;
/* height: auto; */ /* toggle value - or your 500px; */
overflow: hidden;
}
Suzy