First of all, here is the .js fiddle: http://jsfiddle.net/B6DSv/
The problem I encountered is related to my .css:
nav {
overflow: hidden;
background-color: #004b98;
width: 100%;
margin: 0;
padding: 0;
}
and here:
<nav>
<ul>
<li><a href="index.html">Home</a>
<ul>
<li><a href="#">teadsfasdfadsst</a></li>
</ul>
</li>
<li><a href="#">Gallery</a></li>
<li><a href="#">Map</a></li>
</ul>
</nav>
If I shoot overflow: hidden;, the dropdown menu works ... But my background is shot.
source
share