In case anyone wants to know I think I found out the problem:

The thing is, in Opera, the whole page(100%) has to be filled with
something. I mean, if your page is long enough (you have a vertical
scrollbar), you won't have this problem. But lets say your page only
fills like 70% of the screen, the other 30% doesn't have anything, no
elements get there, the </html> is at the 70% mark, if you understand
what I'm saying. To fix the problem, you need to make sure your page
is filled at 100% on the screen. A simple fix would be the following
code on CSS:

html { height: 100%; }
body { height: min-height: 100%; }

This seems to fix it on my testing, however, you may end up with some
strange results if your design is complex and uses lots of CSS
styling. Basically, you just have to play around with the CSS code and
make sure the whole page is filled with something, otherwise, opera
will you only re render the page where it has elements.

Although this code didn't fix my real live example-- for some strange
reason, it was working without changing anything, maybe some other
changes I did fixed it somehow-- but it fixed with all the tests I
did.

On Feb 24, 12:08 am, Nazgulled <[EMAIL PROTECTED]> wrote:
> I'm having a problem with Opera and SimpleModal...
>
> If I open the demo page on SimpleModal's website and test it with
> Opera, it works well, but if I download the basic sample and test it
> on Opera, it doesn't quite work.
>
> The problem is, when you click to show the modal dialog, it shows
> fine. But after closing it, you will see something odd... Look at the
> screenshot, it shows what's happening after closing the 
> dialog:http://img408.imageshack.us/my.php?image=operavu1.jpg

Reply via email to