You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is most probably some IE6 render quirk, but on some pages with redirection, the iframe goes hidden after the redirection kicks in (at least, that's what I think it does).
The fix that works is to change the following line from the 'ie6fix' CSS:
.tu_transparent { filter: alpha(opacity = 0); }
into:
.tu_transparent { visibility: hidden; }
Perhaps changing all other (also non-IE) zero-opacity settings into this visibility:hidden is a performance improvement?
Thanks,
Chris (your colleauge)
The text was updated successfully, but these errors were encountered:
I will take a look at the possible performance improvement. As for the dodgy iframe rendering in IE6, do you have a test page online so I can test it in IE6 and IE7 myself? Either way, thank you for contributing little fixes for TopUp.
This is most probably some IE6 render quirk, but on some pages with redirection, the iframe goes hidden after the redirection kicks in (at least, that's what I think it does).
The fix that works is to change the following line from the 'ie6fix' CSS:
.tu_transparent { filter: alpha(opacity = 0); }
into:
.tu_transparent { visibility: hidden; }
Perhaps changing all other (also non-IE) zero-opacity settings into this visibility:hidden is a performance improvement?
Thanks,
Chris (your colleauge)
The text was updated successfully, but these errors were encountered: