forked from ZwiiCMS-Team/ZwiiCMS
[9.1.13] pb alignement horizontal
This commit is contained in:
parent
b1aa2df3d7
commit
19368fc680
@ -565,14 +565,16 @@ section:after {
|
||||
}
|
||||
|
||||
/* Pied de page */
|
||||
footer {
|
||||
padding: 1px 20px;
|
||||
}
|
||||
body > footer {
|
||||
margin: 0 -10px;
|
||||
}
|
||||
#footersiteLeft, #footersiteCenter, #footersiteRight {
|
||||
vertical-align: middle;
|
||||
footer {
|
||||
padding: 1px 20px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
footer > .container {
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
|
||||
|
@ -238,20 +238,20 @@
|
||||
$class['right'] = "col4";
|
||||
break;
|
||||
}?>
|
||||
<div class="row" id="footer<?php echo $position; ?>">
|
||||
<div class="<?php echo $class['left'];?>" id="footer<?php echo $position; ?>Left"> <!-- bloc gauche -->
|
||||
<div class="row" id="footersite">
|
||||
<div class="<?php echo $class['left'];?>" id="footer<?php echo $position;?>Left">
|
||||
<?php if($this->getData(['theme', 'footer', 'textPosition']) === 'left') { $layout->showFooterText(); }
|
||||
if($this->getData(['theme', 'footer', 'socialsPosition']) === 'left') { $layout->showSocials(); }
|
||||
if($this->getData(['theme', 'footer', 'copyrightPosition']) === 'left') {$layout->showCopyright(); }
|
||||
?>
|
||||
</div>
|
||||
<div class="<?php echo $class['center'];?>" id="footer<?php echo $position; ?>Center"> <!-- bloc central -->
|
||||
<div class="<?php echo $class['center'];?>" id="footer<?php echo $position;?>Center">
|
||||
<?php if($this->getData(['theme', 'footer', 'textPosition']) === 'center') { $layout->showFooterText(); }
|
||||
if($this->getData(['theme', 'footer', 'socialsPosition']) === 'center') { $layout->showSocials(); }
|
||||
if($this->getData(['theme', 'footer', 'copyrightPosition']) === 'center') { $layout->showCopyright(); }
|
||||
?>
|
||||
</div>
|
||||
<div class="<?php echo $class['right'];?>" id="footer<?php echo $position; ?>Right"> <!-- bloc droite -->
|
||||
<div class="<?php echo $class['right'];?>" id="footer<?php echo $position;?>Right">
|
||||
<?php if($this->getData(['theme', 'footer', 'textPosition']) === 'right') { $layout->showFooterText(); }
|
||||
if($this->getData(['theme', 'footer', 'socialsPosition']) === 'right') { $layout->showSocials(); }
|
||||
if($this->getData(['theme', 'footer', 'copyrightPosition']) === 'right') { $layout->showCopyright(); }
|
||||
|
@ -433,7 +433,7 @@ class install extends common {
|
||||
'font' => 'Open+Sans',
|
||||
'fontSize' => '.8em',
|
||||
'fontWeight' => 'normal',
|
||||
'height' => '10px',
|
||||
'height' => '0',
|
||||
'loginLink' => true,
|
||||
'margin' => false,
|
||||
'position' => 'site',
|
||||
@ -449,7 +449,8 @@ class install extends common {
|
||||
'displayVersion' => true,
|
||||
'displayVersion' => true,
|
||||
'displaySiteMap' => true,
|
||||
'displayCopyright' => true
|
||||
'displayCopyright' => true,
|
||||
'template' => 3
|
||||
],
|
||||
'header' => [
|
||||
'backgroundColor' => 'rgba(255, 255, 255, 1)',
|
||||
|
@ -78,11 +78,11 @@ class theme extends common {
|
||||
'bold' => 'Gras'
|
||||
];
|
||||
public static $footerHeights = [
|
||||
'-5px' => 'Réduite',
|
||||
'0px' => 'Très petite',
|
||||
'5px' => 'Petite',
|
||||
'10px' => 'Grande',
|
||||
'15px' => 'Très grande'
|
||||
'0' => 'Nulles',
|
||||
'10px' => 'Très petites',
|
||||
'15px' => 'Petites',
|
||||
'20px' => 'Grandes',
|
||||
'30px' => 'Très grandes'
|
||||
];
|
||||
public static $footerPositions = [
|
||||
'hide' => 'Caché',
|
||||
|
@ -25,9 +25,9 @@ $("input, select").on("change", function() {
|
||||
var css = "footer{background-color:" + colors.normal + ";color:" + textColor + "}";
|
||||
css += "footer a{color:" + textColor + "}";
|
||||
// Hauteur du pied de page
|
||||
css += "footer .container > div{margin:" + $("#themeFooterHeight").val() + " 0}";
|
||||
css += "footer .container > #footersiteLeft, #footersiteCenter, #footersiteRight {padding:" + $("#themeFooterHeight").val() + " 0}";
|
||||
//css += "footer .container > div{padding:0}";
|
||||
css += "footer .container-large > div{margin:" + $("#themeFooterHeight").val() + " 0}";
|
||||
css += "footer .container-large > #footersiteLeft, #footersiteCenter, #footersiteRight {padding:" + $("#themeFooterHeight").val() + " 0}";
|
||||
//css += "footer .container-large > div{padding:0}";
|
||||
// Alignement du contenu
|
||||
css += "#footerSocials{text-align:" + $("#themeFooterSocialsAlign").val() + "}";
|
||||
|
@ -46,8 +46,9 @@
|
||||
</div>
|
||||
<div class="col6">
|
||||
<?php echo template::select('themeFooterHeight', $module::$footerHeights, [
|
||||
'label' => 'Hauteur',
|
||||
'selected' => $this->getData(['theme', 'footer', 'height'])
|
||||
'label' => 'Marges verticales',
|
||||
'selected' => $this->getData(['theme', 'footer', 'height']),
|
||||
'help' => 'La hauteur du pied de page est dynmamique selon le contenu.Ces marges sont ajoutées au-dessus et en-dessous.'
|
||||
]); ?>
|
||||
</div>
|
||||
</div>
|
||||
@ -111,8 +112,7 @@
|
||||
<p><strong>Contenu personnalisé texte ou HTML :</strong></p>
|
||||
<?php echo template::select('themeFooterTextPosition', $module::$footerblocks, [
|
||||
'label' => 'Emplacement',
|
||||
'selected' => $this->getData(['theme', 'footer', 'textPosition']),
|
||||
'class' => 'themeFooterPosition'
|
||||
'selected' => $this->getData(['theme', 'footer', 'textPosition'])
|
||||
]); ?>
|
||||
<?php echo template::select('themeFooterTextAlign', $module::$aligns, [
|
||||
'label' => 'Alignement',
|
||||
@ -123,8 +123,7 @@
|
||||
<p><strong>Réseaux sociaux :</strong></p>
|
||||
<?php echo template::select('themeFooterSocialsPosition', $module::$footerblocks, [
|
||||
'label' => 'Emplacement',
|
||||
'selected' => $this->getData(['theme', 'footer', 'socialsPosition']),
|
||||
'class' => 'themeFooterPosition'
|
||||
'selected' => $this->getData(['theme', 'footer', 'socialsPosition'])
|
||||
]); ?>
|
||||
<?php echo template::select('themeFooterSocialsAlign', $module::$aligns, [
|
||||
'label' => 'Alignement',
|
||||
@ -135,8 +134,7 @@
|
||||
<p><strong>Info et copyright :</strong></p>
|
||||
<?php echo template::select('themeFooterCopyrightPosition', $module::$footerblocks, [
|
||||
'label' => 'Emplacement',
|
||||
'selected' => $this->getData(['theme', 'footer', 'copyrightPosition']),
|
||||
'class' => 'themeFooterPosition'
|
||||
'selected' => $this->getData(['theme', 'footer', 'copyrightPosition'])
|
||||
]); ?>
|
||||
<?php echo template::select('themeFooterCopyrightAlign', $module::$aligns, [
|
||||
'label' => 'Alignement',
|
||||
|
Loading…
Reference in New Issue
Block a user