PDA

View Full Version : [HELP] Dropdown issues


blind-eddie
09-28-2012, 02:45 AM
I am having an issue with dropdowns going behind other default vbulletin content or the content below the dropdown will show, including dropdown arrows & make the links unusable.

Help guiding me through the fix for this would be greatly appreciated.
Note, I am using 4.2.0 Patch Level 2

Image one shows default style moderation tools dropdown below forums before clicking.

http://blind-eddie.com/images/error1.JPG


Image Two shows after clicking. This is default style

http://blind-eddie.com/images/error1a.JPG

Image Three is from a fixed style showing the Quick Links dropdown link.

http://blind-eddie.com/images/error2.JPG

Image Four shows the Quick links dropdown after clicking. You will notice the dropdown arrows from the Thread Tools and Administrative dropdown links below are showing and making the WhosOnline link unusable.

http://blind-eddie.com/images/error2a.JPG

ForceHSS
09-28-2012, 03:10 AM
Have you tried disabling all custom plugins and also trying different browsers

CAG CheechDogg
09-28-2012, 03:17 AM
I am not too familiar with vbulletin's code, but when drop downs on my joomla site do that it is the "position: relative; somewhere in the css that is causing this.

This happens a lot in IE for some reason because both are "position: relative; ....

You can also simply add a new <div> around the existing menu and defined the new <div> in CSS with a high z-index , something like this:

CSS:
#iefix {
position:relative;
z-index:1000;
}

--------------- Added 1348806028 at 1348806028 ---------------

You might only have to drop the position:relative; from what ever is overlapping the menu's dropdown.

blind-eddie
09-28-2012, 09:51 PM
This only happens in IE, but only on that site. I do not have this issue anywhere else.
This happens in the default style & the only one custom style. All plugins are dis-abled & have been for some time. Nothing extra on the board.

Any thoughts?

CAG CheechDogg
09-28-2012, 10:08 PM
This only happens in IE, but only on that site. I do not have this issue anywhere else.
This happens in the default style & the only one custom style. All plugins are dis-abled & have been for some time. Nothing extra on the board.

Any thoughts?


Did you do what I suggested you do ?