I am sure this is something simple. But what I would like is when scrolling on the page for the menu to follow you, so that is always visible when scrolling.
<div class="nav-wrapper" ><a id="logo-container" href="#" class="brand-logo" style="margin-left:50px; top-margin:0px; bottom-margin:10px;"><img class="topleft" width="200px" height="50px" src='http://go2-telecom.com/resources/images/logo-nobackground-1000.png'></a>
<?php
echo Menu::widget([
'options' => ['id' => "nav-mobile", 'class' => 'green lighten-1 right navbar-fixed-top'],
'items' => [
['label' => 'Home', 'url' => ['site/index']],
['label' => 'About', 'url' => ['site/about']],
['label' => 'Services', 'url' => ['site/services']],
['label' => 'Careers', 'url' => ['site/careers']],
['label' => 'Contact', 'url' => ['site/contact']],
['label' => 'Resumes', 'url' => ['resume/index'], 'visible' => !Yii::$app->user->isGuest],
['label' => 'Login', 'url' => ['site/login'], 'visible' => Yii::$app->user->isGuest],
],
]);
?>
<a href="#" data-activates="nav-mobile" class="button-collapse"><i class="mdi-navigation-menu"></i></a>
</div>