Now my users are complaining that on larger screens the edge of some of their content gets clipped, and anyway there's too much whitespace.
I'm trying a hack that looks like this:
Quote:
#ie6anddown #mainContent{
width: expression(document.body.clientWidth < 600? "560px" : "auto");
}
|
But IE doesn't seem to want to recognize that the window is small. I set the "less than" value to 1200 and it still wouldn't use the width reduction. It just defaults to "auto" near as I can tell.
Have I mentioned that I hate IE?