I have a popup activated link that loads a node/add page. Works well, however I also have an swf tools (flow player) embedded in the page. It seems to be overlapping the popup. Instead of the popup covering the player. Where can I make it so that Popup is always the top-most layer? Thanks for the help!

CommentFileSizeAuthor
example.jpg168.68 KB2ndChanceTech

Comments

crosputni’s picture

subscribing

samhassell’s picture

Hey,

You need to set the wmode flashvar

# wmode - Possible values: window, opaque, transparent. Sets the Window Mode property of the Flash movie for transparency, layering, and positioning in the browser.

    * window - movie plays in its own rectangular window on a web page.
    * opaque - the movie hides everything on the page behind it.
    * transparent - the background of the HTML page shows through all transparent portions of the movie, this may slow animation performance.

From memory the 'transparent' setting is what you want. Currently I'd guess you have it set to opaque.

Good luck!