Private: Home › Forums › WordPress Themes › Elvyre – Retina Ready WordPress Theme › remove white space at bottom › Reply To: remove white space at bottom
November 11, 2014 at 10:16 am
#1067
Keymaster
Giorgio,
Add this script at the end of “js / include.js”:
jQuery(function(){
if(jQuery(window).height() > jQuery('body').height()){
jQuery('.footer-wrapper').addClass('static');
}
});
and CSS to Theme options:
.footer-wrapper.static{
position: fixed;
bottom: 0;
}