For a), you can add another CSS class to the pagination link(s) in question on top of "toc", then style that class in your CSS as desired. For example:
Code:
<a href="#" class="toc">First Page</a> <a href="#" class="toc anotherclass">Second Page</a> <a href="#" class="toc">Third Page</a> <a href="#" class="prev" style="margin-left: 10px"><</a> <a href="#" class="next">></a>
And in your CSS, something like:
Code:
.pagination a.anotherclass:hover{
background:lightblue;
}
For b) I'm not sure I understand. If you've set the slides to appear onMouseover of the pagination links, clicking on the links should navigate to a webpage. That's the case in the 4th demo (one with image thumbnail pagination links) on the DD script page.
Bookmarks