Aarnold,

  Great to hear you found a workaround. It is important to note that
most of the examples use fixed positioning to keep the popup dialolg
in the center of the screen (even when scrolling). This is all in the
CSS and can be changed from there. As IE6 does not support position:
fixed, a workaround is implemented. The workaround uses position:
absolute, and sets the offsets via an expression to keep the dialog
centered and 17% below the top of the viewport. Again, feel free to
position the dialog however you like.

~ Brice


On Jul 6, 7:34 am, alconsten <[EMAIL PROTECTED]> wrote:
> Found it.
> Check the jqmodal.css it has a line with position: fixed; this causes
> problems in IE6.
> Change it into: position: absloute; and the problem is solved.
>
>
>
> alconsten wrote:
>
> > Hello!
>
> > For the past 3 days I have been staring at this problem and I can't get a
> > grip on it. I am using this code in my js:
>
> > $('.opmerking').click(function(){
> >         var a = "#test" + $(this).attr("title");
> >         $(a).jqm({
> >             onShow:function(h) {
> >                 h.w.css('opacity',0.92).slideDown();
> >             },
> >             onHide: function(h) {
> >                 h.w.slideUp("slow",function() { if(h.o) h.o.remove(); });
> >             }
> >         })
> >         .jqmShow();
> >     });
>
> > Within firefox this works fine. Every modalWindow that is triggered by a
> > hyperlink with class=opmerking, is shown correctly.
> > But within IE6 it shows the content of my modalwindow in line of the other
> > content.... instead of 'on top of' the other content in a seperate
> > modalWindow where I want it (as it does in firefox).
>
> > Any suggestions how to make it work in IE6?
>
> > Sincerely,
> > Arnold Consten
> > The Netherlands
>
> --
> View this message in 
> context:http://www.nabble.com/jqModal-problem-with-IE6-tp18300850s27240p18301...
> Sent from the jQuery General Discussion mailing list archive at Nabble.com.

Reply via email to