KurtWagnerOne / wp-constructor

Automatically exported from code.google.com/p/wp-constructor
0 stars 0 forks source link

Menu z-index interferes with other plugins, etc. #133

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Install "Custom Contact Form" by Taylor Lovett or
2. Install "Lightbox 2" by Rupert Morris
3. Implement and use either and the theme menu will "overlap" the status 
windows and or gallery images.

What version of the ... are you using?
1. Wordpress: 3.0.3
2. Constructor: 1.3.1
3. PHP: 5
4. Browser: firefox
5. OS:Linux, Ubuntu 11.04

What URL of your blog(s)?
1. http://emergencewebsolutions.com

Please provide any additional information below.

Changed the z-index value for #menu to "auto". That fixed my problem.

Changed style.css from:

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

TO:

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

Original issue reported on code.google.com by burgh6467 on 26 Dec 2010 at 9:00