If you want make the footer display at the very bottom for short content pages, you can use the code below. Paste this in the Divi Options/Ingergration area in the header section. Make sure to put this inside of a script tag.
jQuery(function($){
function stickyFooter(){
var footer = $("#main-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();
});
});