Log in

View Full Version : Css Pop-up Image Viewer



NoClue
01-22-2008, 11:07 PM
Hi there,

I'm using the CSS pop-up image viewer and I've been trying to switch the title section, in RED, from the bottom to the top of the viewer here:
http://www.dynamicdrive.com/style/csslibrary/item/css-popup-image-viewer/P80/

I've tried a couple things but not luck. Here is the code:

<a class="thumbnail" href="#thumb">
<img src="Caliper_Hardware_thumb.jpg" width="120px" height="80px" border="0" />
<span><img src="Caliper_Hardware.jpg" /><br />
Caliper Hardware</span></a>

Thank you in advance!

Master_script_maker
01-22-2008, 11:25 PM
<a class="thumbnail" href="#thumb">
<img src="Caliper_Hardware_thumb.jpg" width="120px" height="80px" border="0" />
<span><img src="Caliper_Hardware.jpg" /><br />
<font color="red">Caliper Hardware</font></span></a>

Medyman
01-22-2008, 11:37 PM
I think he wanted the caption to appear on top of the image, not for the caption to be turned red.

I think...

To add the caption to the top, do this:


<a class="thumbnail" href="#thumb">
<img src="Caliper_Hardware_thumb.jpg" width="120px" height="80px" border="0" />
<span>Caliper Hardware<br /><img src="Caliper_Hardware.jpg" /></span></a>

Notice the change in order in the highlighted part.

NoClue
01-24-2008, 07:18 PM
Thank you. Yes I do want the caption at the top instead of the bottom.