Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS overlay over flash

  • This topic is empty.
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #27622
    warnew
    Member

    Hi,

    I want to do put a div over a flash object and its under the flash…

    My overlay javascript otherwise fine, browser independent and I use swfobject like this:

    Code:
    swfobject.embedSWF(“/libs/fchart/open-flash-chart.swf”, “bodystat_chart”, “550”, “400”, “9.0.0”,false,{},{wmode: “opaque”},{});

    Also tried with wmode: transparent…

    I saw a solution in one of the screencasts, but can’t find it :(
    Any ideas?

    Thanks

    #69644
    warnew
    Member

    I do use the z-index…

    This is the CSS for the overlay (js changes the visibility)

    Code:
    #overlay {
    background-image : url(/images/design/overlay.png);
    }

    #overlayContent, .overlay_hidden {
    width : 400px;
    background-color : white;
    padding : 5px;
    visibility : hidden;
    z-index : 90;
    position : absolute;
    }

Viewing 2 posts - 1 through 2 (of 2 total)
  • The forum ‘CSS’ is closed to new topics and replies.