So I've been trying to get this dropdown menu to work properly for past few hours and I'm having no luck.
The HTML is:
<nav>
<ul id="#sideNavArchive">
<li><a>Year</a></li>
<ul>
<li><a>Month</a></li>
<li><a>Month</a></li>
</ul>
<li><a>Year</a></li>
<ul>
<li><a>Month</a></li>
<li><a>Month</a></li>
</ul>
</ul>
</nav>
Now, all I'm looking to do is hover of Year and for the months to drop down, but I seem to be running into trouble with the CSS selectors.
The CSS I have at the moment:
ul#sideNavArchive > li{background-color:red; display:block;}
ul#sideNavArchive > ul > li{display:none;}
ul#sideNavArchive > li:hover ul > li{display:block;}
There's obviously something with that bottom piece of css which is causing the issue, if someone could point it out to me that'd be great :)