Drop Down menu disappears when hovering over video?

Associate
Joined
29 Aug 2003
Posts
701
Location
West Midlands
I've embedded a HTML5 video with workarounds for most browsers into one of my latest websites but when ever the CSS drop down menu hovers over the video you cant select the drop down menus

Use the link below and goto "Methodology" then onto "Justification" and you'll see what I mean


http://www.webtoucan.com/fts/hospital_ats.html

Any ideas would be helpful.

This is the video code

<video width="425" height="350" controls autoplay>
<source src="video/tier_3_auto_transfer_systemm.avi" type="video/avi">
<source src="video/tier_3_auto_transfer_system.mp4" type="video/mp4">
<source src="video/tier_3_auto_transfer_system.webm" type="video/webm">
<object data="video/tier_3_auto_transfer_system" width="425" height="350">
<embed width="425" height="350" src="video/tier_3_auto_transfer_system.swf"> </embed>
</object>
</video>

Please bare in mind all videos havent been created I'm trying to sort this problem first
 
Last edited:
Associate
OP
Joined
29 Aug 2003
Posts
701
Location
West Midlands
Add z-index: 1 to class black_line_top in your css.

And then you'll want to put your social icons in a container and give those a higher z-index too as you'll notice they're now behind your black line.

You are my hero for today! been on that an hour its been driving me mad!

Thanks so much!
 
Last edited:
Back
Top Bottom