hi
in fact, it's a bit more complicated than I thought.
if you use the "Use Colorbox in Image page" option, you can change my theme to not display the title down the colorbox.
if it's on the slideshow with colorbox you want to remove the title, there is the zenphoto slideshow plugin you will have to change.
for the first case you must do the following:
in image.php, in the following code
`
<?php if(getOption('use_colorbox_image')) { ?>
<a rel="zoom">" title="<?php echo getBareImageTitle();?>"><?php printDefaultSizedImage(getImageTitle()); ?></a>
<?php } else { ?>
<?php printDefaultSizedImage(getImageTitle()); ?>
<?php } ?>
`
remove this code
`title="<?php echo getBareImageTitle();?>"`
for the second case, you have to modify slideshow.php :
this is a part of zenphoto package, and you will have to do this at each install of zenphoto, at your own risks !!
in slideshow.php, line 240 (in 1.4.1) :
replace
`
<a>" rel="slideshow"<?php echo $style; ?> title="<?php echo html_encode(strip_tags($imgobj->getTitle())); ?>"><?php echo $linktext; ?></a>
`
by
`
<!-- MOD <a>" rel="slideshow"<?php echo $style; ?> title="<?php echo html_encode(strip_tags($imgobj->getTitle())); ?>"><?php echo $linktext; ?></a> MOD -->
<a>" rel="slideshow"<?php echo $style; ?> ><?php echo $linktext; ?></a>
`
@acrylian : maybe, it should be an option on slideshow to display ornot a title in the bottomof the colorbox...