Remove picture name when mouse over in the index Remove picture name when mouse over in the index
 

News:

CPG Release 1.6.27
change DB IP storage fields to accommodate IPv6 addresses
remove use of E_STRICT (PHP 8.4 deprecated)
update README to reflect new website
align code with new .com CPG website
correct deprecation in captcha

Main Menu

Remove picture name when mouse over in the index

Started by dieptebom, August 31, 2008, 10:04:59 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

dieptebom

Hello guys,

i have spent a few days now looking for the answere but didint find it so i hope someone can help me.

On the index ( main page ) we can see all the albums. When i mouse over the album i see the file name of the tumbnail next to my mouse. I want to remove this.

http://www.dieptebom.com/example.jpg [Edit GauGau] Replaced hotlinked image with attachment [/Edit]

Thank,
Rob

Joachim Müller

Edit index.php, find$alb_list[$alb_idx]['thumb_pic'] = "<img src=\"" . $pic_url . "\" class=\"image\" {$image_size['geom']} border=\"0\" alt=\"{$picture['filename']}\" />";and replace with$alb_list[$alb_idx]['thumb_pic'] = "<img src=\"" . $pic_url . "\" class=\"image\" {$image_size['geom']} border=\"0\" alt=\"\" />";

dieptebom

Hi Joachim Müller,

Thanks for your reply, It worked :)