Topic: Juicebox break my menu [SOLVED]

Hello,

I have a bug with my menu. (http://maillotcrosscar.com)

You can look on the frontpage.

I put my mouse over "évènements" and i can't select "vide greniers" and "remerciements".

Please I need help.

Tommy.

Re: Juicebox break my menu [SOLVED]

In your '/sites/all/themes/crosscar3/style.css' file, your .cross-nav class has been assigned a z-index value of 100.
Increase this value and your menu should function correctly (overlapping the gallery).
Change line 602 of your 'style.css' file from:

z-index: 100;

... to:

z-index: 9999;

Re: Juicebox break my menu [SOLVED]

Steven wrote:

In your '/sites/all/themes/crosscar3/style.css' file, your .cross-nav class has been assigned a z-index value of 100.
Increase this value and your menu should function correctly (overlapping the gallery).
Change line 602 of your 'style.css' file from:

z-index: 100;

... to:

z-index: 9999;

Thanks you, it's fixed. ;)

Re: Juicebox break my menu [SOLVED]

You're welcome!