JQuery Fancy box (in WordPress) tips (site: http://fancybox.net/ )
Solution:
1) Hide title by Removing title attribute from anchor (a) tag.
2) Remove rel="title" to remove next, previous button on slide in <a> tag
See Example below:
Earlier:
<h2><a class="fancybox" href="#inline<?php echo get_the_ID(); ?>" rel="title" title="<?php the_title_attribute(); ?>">
<?php the_title(); ?>
</a></h2>
Later:
<h2><a class="fancybox" href="#inline<?php echo get_the_ID(); ?>" >
<?php the_title(); ?>
</a></h2>