How to change menu position with materialize framework?

0

Does anyone know how to put the slide always on top and everything else (menu, text, etc ...) after the slide?

example: link

Using the framework: meterialize

<div class="slider fullscreen">
        <ul class="slides">
          <li>
            <img src="http://lorempixel.com/580/250/nature/1"><!--randomimage--><divclass="caption center-align">
              <h3>This is our big Tagline!</h3>
              <h5 class="light grey-text text-lighten-3">Here's our small slogan.</h5>
            </div>
          </li>
          <li>
            <img src="http://lorempixel.com/580/250/nature/2"><!--randomimage--><divclass="caption left-align">
              <h3>Left Aligned Caption</h3>
              <h5 class="light grey-text text-lighten-3">Here's our small slogan.</h5>
            </div>
          </li>
          <li>
            <img src="http://lorempixel.com/580/250/nature/3"><!--randomimage--><divclass="caption right-align">
              <h3>Right Aligned Caption</h3>
              <h5 class="light grey-text text-lighten-3">Here's our small slogan.</h5>
            </div>
          </li>
          <li>
            <img src="http://lorempixel.com/580/250/nature/4"><!--randomimage--><divclass="caption center-align">
              <h3>This is our big Tagline!</h3>
              <h5 class="light grey-text text-lighten-3">Here's our small slogan.</h5>
            </div>
          </li>
        </ul>
      </div>

                   <div class="navbar-fixed left">
                    <nav>
                      <div class="nav-wrapper">
                        <a href="#!" class="brand-logo">Logo</a>
                        <ul class="right hide-on-med-and-down">
                          <li><a href="sass.html">Sass</a></li>
                          <li><a href="badges.html">Components</a></li>
                          <li class="active"><a href="collapsible.html">JavaScript</a></li>
                        </ul>
                      </div>
                    </nav>
                  </div>        

The problem is that the menu is always on the slide and I want something like the example I send.

    
asked by anonymous 29.09.2015 / 17:07

0 answers