Menu does not overlap the online photo galleries

Q: Hi,
How do I allow my menu to appear over the gallery animation not behind it?

A: Please, open the .css file of the menu and find the code:

#menu188id11 .has-sub {
    z-index: 1;
}



Edit z-index value this way:

#menu188id11 .has-sub {
    z-index: 1000;
}

Related