Posted by Thomas Mlynarczyk on 10/14/05 21:53
Also sprach news@celticbear.com:
> My blog page: http://www.celticbear.com/weblog/ looks fine in Firefox
> and Opera, but in IE6, the main body block positions itself below the
> left menu bar.
I did a quick test with IE5.0 (the problem appears there as well). I'm not
sure what's really going on, but changing the "margin" to "padding" in
#content and #sidebar did the trick:
#content {
/* margin: 0 10px 0 0; */
padding: 0 10px 0 0;
}
#sidebar {
/* margin: 0 0 0 10px; */
padding: 0 0 0 10px;
}
Greetings,
Thomas
[Back to original message]
|