How to style the "Next", "Previous", "First" and "Last" buttons only ?
How to style the "Next", "Previous", "First" and "Last" buttons only ?
liranf
Posts: 9Questions: 6Answers: 0
I want to have icons instead of the words: "Next", "Previous", "First" and "Last", but to keep the numbers in between.
I found a similar question that suggested this:
"oLanguage": {
"oPaginate": {
"sNext": "Next"
}
}
but this affects the numbers also.
How can I accomplish styling only the "Next", "Previous", "First" and "Last" buttons ?
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
Use the language options - specifically
language.paginate.next
etc. With that you could insert HTML such as<i class="icon back"/>
or whatever HTML your icons need.Allan
Works great. 10X :-)