For some reason phpbb3 put a min width for IE6 on the prosilver theme that you're seeing. So when you check the forum with ie6 and resize the window, the whole design goes bad (try it & you'll see).
Adding this fixes the min width problem on IE6
- Code: Select all
* html #wrap {
width: expression(document.body.clientWidth <900 ? "810px" : "95%" );
}
However, when resizing the window, the right sidebar goes left instead of saying there. Wasting time trying to find a solution with this since I'm not that good all this stuff. If you know better: I'd appreciate help with this.
Thanks!



