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

c# - passing input text from view to contoller with FacebookContext using Facebook app -

ios - Does Core Data autoupdate a many to many relationship on saving -

Calling a C++ function from C# by passing a string with variable size to it -