auto nav over slider

Permalink
my auto nave drop downs appear under the image slider.
I found this post but seems out of date:https://www.concrete5.org/community/forums/usage/auto-nav-behind-ima...
I'm using the latest C5 with the default theme.

Cheers for any help.

deanhawthornthwaite
 
tallacman replied on at Permalink Best Answer Reply
tallacman
heres the css that controls that:
div.ccm-page header nav ul li ul {
  cursor: pointer;
  padding: 15px;
  padding-bottom: 0px;
  float: left;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 20px;
  visibility: hidden;
  width: 200px;
  background-color: #ffffff;
  z-index: 99;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;


that part that specifies the z-index, increase that to a bigger number.

Seems odd that would break.
deanhawthornthwaite replied on at Permalink Reply
deanhawthornthwaite
you are a star!

I added that code to the custom CSS under the theme and changed the z index to 1000 and it worked. I think you will find the fault has been there from the start as I have always avoided using drop downs because if this. Might want to mention to developers.