print fine tuning

This commit is contained in:
Bachir Soussi Chiadmi 2016-01-21 12:02:55 +01:00
parent 538c791bae
commit deb2bff572
3 changed files with 17 additions and 4 deletions

View File

@ -5710,8 +5710,14 @@ article.node-materiau.vm-cardfull, article.node-breve.vm-cardfull {
margin-bottom: 1em; }
.print-footer {
position: fixed;
bottom: 0; }
position: absolute;
bottom: 0;
text-align: center;
width: 100%; }
.print-footer p {
display: inline-block;
width: 45%;
text-align: center; }
/*
___ __ ____________ __________ __ _______ __ __________________

View File

@ -1771,7 +1771,11 @@ body.print-body-materiau{
}
.print-footer{
position:fixed; bottom:0;
position:absolute; bottom:0; text-align: center; width:100%;
p{
display:inline-block; width:45%; text-align: center;
// margin: 0 3em;
}
}
/*

View File

@ -90,6 +90,9 @@
<h2 class="print-title"><?php print $print_title; ?></h2>
<?php endif; ?>
<div class="print-content"><?php print $content; ?></div>
<div class="print-footer"><?php print $site_footer; ?></div>
<div class="print-footer">
<?php print $site_footer; ?>
<p class="domain">materio.com</p>
</div>
</div>
</html>