Search code examples
jqueryfacebox

facebox overlay clash?


I use facebox for my site and when I hit "post comment", it brings up the stuff, but i think it's clashing with the navigation? Here's the image:

enter image description here

it's over on the page: http://www.krissales.com/#/media/17.Testing-Article-1

hit post comment, and see what it does. I'm not sure if it's my navigation, or it's facebox.

I also think it has something to do with my core.js file, because it's so damn terrible, haha!


Solution

  • I think the only problem of this is you lack of z-index..

    Try to put z-index:10000 in your #facebox.

    Like this:

    #facebox{
    z-index:10000
    }
    

    It will solve your problem.. Cheers.