Prestashop - 如何在页脚和页面内容之间添加或删除 space

Prestashop - How to add or remove space between footer and page content

我想请您帮忙管理 Prestashop 中页脚和页面内容之间的 space。

我的 Prestashop 版本是 1.6.1.17。

网站是www.backlabel.com

我有以下问题:

有人能帮忙吗?

提前致谢

对于视频和页脚之间的 space,此 css 代码将解决您的问题:

body .cms_24 .wht_bg{
  top:0;
}

对于您的第三点(登录页面),使用此 JS 代码使您的页脚始终位于底部。经过测试并且效果很好。

var docHeight = $(window).height();
var footerHeight = $('#footer').height();
var footerTop = $('#footer').position().top + footerHeight;
if (footerTop < docHeight)
    $('#footer').css('margin-top', (docHeight - footerTop) + 'px');

干杯:)