Home › Forums › CSS › Container Div displays too high on in IE (6 and 7) › Re: Container Div displays too high on in IE (6 and 7)
June 16, 2010 at 2:55 am
#78047
Participant
First tip. Always start your stylesheet with
Code:
* {
margin:0;
padding:0;
}
margin:0;
padding:0;
}
It zero outs everything for cross browser compatibility. Judging by how the body and the container_one div are showing up with Fire Bug on Mozilla, I can see how it would not be pushing it down in IE 6 and 7. Start with that and reply if you still have troubles.
Also, just a heads up. You have to fix that font button in the bottom right. In IE7 it is rendering half way below the browser causing infinite scroll. Kinda weird. It’s attached to with java and that’s a game I don’t want to get into this late at night.
Good luck.