More Demos: bootstrap 4 slideshow, AI Website Builder, HTML slider, Slick carousel, Bootstrap carousel, HTML slideshow, CSS Slideshow, jQuery carousel, Image carousel
Q: Support,
The web Site is having a problem with the wowslider overlapping / hiding the css drop-down menu. I have tried adjusting the z index with no luck what is the recommendation?
A: Please, open the .css of the menu and find the code:
#nav, #nav ul {
line-height: 1;
list-style: none outside none;
padding: 0;
z-index: 15;
}
Edit z-index value this way:
#nav, #nav ul {
line-height: 1;
list-style: none outside none;
padding: 0;
z-index: 1000;
}