Having trouble with menu styling, I'm new to this and trying to add a sub menu to an existing drop down menu.
This is the CSS code:
.menu_main {
float: left;
width: 60%;
}
#access .menu {
list-style: none;
font-weight: normal;
position: relative;
float: left;
font-family: 'Open Sans', sans-serif;
font-weight: 600;
text-transform: uppercase;
margin-top: 0px;
}
...
.selectnav {display: none; width: 440px; margin-left: 20px;}
I designed this HTML code a while ago and can't figure out why the sub-menu isn't showing up when adding another level to it.
<div class="menu_main">
...
</nav>
</div>