jhansen.brevetti
Member
Posted 1 year ago #
The border and navigation tabs in my menu seem to be layered in front of the overlay. Anyway to get the overlay to be the front-most layer?
Click the link below and click "click here" in the Apply Now box on the right to see what I'm talking about:
http://projecthope.ps/new/?page_id=44
Thanks,
John
http://wordpress.org/extend/plugins/wp-facebox-gallery/
Dave Bergschneider
Member
Posted 1 year ago #
Hi jhansen.brevetti,
It appears to be that your menu has a higher z-index than that of the facebox css.
A quickfix would be to add z-index: 99999; (original value is 100) like in the below example in the facebox2.css found in your plugins directory at /wp-content/plugins/wp-facebox-gallery/facebox2.css. I will perhaps update this in the next week or two as I don't see any reason you might want something above the facebox.
#facebox {
left: 0;
position: absolute;
text-align: left;
top: 0;
width: 100%;
z-index: 999999;
}
#facebox .popup {
position: relative;
z-index: 99999;
}
Dave Bergschneider
Member
Posted 11 months ago #
I have released a new version that includes the above adjustment.