How can I do WOWSlider behind horizontal drop down menu?

Q: Support,
I have a your CSS3menu on the site that I placed the slider. How can I get the drop downs to appear over the slider and not in back of it?

A: You should open "style.css", generated by WOWslider, in any text editor (for example,
NotePad), find following lines:

#wowslider-container1 {
    ...
    z-index: 100;
}



Then you should open "style.css", generated by CSS3Menu, in any text editor (for example,
NotePad), find following lines:

ul#css3menu1 {
    ...
    z-index: 999;
}



You should change "z-index" parameters in both files:
"z-index" of CSS3Menu should be more than "z-index" of WOWSlider.

Related