html - CSS overlay problems, showing a splash page over flash element -


check out link below, can see overlay hidden behind flash element. however, blue bar 'continue' button appears above everything. know css changes need make overlay appear above below it? background loads iframe. thanks.

http://honr.it/s4j

i can't add wmode="transparent" embed tag, since have no control on page loaded in iframe.

afaik need set wmode of flash player "transparent" in order work. along need css:

#popup {     position: relative;     z-index: 1; }  #flash-player {     position: absolute;     z-index: 0; } 

basically, z-index property needs have value lower popup.


Comments

Popular posts from this blog

c++ - How do I get a multi line tooltip in MFC -

asp.net - In javascript how to find the height and width -

c# - DataTable to EnumerableRowCollection -