Hi, I'm trying to figure out a bug with a site that will be viewed in IE6 SP2. Basically the content was centered (on intro page with no scrollbar) but we realized once in test, that the content shifts left on pages that are longer and have scrollbars. We tried two things - one worked in every browser but IE6 SP2 and the other was to put a scrollbar even on pages that didn't need it thinking that would do the trick. Still no luck. 1st try (but we found this is only "partially" supported in IE6 SP2)
html {
overflow-y: scroll;
}
2nd try
html { height: 100%; margin-bottom: 1px; }
}
Funny thing is before any fix, the content shifted left to fit the scrollbar. Now with both methods above, we see a slight shift right on longer pages instead.
I'm not the developer so if I need to post more code/other info for you to help, let me know. I GREATLY appreciate any help you can give.