jquery - fancyBox popup showing up under another element -


I have used the FancyBox plugin to load a Vimeo movie in a popup, but popup should be used in some parts of HTML The page has been blocked by.

Live link :: This is when you click on the slider image below the yellow strip.

I tried things like Jade-index but it does not seem to work, I think it is very easy but I do not think so.

from your style .css file (line 278):

  # masthead {z-index: 99988; }   

This Z index is rendering your headers at the 999 88th level, which is trying to render upward above (at the 8010th level [line 180 of jquery.fancybox.css]]). Set it to 1 instead of (or something smaller):

  # masthead {z-index: 1; }   

And the video is no longer covered.

Comments

Popular posts from this blog

How can I add a seperate action listener to all 14 of my buttons at once that can determine player turn?(java) -

Simple file compression in C -

php - Sorting an multidimension array using usort fails -