I'm not sure exactly what you are going for but, this is my interpretation of what you wrote applied to the first demo show, add these styles in the head:
Code:
<style type="text/css">
#show1 {
width:280px;
margin:0 auto;
position:relative;
}
#show1 input {
position:absolute;
top:12px;
left:0;
width:55px;
}
#show1 #gostp0 {
top:42px;
}
#show1 #next0 {
top:72px;
}
#show1 #prev0, #show1 #next0 {
left:10px;
width:35px;
}
#show1 #counter0 {
text-align:right;
font-family:Comic Sans MS, cursive;
}
</style>
Add the red property to the first slide show declaration:
Code:
var slides=[]; //FIRST SLIDESHOW
//configure the below images and descriptions to your own.
slides[0] = ["photo1.jpg", "Kissing Fools"];
slides[1] = ["photo2.jpg", "Seated Woman"];
slides[2] = ["photo3.jpg", "The Dog Lovers"];
slides[3] = ["photo4.jpg", "Standing Woman"];
slides[4] = ["photo5.jpg", "John, Mary and Jesus"];
//optional properties for these images:
slides.counter=1; //use to show image count
Add the red markup and code to the first slide show markup and call in the body:
Code:
<p>
<div id="show1"><script type="text/javascript">
//Notes on Parameters: The only required parameter is the slides_array_name. If Width is used, so must Height.
//Interval is optional too. It is always last, either fourth after Width and Height or second after Slides_array_name.
//Usage: new inter_slide(Slides_array_name, Width, Height, Interval)
new inter_slide(slides)
iss[0].go('prev0').value=' /\\ ';
iss[0].go('next0').value=' \\/ ';
iss[0].go('thecnt0').parentNode.parentNode.id='counter0';
</script></div>
</p>
Bookmarks