Sub Menu - Multi Page Template

Hi! I don’t think there is a direct way to do it throught the UI.
You can align the menu + menu items + menu sub-items to the left with a bit of Custom CSS.

(S)CSS code to add in the Asset manager:

//replace this #ed-71789033 ID with your menu ID
#ed-71789033{
    &.ed-menu {
        ul li{
            text-align: left;
            z-index: 5 !important;
    
        }
        //fix for sub-menu 
        .menu-sub{
            z-index: 10 !important; //this will make the sub-menu on top of the menu item
        }       
    }  
}

How to get the Menu ID:

Hope this helps!