It seems what you're really asking is just how to position the pagination links so they're part of the content itself? Since you can only have one "p-select" DIV per Glider on the page, with that said, you can probably use some relative positioning to move the "p-select" DIV upwards, so it actually overlaps the bottom of the content area. Something like:
Code:
<div id="p-select" class="glidecontenttoggler" style="position:relative; top: -50px">
<a href="#" class="prev">Prev</a>
<a href="#" class="toc">Page 1</a> <a href="#" class="toc">Page 2</a> <a href="#" class="toc">Page 3</a>
<a href="#" class="next">Next</a>
</div>
You'll have to play with the values and perhaps add additional CSS properties, but that's the general idea anyway.
Bookmarks