Is there a way to show the descriptions under Fancybox? Line 172 of the php file shows
Am I mistaken, or doesn't this read that if there is a description, then display it?
Post 25 says to remove the underscores from title and description. Although this is a very old post, I tried it and messed up the fancybox completely.
The Fancybox css file has settings for the title, but none for the description.
And does anyone know if there are issues with Fancybox on[/php] iPhones?
Thanks!
Update: Found out how to add the description to Fancybox. Change line 189 to add the description:
PHP Code:
<?php if (@$item['_description']) echo '<p>'.htmlspecialchars(@$item['_description']).'</p>'; ?>
Post 25 says to remove the underscores from title and description. Although this is a very old post, I tried it and messed up the fancybox completely.
The Fancybox css file has settings for the title, but none for the description.
And does anyone know if there are issues with Fancybox on[/php] iPhones?
Thanks!
Update: Found out how to add the description to Fancybox. Change line 189 to add the description:
PHP Code:
<a href="<?php i18n_gallery_pic_link($gallery,$i); ?>" rel="fancybox-<?php echo $id; ?>" title="<?php echo htmlspecialchars(@$item['_title']).' - '.htmlspecialchars
($item['_description']); ?>">