[9.2.17] Petites corrections

This commit is contained in:
Fred Tempez 2020-02-04 13:17:38 +01:00
parent 7cc1f3bfef
commit de791a977a
2 changed files with 3 additions and 2 deletions

View File

@ -1215,7 +1215,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;} }";
}

View File

@ -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");