[Pro] Add Sticky footer JS

OK - try this - another JS solution.

Add this via Page > HTML Markup replacing anything you have already in the Before end Body section

<script src="http://code.jquery.com/jquery-2.1.4.min.js"></script>
<script>
$(window).bind("load", function () {
    var footer = $("#footer");
    var pos = footer.position();
    var height = $(window).height();
    height = height - pos.top;
    height = height - footer.height();
    if (height > 0) {
        footer.css({
            'margin-top': height + 'px'
        });
    }
});
</script>

freewaytalk mailing list
email@hidden
Update your subscriptions at: