Just starting out with jQuery and using the Accordion feature. Noticed that when I click on the accordion, it overlaps with the footer. How can I prevent this from happening?
Here is the code for the footer -
<footer>
<div class="row footer_class">
<div class="container">
<div class="col-lg-8 font_color">Copyright © 2013</div>
<div class="col-lg-2 pull-right font_color">Powered by Test</div>
</div>
</div>
</footer>
Check out the image below to see how the accordion overlaps with the footer.
I'd like the footer to move down below the accordion when the collapsible menu is opened, rather than being overlapped.
Below is the CSS code for the footer -
.row_color{
border:2px solid #A40F17;
margin:0px;
}
.footer_class{
background-color:#A40F17;
height:40px;
color:#fff;
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
position : relative;
}
Even after applying this CSS, the footer still overlaps with the accordion.