PDA

View Full Version : How to change thumbnail titles?


iaredatsun
08-28-2007, 07:54 PM
I'm trying to get rid of the title='.....' tag in the thumbnails in the browse page. The commenting in the index file is a little scant, so in index.php I have tried editing all 13 instances of title='.....' but this does not seem to effect the title attributes of thumbnails. Does anyone know where I can do this?

Dennis
08-28-2007, 08:18 PM
I'm not sure what you're trying to do.

iaredatsun
08-28-2007, 08:44 PM
I'm not sure what you're trying to do.

I'm trying to edit (i.e. get rid) of all the title attributes in the HTML img tags in the browse template:
e.g.
<img src="thumbnails/thumb_20070825021532_r0016483.jpg" alt="a_photo_title" title="a_photo_title" class="thumbnails" />

becomes
<img src="thumbnails/thumb_20070825021532_r0016483.jpg" alt="a_photo_title" class="thumbnails" />


But where is this code generated? In the index.php or somewhere else?

Dkozikowski
08-28-2007, 10:22 PM
includes/functions_browse.php

iaredatsun
08-29-2007, 09:17 AM
includes/functions_browse.php

Excellent – thank-you.