Z-index of menu dropdown

In the header builder, is it possible to assign a z-index value to dropdown menus of a navigation element… higher than that of the bar that the navigation is inside of?

I tried going into the custom css of the navigation element and using, did not work:

$el{
z-index: [higher number than bar here];
}

Hi @threeoten,

Please add this code in the Element CSS of the navigation inline element:

$el.x-menu .x-dropdown {
    z-index: 9999;
}

Hope this helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.