People are as follows, I'm using the bootstrap responsive menu and I needed that when I clicked the menu icon, the list appeared and pushed the other divs down .... but when I click the list it is appearing below of the other divs .... see well I n qero qe it overlap the other divs .. I qero qe it pushes the others down making room for it ... in case it is the container containing the class title that should be pushed here the html and css codes:
<nav class="navbar navbar-default">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar">
<span class="sr-only"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="collapse navbar-collapse" id="navbar">
<div class="container">
<ul class="nav navbar-nav itens-menu">
<li><a href="<?php echo $this->request->base; ?>/home">home</a></li>
<li><a href="<?php echo $this->request->base; ?>/galeria">galeria de anúncios</a></li>
<li><a href="<?php echo $this->request->base; ?>/faleconosco">fale conosco</a></li>
<li class="botao-chat"><a class="active" href="">chat online</a></li>
</ul>
<div class="pesquisar-menu col-md-2 hidden-xs">
<input type="text" placeholder="pesquisar"><i class="fa fa-search" aria-hidden="true"></i></input>
</div>
</div>
</div>
</nav>
<div class="container">
<div class="row">
<div class="titulo col-md-12">
<a href="">Ultimos anúncios</a>
</div>
</div>
.navbar-default{
background-color: black;
margin-bottom: 0px;
border: none;
min-height: 70px;
top: -25px;
}