SimpleViewer-Pro features a Back Button which can be set to redirect the user to any web page you choose.
The Back Button configuration options can be found here: http://simpleviewer.net/simpleviewer/pr … backbutton
If creating your SimpleViewer Pro gallery with svBuilder-Pro, then the Back Button options can be found in the 'Customize -> Back Button' section: http://simpleviewer.net/simpleviewer/pr … uilderpro/
TiltViewer-Pro does not feature a back button but you could overlay an HTML hyperlink on top of the gallery by doing the following.
(1) In the <head> section of your gallery's HTML index page, add the following code:
<style type="text/css">
#overlay {
position: absolute;
top: 10px;
left: 10px;
}
</style>
(2) In the <body> section of your gallery's HTML index page, add the following code:
<div id="overlay"><a href="http://www.example.com">Link</a></div>
(3) In the embedding code section of your gallery's HTML index page, add the following code immediately before the 'fo.write' line:
fo.addParam("wmode", "transparent");
Steven Speirs
SimpleViewer Support Team