AntonShevchuk / wp-constructor

Wordpress Constructor Theme for those who want to create a unique blog design quickly and effortlessly
https://wordpress.org/themes/constructor/
0 stars 0 forks source link

Header menu ontop of lightbox images #112

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1.click on thumbnail of a image.
2.see how the header menu is ontop of the lightbox overlay.
3.

What version of the ... are you using?
1. Wordpress:3.0.1
2. Constructor:1.2.3
3. PHP:5.2.9
4. Browser: Firefox 3.6.10
5. OS: Windows 7

What URL of your blog(s)?
1. http://wptest.homeyardbarns.com/?page_id=56

Please provide any additional information below.

At first I thought it may have just been the lightbox plug-in I was using but 
I've tried several and the problem persisted. Using lightbox 2 right now and 
have jQuery Lightbox running before.

Original issue reported on code.google.com by bjyt...@gmail.com on 2 Oct 2010 at 10:12

GoogleCodeExporter commented 9 years ago
After searching some more and playing around with the .css file I found a fix. 
What I did to fix it was I replaced these lines in style.css:
#menu {
    text-align:left;
    position:absolute;
    z-index:301;
    overflow:visible;
}

With these ones:

#menu {
    text-align:left;
    position:absolute;
    z-index:97;
    overflow:visible;
}

Original comment by bjyt...@gmail.com on 4 Oct 2010 at 2:03