Quote:
Originally Posted by Aryana Okay yeah, I just used http://ipinfo.info/netrenderer/index.php to check, it looks ok on IE7 but breaks on IE6. I really need to figure out a quick fix for this because we may be loosing clients on older browsers when they see no content. |
Cool. I also suggest using
Browser Shots since you can try more browsers on more platforms but getting site updates tested can be challenging.
Quote:
|
I tried to fix it with a conditional CSS targetting IE6, but it still seems to be breaking on IE6. I am wondering if the large left-padding of the main text is not going below the floated sidebar like it should, thus causing it to break, while it renders fine on older browsers? I had to use that padding because I didn't want the main text (and the bg of the titles) to wrap around the sidebar.
|
I found some IE6 styling that appears to work. Attached is a screenshot.
Put this CSS style in an IE6 specific stylesheet you conditionally include:
Code:
#main {
padding-left: 0px;
margin-left: 245px;
padding-right: 5px;
margin-right: 0px;
} See what that does. The above rendered as displayed in the attached screenshot. The screenshot is of Maxthon 2.1.1 (w/ IE6 rendering engine).
Peace...