Open GoogleCodeExporter opened 9 years ago
I have found a workaround for this, that worked in my project, hopefully it can
help
others.
Make the problem containing element itself rounded, and all is well. to
further the
above example, add
border-radius: 15px;
behavior: url(border-radius.htc);
to the .rel class, and the elements show normally
Original comment by alex.fai...@gmail.com
on 8 May 2010 at 7:09
had the same problem, so i opend the script and changend Line 65-66 from:
var el_zindex = parseInt(el.currentStyle.zIndex);
if (isNaN(el_zindex)) { el_zindex = 0; }
to:
//var el_zindex = parseInt(el.currentStyle.zIndex);
var el_zindex = 1000;
if (isNaN(el_zindex)) { el_zindex = 0; }
Maybe Ie7-8 don't deliver the correct z-index level. With this i pushed it in
front of all. but sadly it seems not to be possible to put anything else in
front. Not even the Text contained in the original Element. Yes i tried
lowering the z-index value. I'll comment again if i find a solution for this.
Original comment by staeu...@gmail.com
on 5 Mar 2012 at 5:32
Original issue reported on code.google.com by
k...@infinitends.net
on 12 Mar 2010 at 1:28