Display title below each thumbnail

Integration of Magic Zoom Plus from http://www.magictoolbox.com with Actinic.
Post Reply
norman
Site Admin
Posts: 1252
Joined: Sat Feb 07, 2004 9:55 pm

Display title below each thumbnail

Post by norman »

To display the Title below each thumbnail do the following:
Go to Design / Library / Layouts / Zoom Image Layout / Magic Zoom Image List.
Look (around line 233) for the line:

Code: Select all

						$html .= "</a>";
Immediately above it add:

Code: Select all

						$html .= "<br>" . ($iconalts[$i] == '' ? '&nbsp;' : htmlentities($iconalts[$i])); 
Now any none-empty Zoom Image n Title will display below the icon. Best keep them short.
Norman
Post Reply