Can't figure out how to get these two to play nice. I've got galleriffic up and going nicely, but can't get captify to sit on top.
Galleriffic wants each image to be like this, where the img tag contains the thumbnail and the link contains the full sized image:
Captify wants either
or
but since the img tag is for the thumbnail, not the full sized image, it won't show up on the full image (and it just screws up the thumbnail).
Is there a way to reconcile the two or another way to get a smooth fading caption on hover?
Galleriffic wants each image to be like this, where the img tag contains the thumbnail and the link contains the full sized image:
Code:
<li>
<a class="thumb" name="leaf" href="image.jpg" title="Title">
<img src="image_thumbnail.jpg" alt="Title" />
</a>
</li>
Captify wants either
Code:
<img src="image.jpg" class="captify" alt="Caption Text" />
or
Code:
<img src="image.jpg" class="captify" rel="caption1" />
<div id="caption1"> Whatever caption you like </div>
but since the img tag is for the thumbnail, not the full sized image, it won't show up on the full image (and it just screws up the thumbnail).
Is there a way to reconcile the two or another way to get a smooth fading caption on hover?