The 'src' of the <iframe> should point to the 'index.html' page of your gallery.
The leading slash in the sample 'src' signifies that the path starts at the root level.
You can, however, use an absolute URL so if your gallery folder is named 'gallery' and your gallery's HTML index page is named 'index.html' and you upload the entire gallery folder (not just the contents) to 'public_html' (the root of your web server), then the <iframe> code would be:
<iframe src="http://www.example.com/gallery/index.html" width="600" height="400" frameborder="0" scrolling="no"></iframe>
... changing 'www.example.com' in the above with the name of your own domain.
my newly created page only displays the code not the gallery
If you are seeing the code on the page, make sure that, when entering the embedding code into the body of the article, the 'Text format' (drop-down menu beneath the 'Body' text area) is 'Full HTML'.
As as anternative to the <iframe> method, you can use the embedding code generated by svBuilder but you will have to add a baseURL to point to your gallery folder: http://simpleviewer.net/simpleviewer/su … l#external
The equivalent to the above <iframe> code would be:
<!--START SIMPLEVIEWER EMBED.-->
<script type="text/javascript" src="http://www.example.com/gallery/svcore/js/simpleviewer.js"></script>
<script type="text/javascript">
var flashvars = {};
flashvars.baseURL = "http://www.example.com/gallery/";
simpleviewer.ready(function () {
simpleviewer.load("sv-container", "600", "400", "222222", true, flashvars);
});
</script>
<div id="sv-container"></div>
<!-- END SIMPLEVIEWER EMBED -->
Steven Speirs
SimpleViewer Support Team