I am having this issue where I am not getting the true offset in IE6. I am using the offset to position a pop-in.
The CSS is something like this:
.container50-50-right-border { }
.container50-50-right-border .title {padding: 0px; margin: 0px;
clear: both;}
.container50-50-right-border .leftcolumn {width: 47%; float: left;
display:inline;}
.container50-50-right-border .rightcolumn {width: 48%; float: left;
display:inline;
border-left: 1px solid #D6D7DE;
padding: 0px 0px 0px 10px;
margin: 0px 0px 0px 10px;}
.container50-50-right-border .description {clear: both;}
when I remove the padding and margin from the
.container50-50-right-border .rightcolumn
it behaves a little better but not perfectly. The positioning code is well tested so I don't think it's that.
Sorry for the sparse amount of code. Any help would be appreciated.