musiconly |
|
---|---|
Functions.php
if (!empty($row['structure_icon']))
{ $row['structure_icon'] = "<img src=\"".$row['structure_icon']."\" alt=\"\" />"; } to this: if (!empty($row['structure_icon']))
{ $row['structure_icon'] = "<img src=\"".$row['structure_icon']."\" alt=\"".$row['structure_title']."\" title=\"".$row['structure_title']."\" />"; } Note: ALT attribute is used when src image can NOT be found, and then it displays the data which is supplied for ALT (in your case structure title) instead of IMAGE. ALT attribute is NOT here to show info when user HOVERS over image - but the stupid IE6/7 uses it for that purpose. TITLE attribute is used for showing info when HOVERING over picture. |