Dropdown Menu Alignment on Mobile

Hi,

I am wanting to align my dropdown menu to be vertically aligned and not off to the right on mobile devices. When looking at the website on my iPhone 7Plus the menu is cut off. I’m wanting the submenu to align below the the selected About Us item like the second photo.

Can you help me understand how to make that happen?

Hey Daniel,

This is possible by adding some custom CSS to the element CSS of the Navigation Dropdown element:

$el .x-menu .x-dropdown.x-active {
  position: relative;
  right: 0;
}

Hope this helps.

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