Currently the user can navigate by clicking on the numbers. However, I would like to add a 'previous' link before the numbers, on the same line, and a 'next' link after the numbers, taking the user back and forward respectively. Can anyone help?
I was about to say "what numbers" but I did Ctrl-A and I could (just about) see them: think they need to be a bit more prominent
I suggest you add and style the next and previous buttons firstly, before trying to add jQuery to them: it is difficult to discuss code for elements that don't yet exist!
__________________
"I'm here to save your life. But if I'm going to do that, I'll need total uninanonynymity." Me Myself & Irene.
Validate your HTML and CSS
Just one thing. Can I change the buttons so they appear simply as text, rather than a button? I would rather they not appear with the grey box around them but have them as simple text 'next' and 'back'. Apart from that it works beautifully!
<p id="cf7_controls">
<a class="clo" id="bak" >back</a><!-- any element other than a span -->
<span class="selected">01</span>
<span>02</span>
<span>03</span>
<span>04 </span>
<span>05 </span>
<span>06 </span>
<span>07 </span>
<a class="clo" id="nxt" >next</a> <!-- any element other than a span -->
</p>