Insert the code here As shown in the image below, fullcalendar when clicking "more" passes my footer when in fact it should push it down by increasing the height of the page, as with all other screens. What css element could you use to fix this problem? I've tried using clearfix, tinkering with z-index, but it did not work ... I may have misused it. I use the INSPINIA template sold on Wrapbootstrap and it is of great quality.
Code:
<div class="col-lg-12 col-md-12">
<div class="ibox float-e-margins">
<div class="ibox-title">
<h5><i class="fa fa-calendar"></i> Agenda</h5>
</div>
<div class="ibox-content">
<div class="row">
<div class="col-lg-12 col-md-12">
<div id="calendar" class="animated"></div>
</div>
</div>
</div>
</div>
</div>
<div class="footer text-center">
<div>
<strong>SoftTooth™ 0.3.0-Beta</strong> - 2014-2015 Todos os direitos reservados. By <a>Allan Carvalho</a> e <a>Eduardo Luciano</a>
</div>
</div>
CSS:
.footer {
background: none repeat scroll 0 0 white;
border-top: 1px solid #e7eaec;
bottom: 0;
left: 0;
padding: 10px 20px;
position: absolute;
right: 0;
}
Does anyone help?