Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: IE 6 breaking tables.


chrishajer
Participant

@chrishajer

I was able to get it to display properly in IE6 by changing the CSS for the #frontpage #discussions.

Old

#front-page #discussions {
margin-left: 170px;
width: 590px;
}

 

New

#front-page #discussions {
float: right;
width: 590px;
}

 

Basically, that change makes the #discussions div float to the right inside the #main div, rather than relying on the 170px of left margin. Not sure why IE6 does that and I didn’t investigate, but that fixed it for me. There might be other places you need to do that: I’m not sure. That was just for the home page of the forum.

Skip to toolbar