forked from ZwiiCMS-Team/ZwiiCMS
[9.2.21] correction définitive des br dans le footer
This commit is contained in:
parent
2aa012479c
commit
b41d28b0c8
@ -33,7 +33,7 @@ class common {
|
||||
const TEMP_DIR = 'site/tmp/';
|
||||
|
||||
// Numéro de version
|
||||
const ZWII_VERSION = '9.2.20';
|
||||
const ZWII_VERSION = '9.2.21';
|
||||
|
||||
public static $actions = [];
|
||||
public static $coreModuleIds = [
|
||||
@ -2075,7 +2075,7 @@ class layout extends common {
|
||||
*/
|
||||
public function showFooterText() {
|
||||
if($footerText = $this->getData(['theme', 'footer', 'text']) OR $this->getUrl(0) === 'theme') {
|
||||
echo '<div id="footerText">' . nl2br($footerText) . '</div>';
|
||||
echo '<div id="footerText">' . $footerText . '</div>';
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -640,12 +640,6 @@ footer #footerbody > div {
|
||||
font-size: inherit;
|
||||
}
|
||||
|
||||
/* Corrige le problème des <br> dans les col du texte personnalisé */
|
||||
#footerText div {
|
||||
display: inline-flex;
|
||||
float: left;
|
||||
}
|
||||
|
||||
/* Conserve le pied de page sur une ligne */
|
||||
@media (max-width: 768px) {
|
||||
body > footer {
|
||||
|
Loading…
Reference in New Issue
Block a user