Use these styles:
Code:
<style type="text/css">
#slideShow {
height:269px;
position:relative;
}
#slideShow input {
display:none;
}
#ecount, #edesc {
width:200%;
left:-50%;
text-align:center;
position:absolute;
padding-top:1ex;
}
#edesc {
z-index:1000;
}
#ecount {
padding-top:3.75ex;
}
#econtrols {
position:relative;
top:3ex;
}
</style>
instead of just the:
Code:
<style type="text/css">
#slideShow input {
display:none;
}
</style>
we used before. Make the script call in the body look like so (additions red):
Code:
<div id="slideShow">
<script type="text/javascript">
new inter_slide(slides)
var extras=document.getElementById('slideShow').getElementsByTagName('div');
extras[extras.length-2].id='ecount';
extras[extras.length-3].id='edesc';
</script>
</div>
Add this id to a container for the controls, like so:
Code:
<td valign="top" align="center">
<div id="econtrols"><input id="prev0" disabled type="button" value=" << " onclick="iss[0].changeimg(false, 'nav');">
<input id="gostp0" type="button" value=" Stop " onclick="iss[0].gostop(this);">
<input id="next0" disabled type="button" value=" >> " onclick="iss[0].changeimg(true, 'nav');">
</div>
</td>
Also, you may as well get rid of this stuff:
Code:
<style type="text/css">
/* All Styles Optional */
* {
font-family:arial;
font-size:10pt;
}
div#show3 {
background-color:#efefef;
width:140px;
margin:0 auto;
border:1px solid #444444;
}
div#show3 table td, div#show4 table td {
height:24px;
background-image:url('38.gif');
}
div#show4 table td {
background-image:url('40.gif');
}
div#show3 table input, div#show4 table input {
outline-style:none;
}
.style3 {
font-size: 12px;
font-family: Arial, Helvetica, sans-serif;
}
</style>
<!--[if IE]>
<style type="text/css">
div#show3 table td, div#show4 table td {
height:21px;
}
</style>
<![endif]-->
You are not using it.
Bookmarks