diff --git a/core/core.php b/core/core.php index b91bd56e..744ca00e 100644 --- a/core/core.php +++ b/core/core.php @@ -1229,7 +1229,8 @@ class core extends common { $css .= '#footerText > p {text-align:' . $this->getData(['theme', 'footer', 'textAlign']) . '}'; $css .= '#footerCopyright{text-align:' . $this->getData(['theme', 'footer', 'copyrightAlign']) . '}'; // Marge supplémentaire lorsque le pied de page est fixe - if ( $this->getData(['theme', 'footer', 'fixed']) === true) { + if ( $this->getData(['theme', 'footer', 'fixed']) === true && + $this->getData(['theme', 'footer', 'position']) === 'body') { $css .= "@media (min-width: 769px) { #site {margin-bottom: 100px;} }"; $css .= "@media (max-width: 768px) { #site {margin-bottom: 150px;} }"; } diff --git a/core/module/theme/view/footer/footer.js.php b/core/module/theme/view/footer/footer.js.php index efae4905..22d07823 100755 --- a/core/module/theme/view/footer/footer.js.php +++ b/core/module/theme/view/footer/footer.js.php @@ -214,7 +214,7 @@ $("#themeFooterPosition").on("change", function() { } else { $("#themeFooterPositionFixed").slideUp(function() { - $("#themeFooterPositionFixed").prop("checked", false).trigger("change"); + $("#themeFooterFixed").prop("checked", false).trigger("change"); }); } }).trigger("change");