Unfortunately, I do not have an iPad on which to test.
However, there are a couple of things you might like to try.
I notice that the embedding code for each gallery is all one a single line with no carriage return/line feeds.
Try putting each JavaScript instruction on its own line, rather than all being strung together on the same line.
eg. change:
<!--START SIMPLEVIEWER EMBED.-->
<script type="text/javascript" src="http://www.majesticwebcreations.com/sb/logos/svcore/js/simpleviewer.js"></script>
<script type="text/javascript">
var flashvars1 = {};
flashvars1.baseURL = "http://www.majesticwebcreations.com/sb/logos/";
simpleviewer.ready(function () {
simpleviewer.load("sv-container1", "700", "400", "transparent", true, flashvars1);
});
</script>
<div id="sv-container1"></div>
<!-- END SIMPLEVIEWER EMBED -->
... to:
<!--START SIMPLEVIEWER EMBED.-->
<script type="text/javascript" src="http://www.majesticwebcreations.com/sb/logos/svcore/js/simpleviewer.js"></script>
<script type="text/javascript">
var flashvars1 = {};
flashvars1.baseURL = "http://www.majesticwebcreations.com/sb/logos/";
simpleviewer.ready(function () {
simpleviewer.load("sv-container1", "700", "400", "transparent", true, flashvars1);
});
Also, I notice that your galleries use SimpleViewer-Pro v2.1.3.
Try upgrading your galleries to the latest version (v2.3.0) as several bugs have been fixed since then.
As a Pro v2.x user, you can download the latest version using the download link from your purchase email.
Please see here for details: http://www.simpleviewer.net/simpleviewe … grade.html
You can then upgrade your galleries by replacing the 'svcore' folders in each gallery with the 'svcore' folder from the SimpleViewer-Pro download package ('simpleviewer_pre_230/web/svcore/').
Steven Speirs
SimpleViewer Support Team