Hi there,
I know this isnt from your theme but I had a java script code from my last theme that allowed Slickr Flick to add a fade effect over thumbs in the footer (if theres no border effect).
Can you explain how I can implement this. I realise this may not work but i’d like to try it. If its wrong but you already know of another way to achieve the same effect then I could do with your suggestions – either with this plugin or another.
Cheers
Andy
Here’s the code….
jQuery(‘.slickr-flickr-gallery ul li a’).hover(
function()
{
jQuery(this).stop();
jQuery(this).animate({‘opacity’:’0.75′}, 200 );
},
function()
{
jQuery(this).stop();
jQuery(this).animate({‘opacity’:’10’}, 100 );
});