Bonjour,
Sur ce template, je n'arrive pas à aligner horizontalement les différents éléments qui composent le pied de page.
Ci-joint les parties de code HTML et CSS :
Quel code CSS permettrait de les aligner horizontalement au lieu de les empiler verticalement ?
Fred
Sur ce template, je n'arrive pas à aligner horizontalement les différents éléments qui composent le pied de page.
Ci-joint les parties de code HTML et CSS :
Code HTML:
<?php if ($this->countModules('position-3')) : ?> <div id="footer"> <div class="inner clearfix"> <jdoc:include type="modules" name="position-3" style="xhtml" /> </div> </div> <?php endif; ?>
Code:
#footer > div.inner { background: #05a696; background-image: url("blocfooter-gradient.svg"); background-image: -o-linear-gradient(center top,#05a696, #9adcfc 100%); background-image: -webkit-gradient(linear, left top, left bottom,from(#05a696), color-stop(100%, #9adcfc)); background-image: -moz-linear-gradient(center top,#05a696, #9adcfc 100%); background-image: linear-gradient(center top,#05a696, #9adcfc 100%); -pie-background: linear-gradient(center top,#05a696, #9adcfc 100%); border: #046352 1px solid; -moz-border-radius: 5px; -o-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; -moz-border-radius: 5px 5px 5px 5px; -o-border-radius: 5px 5px 5px 5px; -webkit-border-radius: 5px 5px 5px 5px; border-radius: 5px 5px 5px 5px; margin-top: 10px; }
Fred
Commentaire