I added the following code to the end of Fancybox script, but it does not show 'Close' link below the image, nor disable default CloseButton.
$(document).ready(function() {
function formatTitle(title, currentArray, currentIndex, currentOpts) {
return '<div id="tip7-title"><span><a href="javascript:$.fancybox.close()">Close ×</a></span>' + ( title && title.length ? title : '' ) + '</div>';
}
$(".tip7").fancybox({
'showCloseButton' : false,
'titlePosition' : 'inside',
'titleFormat' : formatTitle
});
});
Any ideas?