I would like to create a sticky div (I think that's what they're called) that is always at the bottom of the screen, I'm using the floating panels of the "Lobipanel" library and I want to create a container for one of these panels that is always centered below, something like this:
I have achieved this by using the bootstrap properties in this way
<div class="navbar navbar-fixed-bottom">
<div class="container">
<div class="row">
<div id="eventos" class="panel panel-default">
<div class="panel-heading">
<div class="panel-title">
<h5>Eventos</h5>
</div>
</div>
<div class="panel-body">
Olas prros
</div>
</div>
</div>
</div>
</div>
The problem is that if I click on the part at the bottom of the panel does not click on the map, for example, if I try to use the "+" button of google maps it does not work because the div that I use as a container covers the entire width of the screen.
What do I have to do to make the container only occupy the space determined by the panel and not the entire width of the screen? Is there any other way to achieve what I'm trying to do without using the "navbar-fixed-bottom" navbar class (which I think is what makes my container occupy the entire width)?