I would like to ask you some help about managing the space between the footer and the page content in Prestashop.
My Prestashop version is 1.6.1.17.
The website is www.backlabel.com.
I have the following problem:
Can anyone help?
Thank you in advance
For the space on between your video and the footer, this css code will solve your issue :
body .cms_24 .wht_bg{
top:0;
}
For your 3rd point (login page), use this JS code to keep your footer always at the bottom. Tested and works great.
var docHeight = $(window).height();
var footerHeight = $('#footer').height();
var footerTop = $('#footer').position().top + footerHeight;
if (footerTop < docHeight)
$('#footer').css('margin-top', (docHeight - footerTop) + 'px');
cheers :)