Diaporama HTML

Bryan -  
 Bryan -
Bonjour,

j'utilise le diaporama suivant sur mon site: http://jquery.malsup.com/cycle/

Il fonctionne selon la structure suivante:

<div class="pics" id="slide">
<img src="./Photo/beach5.jpg" alt="" />
<img src="./Photo/beach6.jpg" alt="" />
<img src="./Photo/beach7.jpg" alt="" />
<img src="./Photo/beach8.jpg" alt="" />
</div>

.pics {  
display: inline-block;
float: left;
height: 232px;
width: 232px;
padding-right: 15px;
margin: 0;
}

.pics img {
width: 275px;
height: 205px;
top: 0;
}


Je souhaiterai pouvoir rajouter pour chacune de mes images (en desous): un titre ainsi qu'un petit logo (une autre image donc).

Comment coderiez vous ça ?

Merci

2 réponses