Posts: 10
Location: Grapevine, Texas
|
I am temporarily incorporating a SimpleViewer 1.7 gallery into my site. According to the FAQs on SVs site, you can modify the “index.html file to incorporate any valid html elements. If anyone is familiar with this, please advise as to where to add the element in the new index.html file. When I did add a link back to one of the primary site pages, even though it looked as though it recognized the action, it would never return to that page. Sample code is below:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>SimpleViewer</title>
<style type="text/css">
<!--
html, body {
/* \*/
height:100%;
/* hide from Mac IE 5.x */
background-color: #181818;
margin: 0;
padding: 0;
border: 0;
overflow-y: hidden;
}
-->
</style>
<!-- saved from url=(0014)about:internet -->
<script language="javascript" type="text/javascript" src="flash_detect.js">
<!--
function getFlashVersion() { return null; };
//-->
</script>
<script language="javascript" type="text/javascript">
<!--
var flashVersion = getFlashVersion();
if (flashVersion < 6) {
location.replace("upgrade.html");
}
//-->
</script>
</head>
<body>
<p style="margin-top: 1px; margin-bottom: 1px">
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="100%" height="97%" align="middle">
<param name="movie" value="viewer.swf" />
<param name="quality" value="high" />
<param name="scale" value="noscale" />
<param name="BGCOLOR" value="#181818" />
<embed src="viewer.swf" width="100%" height="97%" align="middle" quality="high" scale="noscale" bgcolor="#181818" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>
</p>
</body>
</html>
|