If I understand your question correctly, you're asking how to show the two "back" and "forth" navigation links of the slideshow so they are not side by side inside the pagination DIV? If so, what you can do is simply extend the area the pagination DIV covers to a wider area markup wise inside your page. For example, instead of:
Code:
<div id="fadeshow2"></div>
<div id="fadeshow2toggler" style="width:250px; text-align:center; margin-top:10px">
<a href="#" class="prev"><img src="http://i31.tinypic.com/302rn5v.png" style="border-width:0" /></a> <span class="status" style="margin:0 50px; font-weight:bold"></span> <a href="#" class="next"><img src="http://i30.tinypic.com/lzkux.png" style="border-width:0" /></a>
</div>
you can move the tag in red so it encompasses a greater area, ie:
Code:
<div id="fadeshow2toggler" style="width:250px; text-align:center; margin-top:10px">
<div id="fadeshow2"></div>
<a href="#" class="prev"><img src="http://i31.tinypic.com/302rn5v.png" style="border-width:0" /></a> <span class="status" style="margin:0 50px; font-weight:bold"></span> <a href="#" class="next"><img src="http://i30.tinypic.com/lzkux.png" style="border-width:0" /></a>
</div>
and with that change, your pagination links can be anywhere within that extended area and still work.
Bookmarks