The enabletitle property is only as regards whether or not the title attribute is used as a description beneath the larger image. I'm assuming you want that. In which case you should set it to yes or just omit it.
There's no closing </a> tag in the example code in your post and no closing </h3> tag in its title attribute. These will cause problems in some browsers.
To stop the title from appearing as a tooltip onmouseover of the trigger, set another title, or an empty title on the thumbnail image (additions/changes highlighted):
Code:
<a href="images\M_1.png" rel="enlargeimage" rev="targetdiv:loadarea,trigger:click,enabletitle:yes"
title="somthing<br><h2> and more</h2><h3>why not</h3>"><img src="images\tmb_M_1.jpg" rel="shadowbox=no"
title="something I want the user to see on hover" width="65" height="43" border="1"/></a>
Or:
Code:
<a href="images\M_1.png" rel="enlargeimage" rev="targetdiv:loadarea,trigger:click"
title="somthing<br><h2> and more</h2><h3>why not</h3>"><img src="images\tmb_M_1.jpg" rel="shadowbox=no"
title="" width="65" height="43" border="1"/></a>
Bookmarks