3
Guys, here’s the thing, I’m using the responsive bootstrap menu and I needed to click on the icon on the menu, to show the list ne by pushing the other Ivs down.... but when I click the list this appearing below the other Divs.... see well I n qero qe it overlaps the other Divs.. i qero qe it pushes the others down making room for it... in case it is the container containing the title class 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;
}