I\'m making a small site for my college project, most of it is complete but I\'m stuck on how I should go about adding a feature.
If you go onto a site like http://w
How about having a master And style them with CSS, or use JavaScript to set the images. See example on jsFiddle.image {
width: 200px;
height: 150px;
position: relative;
}
.footerBar {
background-color: lightGrey;
position: absolute;
bottom: 0px;
width: 100%;
overflow: none;
display: none;
}
.image:hover .footerBar {
display: block;
}