I need to add dimensions/text data to the featured image on the right. I was going to add it to another image and swap it ... or maybe hide captions with data on the images and show them on the featured? Any thoughts on a best approach for this? Thanks so much for helping me!
http://test.pillarsoflifebook.com/ottomans/
Currently it's just one line of dimensions but I'd like this to be scalable incase the client wants other pages to have a description or more in depth text than a single line.
Thanks so much! Here's the JQuery I'm using for the swap currently:
function myFunction2() {
var $large = jQuery('#largeImage1');
//store the default image as the data src
$large.data('src', $large.attr('src'));
var src = jQuery('#largeImage').attr('src');
jQuery('#thumbs1 img').hover(function () {
$large.attr('src', jQuery(this).attr('src').replace('thumb', 'large'));
}, function () {
//on mouse leave put back the original value
//$large.attr('src', $large.data('src'));
});
}
jQuery(document).ready(function () {
jQuery(myFunction2);
});