The area around the text is clickable but if I hover directly over the text and box the pointer returns to the standard arrow.
I don't understand enough about Joomla to know if this belongs here or in the 2.5 forum, sorry.
if($G['slide_links']){
wrapper.getElements('.gkIsSlide').addEvent("click", function(e){
window.location = links[$G['actual_slide']];
});
wrapper.getElements('.gkIsSlide').setStyle('cursor', 'pointer');
}
if($G['slide_links']){
wrapper.getElements('.gkIsSlide').addEvent("click", function(e){
window.location = links[$G['actual_slide']];
});
wrapper.getElements('figcaption').addEvent("click", function(e){
window.location = links[$G['actual_slide']];
});
wrapper.getElements('.gkIsSlide').setStyle('cursor', 'pointer');
wrapper.getElements('figcaption').setStyle('cursor', 'pointer');
}
if ($G['slide_links']) {
wrapper.find('.gkIsSlide').click(function(e) {
window.location = links[$G['actual_slide']];
});
wrapper.find('.gkIsSlide').css('cursor', 'pointer');
}
if ($G['slide_links']) {
wrapper.find('.gkIsSlide').click(function(e) {
window.location = links[$G['actual_slide']];
});
wrapper.find('figcaption').click(function(e) {
window.location = links[$G['actual_slide']];
});
wrapper.find('.gkIsSlide').css('cursor', 'pointer');
wrapper.find('figcaption').css('cursor', 'pointer');
}