Is there a way to get the settings (frame width, caption location etc) in to the Index code for the Horizontal template (I have been looking for a while and my eyes are crossing ... :)
this is the Horizontal index:
<!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" lang="en" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Vela</title>
<link rel="stylesheet" type="text/css" media="screen" href="../css/sv.horizontal.template.css" />
<script type="text/javascript" src="../js/jquery-1.4.4.min.js"></script>
<script type="text/javascript" src="../svcore/js/simpleviewer.js"></script>
<script type="text/javascript">
function doLayout() {
var winHeight, winWidth, headerWidth;
winHeight = window.innerHeight ? window.innerHeight : $(window).height();
winWidth = window.innerWidth ? window.innerWidth : $(window).width();
headerWidth = $('#header').outerWidth();
$('#flashContent').height(parseInt(winHeight)).width(parseInt(winWidth) - parseInt(headerWidth));
}
$(document).ready(function () {
doLayout();
$(window).bind('resize', doLayout);
SV.simpleviewer.load('sv-container', '100%', '100%', '222222',true);
});
</script>
</head>
<body>
<div id="header">
<a href = "../gallery1/index.html">Vela</a><br />
<a href = "../gallery2/index.html">Basket</a><br />
<a href = "../gallery3/index.html">Textile</a><br />
<a href = "../gallery4/index.html">Rapport Optique</a><br />
<a href = "../gallery5/index.html">Fused</a><br />
<a href = "../gallery6/index.html">Collaboration</a><br />
<a href = "../gallery7/index.html">Special projects</a><br />
</div>
<div id="flashContent">
<div id="sv-container"></div>
</div>
</body>
</html>
This is the index with settings created on the Simple viewer pro (missing the horizontal bar of course)
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>SimpleViewer Gallery</title>
</head>
<body>
<!--START SIMPLEVIEWER EMBED -->
<script type="text/javascript" src="svcore/js/simpleviewer.js"></script>
<script type="text/javascript">
simpleviewer.ready(function () {
simpleviewer.load('sv-container', '100%', '100%', '222222', true);
});
</script>
<div id="sv-container"></div>
<!--END SIMPLEVIEWER EMBED -->
</body>
</html>
Any thoughts?