Hi @Yn_Nik_Stuntman and @timmse,
Iām using this jQuery code for lack of a better solution. Maybe someone will have a CSS solution instead:
jQuery(function($){
function stickyFooter(){
var footer = $(āfooterā);
var position = footer.position();
var height = $(window).height();
height = height - position.top;
height = height - footer.outerHeight();
if (height > 0) {
footer.css({āmargin-topā : height+āpxā});
}
}
stickyFooter();
$(window).resize(function(){
stickyFooter();
});
});