I'm building a single page website and would like to put the fixed menu over the scroller content:
But using the fixed position, I can't keep the menu over the content. Any idea?
#nav {
left: 20px;
list-style: none;
position: fixed;
top: 20px;
}
#nav {
list-style: none;
position: fixed;
top: 20px;
width: inherit;
}
#section-1{
margin-top:200px;
}