Sure, to answer your questions:
1) Inside the .js file, the part that outputs the description is the below:
Code:
if (description!="") //Use title attr of the link as description?
imageHTML+='<br />'+description
So to get the description to appear to the right of the image, you might modify the output to something like:
Code:
if (description!="") //Use title attr of the link as description?
imageHTML+=' '+description
Or something like:
Code:
if (description!="") //Use title attr of the link as description?
imageHTML=description+" "+imageHTML
2) You can simply manually add an image tag inside the enlarged image DIV container that shows the initial page, for example:
Code:
<div id="loadarea" style="width: 600px"><img src="test.gif" /></div>
Bookmarks