Click to See Complete Forum and Search --> : Layer over and <embed> object?
theiviaxx
03-06-2007, 12:31 PM
I have two <div>s, one for a content layer and one for a windows media .avi video. I need the content over the video. The z-indexes are set properly:
#content {
z-index: 200;
}
#video {
z-index: 120;
}
This works fine in IE, not FF :( Any ideas?
gil davis
03-06-2007, 02:35 PM
It depends on the version of FF. Some versions will give EMBED and OBJECT (as well as some form fields) visual priority, ignoring z-index.
felgall
03-06-2007, 03:23 PM
Is the transparency set properly for the video so that it will allow other objects to move in front of it?
theiviaxx
03-06-2007, 05:42 PM
Is the transparency set properly for the video so that it will allow other objects to move in front of it?
I'm currently using:
...wmode='transparent'...
Is that the correct attribute?