Topic: absence of vertical scrollbar [SOLVED]
Hello, I've integrated a simpleviewer in an html webage, but due to the absence of vertical scrollbar, one sees only a part of the gallery. What can be done ?
My html code is :
<div id="header">
...
</div>
<div id="nav1">
<ul id="nav">
...menu...
</ul>
</div>
<div id="art1">
<!--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 -->
</div>
The used names for the "div" are due to the fact that initially it was html5 and that I have regressed to see if it was the reason...