Try setting your gallery's dimensions in the embedding code using absolute pixel values rather than percentages.
For example, try changing:
simpleviewer.load("sv-container", "100%", "100%", "transparent", false);
... to:
simpleviewer.load("sv-container", "960", "800", "transparent", false);
Also, as you can see, the thumbnails only show up without an image selected, then go away. Is there a way to have the thumbnails stay with each image and to have a large image show up from the beginning?
Your gallery forces the Mobile Player (rather than the Flash Player) to be used to display your gallery.
It is not possible to display thumbnails and a main image together in the Mobile Player.
It is, however, possible to start the gallery with a main image by using the firstImageIndex option.
A description of the firstImageIndex option can be found in the 'General' section of the 'SimpleViewer-Pro Config Options' page: http://simpleviewer.net/simpleviewer/pr … ml#general
Alternatively, you may wish to use the Flash Player to display your gallery (which will display both thumbnails and main image on the same page).
This can be achieved by changing the useFlash Embed Code Parameter from 'false' to 'true'.
In order to do this, change:
simpleviewer.load("sv-container", "960", "800", "transparent", false);
... to:
simpleviewer.load("sv-container", "960", "800", "transparent", true);
Steven Speirs
SimpleViewer Support Team