I made a menu with an image and the buttons fixed on my site. Using the following code:
<div class="navbar navbar-default navbar-fixed-top" role="navigation" style="background-color:#3299CC">
<div>
<img src="img/logo.png" alt="Smiley face" >
</div>
<div class="container">
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li><a href="index.html">Home</a></li>
<li><a href="atividades.html">Atividades</a></li>
<li><a href="cronograma.html">Cronograma</a></li>
<li><a href="inscricao.html">Inscrição</a></li>
<li><a href="Contato.html">Contato</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="http://www.pet.br/">PET </a></li>
</ul>
</div>
But that's how the image and buttons are fixed at the top of the screen, I'd like it when I scroll down, just the buttons would stay fixed at the top of the screen and the image "disappear."