Ask
Basically I want hide the Previous link on the first page and the Next link on the last page. On the initial search on Google what you get is:
when you are on the first page:
1 2 3 4 5 Next
Then when you go to page 2 you get:
Previous 1 2 3 4 5 Next
Finally if you go to page 5 you get:
Previous 1 2 3 4 5
Answer
Adding to your template css:
li.pagination-start .pagenav,
li.pagination-prev .pagenav,
li.pagination-next .pagenav,
li.pagination-end .pagenav {
display: none;
}
li.pagination-start a.pagenav,
li.pagination-prev a.pagenav,
li.pagination-next a.pagenav,
li.pagination-end a.pagenav {
display: inline;
}