I am facing an issue with displaying captions on my images. The caption needs to display in two different ways - normal and hover. To better explain, I have included an image for reference.
Although I have made progress with a large portion of this task, I am unable to correctly show the normal caption on the image.
Can someone guide me on how to resolve this issue?
Below is a snippet of my HTML code:
<div class="slideimages">
<div id="box-1" class="box">
<div class="fix-caption">
<h3>Fix Caption</h3>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>
</div>
<a href="">
<img class="image_scale" src="images/4750.jpg"/>
<span class="caption scale-caption">
<h3>Scale Caption</h3>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>
</span>
</a>
</div>
</div>
View my JS FIDDLE link with CSS attached. Thank you.