>>> http://www.projectresponder.com/showindex.asp

...and now that the source-code is fine (almost), we can hunt down that
IE 'duplicate' bug.

The trigger is...

.hide {
display: none;
}

...but I have not encountered this bug-version before so I have no idea
why. (IE/win behaves in mysterious ways...)


Anyway, the solution is to restyle '.hide', and use an "off-screen"
variant to hide those elements from view...

.hide {
position: absolute;
top: -9000px;
left: -9000px;
}

...and the 'duplicate' is gone.


If anyone know this particular IE 'duplicate' bug - now is the time to
tell us about it. I dislike having a fix without knowing more about the
cause - even for an old IE/win bug :-)

regards
        Georg
-- 
http://www.gunlaug.no
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to