I have a navigation menu inside div.wrapper
, and I am trying to make the div.wrapper
stick to the footer.
<div class="wrapper">
<div id="menu">
<ul>
<li>1.</li>
<li>2.</li>
<li>3.</li>
</ul>
</div>
<div class="push"></div>
</div>
<div class="footer">
<div id="footer-menu"></div>
</div>
Is there a way to achieve this? Here is my code on jsfiddle. I have tried moving the menu from .wrapper
to .footer
, but it seems that when scrolling, the menu does not stick with the footer as intended.