I have attempted to create a horizontal drop down menu using this tutorial and demo
I envision the menu to look like this:
I want the sub-menu to appear to the right of the parent menu, as shown in this example
The next step involves the sub-menus. The goal is for each sub-menu to appear to the right of its parent menu item when hovered over.
li ul {
position: absolute;
left: 149px;
top: 0;
display: none;
}
However, the sub-menu is currently not appearing to the right of its parent menu as intended: