lol, you'll still need this to hide flash[?]
On Wed, Apr 15, 2009 at 3:18 PM, keif <[email protected]> wrote: > > Okay, figured it out (and thanks for the reply Thierry). > > The iframe wasn't applied properly, which I think may be a fault in > the original phatfusion code - setting the opacity to 0 gives the > iframe a "visibility: hidden" - once I turned off the opacity on the > iframe (which wasn't needed anyways, as I dug in) the issued resolved > itself properly. > > Of course, it LOOKS like the select boxes become hidden, but that's > only for IE6. And honestly, fuck ie6. > > -kb > > On Apr 15, 4:01 am, Thierry bela nanga <[email protected]> wrote: > > you can correct this with css > > /* > > > > hide flash and select > > */ > > .body-overlayed embed, .body-overlayed object, .body-overlayed select { > > visibility: hidden; > > > > } > > > > and you modify overlay method show and hide this way > > > > show: function(){ > > this.container.tween('opacity', this.options.opacity); > > document.body.addClass('body-overlayed'); > > return this;}, > > > > hide: function(){ > > this.container.tween('opacity', this.container.get('opacity'),0); > > document.body.removeClass('body-overlayed'); > > return this; > > > > > > > > } > > On Wed, Apr 15, 2009 at 2:22 AM, keif <[email protected]> wrote: > > > > > So I've been using a ported version of phatfusion's multibox with the > > > overlay script. > > >http://phatfusion.net/multibox/ > > > > > Only issue is, the overlay isn't overlaying IE6 select boxes. > > > > > The overlay code was barely touched (if at all) in conversion to 1.2, > > > as the multibox iframe (the one with the content) DOES sit on top of > > > select boxes. > > > > > The iframe is opacity:0 (filter:alpha... I hate typing to accommodate > > > IE6) and visibility:hidden - if I make it visibility:visible, the > > > select boxes disappear, but I also lose my "darkened gradient" > > > > > Does anyone have any obvious checks I should look at? I'll try and > > > post the code to the pastebin tomorrow if I haven't figured it out > > > tonight. > > > > > Muchas gracias. > > > > -- > > fax : (+33) 08 26 51 94 51 > -- fax : (+33) 08 26 51 94 51
<<330.gif>>
