The way you have things setup, these are your "pagination" links:
Code:
<div id="paginate-slider4">
<!-- is this necessary? <a href="#" class="toc" style="margin-left: 0px">
-->
<a href="#" class="toc" style="margin-left: 0px"><img src="frankt.jpg" /></a></a> <a href="#" class="toc someclass"> <img src="pine_thumb.jpg" /></a> <a href="#" class="toc someotheclass"><img src="ocean_thumb.jpg" /></a> <a href="#" class="toc someotheclass"><img src="sushi2_thumb.jpg" /></a></div>
Where you place them in your layout is up to you. The easiest way to get them to line up all in a row with the display of the result also in that row is to use a table. A better method is to use floats. There might be others.
However it's done, it's just a matter of layout, having nothing to do with this particular script. Example using a table:
Code:
<table>
<tr>
<td> <div id="paginate-slider4">
<a href="#" class="toc" style="margin-left: 0px"><img src="frankt.jpg" /></a></a> <a href="#" class="toc someclass"> <img src="pine_thumb.jpg" /></a> <a href="#" class="toc someotheclass"><img src="ocean_thumb.jpg" /></a> <a href="#" class="toc someotheclass"><img src="sushi2_thumb.jpg" /></a></div></td>
<td> <div id="slider4" class="sliderwrapper">
<div class="contentdiv" style="background: url(frank.jpg) center left no-repeat"> </div>
<div class="contentdiv" style="background: url(pine.jpg) center left no-repeat"> </div>
<div class="contentdiv" style="background: url(ocean.jpg) center left no-repeat"> </div>
<div class="contentdiv" style="background: url(sushi2.jpg) center left no-repeat"> </div>
</div>
</td>
</tr>
</table>
<script type="text/javascript">
featuredcontentslider.init({
id: "slider4", //id of main slider DIV
contentsource: ["inline", ""], //Valid values: ["inline", ""] or ["ajax", "path_to_file"]
toc: "markup", //Valid values: "#increment", "markup", ["label1", "label2", etc]
nextprev: ["", "Next"], //labels for "prev" and "next" links. Set to "" to hide.
revealtype: "mouseover", //Behavior of pagination links to reveal the slides: "click" or "mouseover"
enablefade: [true, 0.1], //[true/false, fadedegree]
autorotate: [true, 3000], //[true/false, pausetime]
onChange: function(previndex, curindex){ //event handler fired whenever script changes slide
//previndex holds index of last slide viewed b4 current (1=1st slide, 2nd=2nd etc)
//curindex holds index of currently shown slide (1=1st slide, 2nd=2nd etc)
}
})
</script>
Bookmarks