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

Java - Error: no suitable method found for add(int, java.lang.String) -

java - JPA TypedQuery: Parameter value element did not match expected type -

c++ - static template member variable has internal linkage but is not defined -