My website features a superfish menu here, and I am seeking a way for the submenu to drop down vertically. Currently, I can achieve this by applying the following CSS:
.sf-menu.sf-style-white.sf-navbar li ul {
width: 150px;
left: 100px;
}
However, this solution is not ideal as it is not flexible enough. It only works if there is one parent item with a submenu, and it requires manual adjustment depending on the position of the link in the menu. I am interested in finding a method that will automatically dropdown submenus below their respective parent items.