2
Good morning, I’m trying to make a responsive menu for my portfolio, I’m using the do materialize but when I put it fixed the side-Nav of the mobile version Uga, it gets all dark and not to click on the items, here is the image of how it looks when it is with the navbar-Fixed class
and here is an image to show how it works normally without putting it fixed
to make this menu I watched this video: 2.- Materialize Tutorial: NAVBAR from the Brajan Montes Perez channel on youtube, I have not put the pq link if there is no way to put the html code
my code here (removed the body)
menulateral
<link rel="stylesheet" href="css/materialize.min.css">
<link href="http://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<div class="row">
<div class="navbar-fixed">
<nav>
<div class="nav-wrapper grey darken-1">
<a href="#!" class="brand-logo">Eduardo Moya Simões</a>
<a href="#" data-activates="mobile-demo" class="button-collapse"><i class="material-icons">menu</i></a>
<ul class="right hide-on-med-and-down">
<li><a href="">Início</a></li>
<li><a href="">Habilidades</a></li>
<li><a href="">Portifólio</a></li>
<li><a href="">Currículo</a></li>
<li><a href="">Contato</a></li>
</ul>
<ul class="side-nav" id="mobile-demo">
<li><a href="">Início</a></li>
<li><a href="">Habilidades</a></li>
<li><a href="">Portifólio</a></li>
<li><a href="">Currículo</a></li>
<li><a href="">Contato</a></li>
</ul>
</div>
</nav>
</div>
<script src="js/jquery-3.1.1.js"></script>
<script src="js/materialize.min.js" ></script>
<script type="text/javascript">
$(document).ready(function(){
$('.parallax').parallax();
});
</script>
<script>
$( document ).ready(function(){
$(".button-collapse").sideNav();
})
</script>
did not give no, but vlw
– jão assacino