|
IE 6 and 7 have a different "box model" than newer browsers and that will often cause problems. I cant see how you page looks in these browsers right now but i'm guessing that's the problem. Often it sis necessary to specify some css rules that are specific to these browsers. A way of doing that could be to paste something like this
<!--[if lt IE 8]>
<link rel="stylesheet" type="text/css" href="ie7-and-down.css" />
<![endif]-->
somewhere in the head section, but below the link to your main stylesheet. Then you make a new stylesheet (Called: ie7-and-down.css) only for these old IE browsers. Here you only need to (over)write the styles that needs changing for everything to look right in old IE. Cumbersome, but that's at least one way to do it.
|