jquery - my icon disappears when using navbar-fixed with materialize -


my icon disappears when using navbar-fixed materialize, if not use fixed icon exists

with navbar :

enter image description here

with navbar-fixed :

enter image description here

<header> <div class="navbar-fixed">     <nav>         <div class="nav-wrapper">             <a href="#" class="brand-logo ">mbs efaktur</a>             <ul class="right">               <li><a href="sass.html"><i class="material-icons">search</i></a></li>               <li><a href="badges.html"><i class="material-icons">view_module</i></a></li>               <li><a href="collapsible.html"><i class="material-icons">refresh</i></a></li>               <li><a href="mobile.html"><i class="material-icons">more_vert</i></a></li>             </ul>         </div>     </nav> </div> 

strong text


Comments

Popular posts from this blog

Sort a complex associative array in PHP -

vb.net - How to ignore if a cell is empty nothing -

recursion - Can every recursive algorithm be improved with dynamic programming? -