I'm not finding a listing of the available options for the non-pro version.
The SimpleViewer Standard Config Options can be found here: http://simpleviewer.net/simpleviewer/su … tions.html
In order to achieve what you would like, you could use a single XML file for the galleries on both pages.
In the XML file, delete the thumbPosition option (but leave other options such as galleryStyle="MODERN").
In one page's embedding code, set the thumbPosition option to LEFT via a flashvar and in the other page's embedding code, set the thumbPosition option to BOTTOM, again via a flashvar, eg:
<!--START SIMPLEVIEWER EMBED.-->
<script type="text/javascript" src="svcore/js/simpleviewer.js"></script>
<script type="text/javascript">
var flashvars={};
flashvars.thumbPosition="LEFT";
simpleviewer.ready(function () {
simpleviewer.load("sv-container", "100%", "100%", "222222", true, flashvars);
});
</script>
<div id="sv-container"></div>
<!-- END SIMPLEVIEWER EMBED -->
Steven Speirs
SimpleViewer Support Team