4
On screens where the height is less than 600px the menu disappears below the footer.
I also tried to leave the position
as fixed
, relative
and with nothing but the result was the same.
Follow the menu html:
<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;
}
A picture of what is happening:
How can you see the "partners" is under the footer.
You are using pixels in commands they usually do not adapt to different resolutions, try to use percentage.
– Alexandre Peluchi
I tried this but it keeps happening the same,I wanted to leave the position as Fixed...
– Vinicius Zable
You just want to resize the menu or make it above the footer?
– Randrade
Resize..
– Vinicius Zable
Put to MENU
z-index: 10
.– Diego Souza