My menu is Hiding this behind slider

Hi.

I have problem with menu. I have develop drop down menu and slider. But i am facing problem that menu is hiding behind slider.
How can i solve this problem. http://moghulweb.com/mheading/

Pease help me.

Thanks

Hi,

You need to give the anchor tags the correct z-index.

Currently you have:

.nav li li a {
  display: block;
  background: #fff;
  position: relative;
  /* z-index: 100; */
  border: 1px solid #CCC;
  width: 100%;
}

Remove the comment on the z-index and it should work as expected.

Hi, thank you very much brother. It works perfectly good . How can we use multiple jqueries in one single page ?

Hi,

Simple - you can’t.
You can only include the jQuery library once per page.
If you include it a second time, it’ll overwrite the first version and cause things to break.