I have a page that contains 4 images. I would like these images to be chosen randomly from a selection of images, each time the page is viewed.
The images also need to link to a specific page (depending on which image is displayed). For example:
- image_01 <- links to -> page_620.html
- image_04 <- links to -> page_154.html
HTML:
<div class="thankyou_wrapper">
<div class="thankyou">
<div class="socialphoto_container">
<div class="socialphoto"><a href="page_082.html" target="_self"><img src="images/image_01.jpg" width="220" height="220" /></a></div>
<div class="socialphoto"><a href="page_128.html" target="_self"><img src="images/image_05.jpg" width="220" height="220" /></a></div>
<div class="socialphoto"><a href="page_852.html" target="_self"><img src="images/image_08.jpg" width="220" height="220" /></a></div>
<div class="socialphoto"><a href="page_685.html" target="_self"><img src="images/image_04.jpg" width="220" height="220" /></a></div>
</div>
</div>
</div>
CSS:
.thankyou_wrapper {
width: 100%;
background-color: #FFF;
}
.thankyou {
margin: auto;
width: 940px;
min-height: 216px;
overflow: hidden;
padding-top: 20px;
padding-bottom: 20px;
}
.socialphoto_container {
width: 940px;
height: 230px;
}
.socialphoto {
width: 240px;
height: 220px;
margin-right: 0px;
float: left;
}
.socialphoto:last-child {
width: 220px;
}
Any ideas?