0
Enter the code here As shown in the image below, fullcalendar by clicking "more" passes my footer when in fact it should push it down increasing the page height, as with all other screens. Which css element could I use to fix this problem? I’ve tried using clearfix, tinkering with z-index, but it didn’t work... I may have made incorrect use of it. I use the INSPINIA template sold in Wrapbootstrap and it is very high 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;
}
Anyone can help?
Add more information to the question and some code where you’ve already tried something. Help those who want to help you.
– Guill
try to see which CSS is doing the dialog and increase the
z-index
for 999 for example... without an example code, I can’t help you anymore.– balexandre
I added the code. Can you do it now? Thanks!
– Allan Carvalho