Bonjour,
pour mettre une image de fond dans un template Gantry:
mettre ton image dans dans templates/gantry/images/image-fond.png
dans le dossier css, tu crées un fichier gantry-custom.css dans lequel tu mets:
body {
height: 101%;
background: url("../images/image-fond.png") no-repeat fixed center center transparent;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
color: @bodytext;
}