3.0 | Dropdown Nav Element

Dropdown appears to jump from top to bottom. Don’t believe it was doing this before the update to 3.0. See video in note below.

Hi Josh,

It tries to open downward first, but if the menu is too long and there’s enough space overhead it will do that instead. It’s just opening in the direction where the most space is available. Those elements were originally designed to be used for navigation in the header and footer bars where you want the versatility of it automatically flowing a certain direction. You could force it to always start top left with some Element CSS:

$el .x-menu-dropdown {
    top: 100%!important;
    left: 0!important;
    right: 0!important;
    bottom: auto!important;
}