Hi there. Please help me to find out.
I want my Dropdown to be layin UNDER header, not OVER.

As you can see, th shadow of dropdown is layin OVER main header. But the problem is not in the shadow. I just trying to add some animation to dropdown:
.x-dropdown {
visibility: hidden;
transform-origin: center -15px 0px;
transform: matrix3d(1, 0, 0, 0, 0, 0, -1, 0.00125, 0, 1, 0, 0, 0, 0, 1, 0.99875);
opacity: 1;
transition: all cubic-bezier(0,0,0.3,1) .2s;
}
.x-dropdown .x-active {
visibility: visible;
transform-origin: center -15px 0px;
transform: matrix3d(1, 0, 0, 0, 0, 0, -1, 0.00125, 0, 1, 0, 0, 0, 0, 1, 0.99875);
transition: all cubic-bezier(0,0,0.3,1) .2s;
}
Then i’m adding this code i see animation coming throught the main header.

