On screens where the height is less than 600px the menu disappears below the footer.
I also tried to leave position
as fixed
, relative
and nothing, but the result was the same.
Follow the html of the menu:
<div class="container-fluid">
<div class="hidden-xs hidden-sm " id="menuwraper">
<div id="menu" class="hidden-xs ">
<ul id="navegacao">
<li>
<a href="home"><img src="imagensite/logo.png" /></a>
</li>
<li class="efeito"><a href="sobre">SOBRE NÓS</a></li>
<li class="efeito"><a href="projetos">PROJETOS</a></li>
<li class="efeito"><a href="noticias">NOVIDADES</a></li>
<li class="efeito"><a href="contato">CONTATO</a></li>
<li class="efeito"><a href="parceiros">PARCEIROS</a></li>
</ul>
</div>
</div>
The css:
#menu {
height: 400px;
position:absolute;
margin-top:31px;
width: 15%;
margin-bottom:140px;
}
An image of what's happening:
Howcanyousee"partners" is under the footer.