

Bon ! J'ai trouvé

Dans la feuille css "thumbnails.css" il faut chercher ce code :
Code : Tout sélectionner
#content UL.thumbnails SPAN.wrap1 {
margin: 0 5px 5px 5px;
display: table-cell; display: inline-table;
display: inline-block; /* Why 3 display option ??? */
vertical-align: top; /* OK with Opera and IE6 not Geko */
text-align: center; /* to center the thumbnail and legend in Geko/Opera */
}
LĂ , il suffit de changer la valeur de "margin" par exemple :
remplacer
Code : Tout sélectionner
margin: 0 5px 5px 5px;
qui applique une marge supérieure à "0" par
Code : Tout sélectionner
margin: 5px;
qui applique une marge de 5px sur les 4 côtés de l'élément

Et normalement ça roule
