I\'m working on the navigation for this website and am having trouble with the dropdown nav.
Basically, I have overflow: hidden applied
overflow: hidden
if your container is set to "overflow: hidden;" and your dropdown menu is under this container, you just need to set "position: absolute;"
.container { overflow: hidden; } .your_dropdown_menu { position: absolute; }