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