Hi
Ok, making changes to the file "templates/semantic/html/thumbs_float.php" made no difference to my display. I even deleted the line completely and the alt was still displaying. Decided I need to look elsewhere. This is what I've done now (I'm using the semantic template):
in templates/meta/display.class.php line 895
<img id="thumb1" src="<?php waterMarker::showMarkedImage($name);?>" alt="<?php echo htmlspecialchars(stripslashes($descr), ENT_QUOTES); ?>" border="0" />
<?php
} else {
?>
<img id="thumb1" src="<?php echo imgUtils::getImgDisplay($name); ?>" alt="<?php echo htmlspecialchars(stripslashes($descr), ENT_QUOTES); ?>" border="0" />
I replaced the $descr with $name. This displays the image name as alt.
I'm do not know much about php but my logic says $title should display the image title in the alt tag but for some reason this does not work.