Problems, need help? Have a tip or advice? Post it here.
3 posts Page 1 of 1
Hi,

I have paginator at the bottom of the page, but in this way when I change page it appears the top of the new page, so I have to scroll down every time. Can I use anchors (or similar things) so it automatically open the new page in the paginator section?

Thank you for your help!
Very easy. Add an ID to the div wrapping around the pagination like this
Code: Select all
<div id=“pagination-wrap”>… pagination elements…</div>


Now at the end of all the pagination links add this #pagination-wrap like so as an example
Code: Select all
<a href=“<cms:show next_link />#pagination-wrap”></a>


Now anytime you click on any of the pagination links, it will automatically move to the pagination any where on your web page. Let me know if that solves your problem. Thank you
Great and simple solution! It works like a charm!
3 posts Page 1 of 1