That looks long winded, the link to the explanation. But it's on the right track. I see you've implemented its instructions on the noscript version of the tag combo, but not in the call to AC_FL_RunContent(). You do have a pair of arguments for it (from your source code):
This is either a typo, or required for something else. If it's a typo, change it to:
Code:
'wmode','transparent'
If it's required for something else, change it to:
Code:
'lt','transparent','wmode','transparent'
This latter should be fine in either case, as if 'lt' isn't required, it's being gracefully ignored.
Note: You have an odd and unrelated problem in Opera. The enlarged images are squished to about 100px height. This appears to be only the first time the page is loaded, which would tend to indicate that the images need to be preloaded, and that should help, but I see they are the same as the thumbnails. So yuo may only need to follow the directions on the demo page more closely. I see you have (for example):
Code:
<img sr . . . class="magnify" style="width:200px">
That and similar should be:
Code:
<img sr . . . class="magnify" style="width:200px;height:160px;">
Bookmarks