forum.coppermine-gallery.net

Support => cpg1.4.x Support => Older/other versions => cpg1.4 miscellaneous => Topic started by: Bloom on February 14, 2007, 04:30:33 pm

Title: How to stop thumbnail name being shown
Post by: Bloom on February 14, 2007, 04:30:33 pm
You know how sometimes, when you hover over a thumbnail, it shows the name of the file? How do I stop it from doing so?
Title: Re: How to stop thumbnail name being shown
Post by: Bloom on February 15, 2007, 05:24:39 pm
I just tried in the thumbnails.php file, there didnt seem to be anything, unless im missing something?
Title: Re: How to stop thumbnail name being shown
Post by: Stramm on February 15, 2007, 05:33:36 pm
functions.inc.php.... find
Code: [Select]
                        $thumb_list[$i]['image'] = "<img src=\"" . $pic_url . "\" class=\"image\" {$image_size['geom']} border=\"0\" alt=\"{$row['filename']}\" title=\"$pic_title\"/>";
replace with
Code: [Select]
                        $thumb_list[$i]['image'] = "<img src=\"" . $pic_url . "\" class=\"image\" {$image_size['geom']} border=\"0\" alt=\"{$row['filename']}\"/>";