Extelliqent
Extelliqent

Reputation: 1858

Menu hiding behind Nivo Slider

I tried z-index, it's not working for some reason. How can I fix it ?

http://goo.gl/VJKWh

#menu {
background-color:#FFF;
height:30px;
border:0;
border-top:2px solid #8BD2E4;
margin:0 auto;
padding:0 6px 0 6px;
z-index:9998;
}

Upvotes: 2

Views: 1525

Answers (2)

Knyri
Knyri

Reputation: 3028

This worked for me.

.sub-menu{
    z-index:999;
}

Upvotes: 3

user1388431
user1388431

Reputation: 56

Add;

z-index:9999;

to "#blog-menu ul"

Upvotes: 2

Related Questions