Hi,
i tried to use image rotator on my webpage. All was working fine..except submenus of my css menu. The problem is submenus working back of image rotator content. So submenus cant be seen.
PS: rotator is "new"
How can i fix it?
Image Rotator Module and Submenus Problem..
Re: Image Rotator Module and Submenus Problem..
"new" is experimental.taurchu wrote: i tried to use image rotator on my webpage. All was working fine..except submenus of my css menu. The problem is submenus working back of image rotator content. So submenus cant be seen.
PS: rotator is "new"
Try with this version and report
Alby
Re: Image Rotator Module and Submenus Problem..
tested it and nothing changed..Is there a sample for that module working fine?
Re: Image Rotator Module and Submenus Problem..
Many sites, look this for "new"taurchu wrote: tested it and nothing changed..Is there a sample for that module working fine?
Alby
Re: Image Rotator Module and Submenus Problem..
Wouldn't it just help to give the menu and items a higher z-index in their class? Or the surrounding them.
The div that contains the Rotator could get:
And the div around the menu:
If I'm correct that should define the layer order on your webpage for overlapping layers. However, I don't know if this gets handled different because there are scripts and stuff working here.
The div that contains the Rotator could get:
Code: Select all
.Your_Rotator_Class_Or_ID {
z-index: 1;
}
Code: Select all
.The_Menu_Div_Class_Or_ID {
z-index: 2;
}
Re: Image Rotator Module and Submenus Problem..
thanks..i"ll try it again.