Views rotator z-index above everything else including nice menus
Microbe - September 29, 2008 - 17:17
| Project: | Views Rotator |
| Version: | 6.x-1.0-alpha2 |
| Component: | Code |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | postponed (maintainer needs more info) |
Jump to:
Description
Views rotator shows above nice menus no matter how high i put the z-index of the menu.
I am just not setting the z-index high enough or does something need to be changed in views rotator

#1
This seems to be a css issue. The drop down menus can be placed on top with proper css and xhtml structure. When you place a z-index on an element are you using correct positioning (only positioned elements can take advantage of z-index)?
#2
I had this same issue with suckerfish menus and the fix was easy. I set the nested ul list in my menu css to 24 or something really high and that did the trick. Here is an example: http://statecenter.com
#3
I had the same problem. Rotor is 'blocking' nice menu's
I solved it by adding the following to the rotor.css
.rotor-content {
position: static !important;
}
tested in FF and IE 8
Robert
#4
Hi Bobkepford,
I would like to make the fix to suckerfish (zeropoint theme) but cannot
figure out how to make your suggested fix. Your site looks great!
#5
@jboeger
Here is the code that fixed it for me.
#suckerfishmenu ul.menu ul {z-index: 40;
}
Hope that helps.