Ok, I've found the problem and have a fix - a file did not get carried over during a theme update. You can see it in action at http://demo.hibbittsdesign.org/grav-eportfolio-blog/
I will release an update to the skeleton, but for you to make an update on your own copy please do the following:
1) Locate the folder user/data/gantry5/themes/g5_helium
2) Create a file called initfooter.js in the folder g5_helium and in that file put the following:
jQuery(document).ready(function() {
var footer, pagespace;
function doResponsive() {
footer = jQuery("#g-footer").height();
pagespace = jQuery("#g-page-surround").css('padding-bottom', footer);
}
doResponsive();
jQuery(window).resize(function() {
doResponsive();
});
});
3) Save and reload your site
Please let me know if this works.
Cheers,
Paul
ps - the updated skeleton is also now available at https://getgrav.org/downloads/skeletons
