Hi Everyone, this is a simple portfolio site I'm designing:
dominic-bell.com/ug
I'm pretty familiar with Indexhibit (I like to think!) but really need some help with this problem with the slideshow plugin. This is how it works on my site:
http://dominic-bell.com/ug/index.php?/fashion/laurence-ellis
What I want to do is hide the 'previous' arrow on the first image, and (naturally) hide the 'next' arrow on the last image.
I reckon it can be done by using the 'after' callback which is built into the jquery cycle plugin. I guess by integrating here somehow:
function dynamicJS()
{
global $timeout;
return "$(document).ready(function(){
$('#image').cycle({
timeout: 0,
next:'#next', prev:'#prev',
});
});";
}
I've tried and failed. Any ideas??
Thanks for your time
Dom