I saw this issue for Drupal 6 and it was marked closed. When I add a view (block or page) that uses slideshow as the format, it hides the drop down of the superfish/suckerfish menu. The menu works fine on all other pages and when the view is set to unordered list instead of slideshow. I'm using slideshow on the homepage. You can see it here: http://karateorlando.com

I'm using Drupal 7 and the theme is LiteJazz.

Thanks!

Comments

j4’s picture

I notice that you have solved the issue. Can you tell me what you did?

Thanks
Jaya

tbrowninfinitymark’s picture

I am having the same problem. Does anyone know the solution for this? I'm using Drupal 7.12, Views 7.x-3.3, Views Slideshow 7.x-3.0, and Superfish 7.x-1.8

Thanks!

wheresjbob’s picture

Status: Active » Closed (fixed)

Here is the answer! (Sorry it took so long. I could not remember and it happened to me again. I just fixed it AGAIN and this time I'm coming back to document it.

The problem is with JQUERY (that is what they use to do the slideshow in Views). It keeps setting/changing the z-index of the content in the 6 to 7 range.

what you need to do is find the DIV that contains the menu and add a z-index of a number higher than the slideshow. Here's what mine looked like:

#primary-menu {
z-index:11;
}

If that doesn't work it was also suggested to set the position of the DIV to relative:

#primary-menu {
z-index:11;
position: relative;
}

I didn't need to add that, but try it out. Also, make the z-index as high as you want (99999), since you NEVER want anything above it.

Here's a URL that I found for this. Look at comment #5:

http://drupal.org/node/575040