Popups are located off the screen in IE6
OverLIB did not sense that the browser being used is IE6, and therefore it doesn't know the correct set of
location rules to apply
In your overlib.js file, locate the "Microsoft Stupidity Check" at line 339 (Line 178 in overlib_mini.js). Add one line.
// Microsoft Stupidity Check(tm).
if (ie4) {
if (navigator.userAgent.indexOf('MSIE 5')>0) {
ie5 = true;
}
if (navigator.userAgent.indexOf('MSIE 6')>0) { ie5 = true; }; if (ns6) {
ns6 = false;
}
}
Comments, suggestions, feedback, success, failure? Let us know