I've been looking into how to modify the pagination design, but haven't had much luck finding information on it.
Currently, the table displays the standard default pagination style with the following jquery
code.
$('#id_view_student_table').DataTable({
"pagingType": "simple_numbers",
"language": {"paginate": {
"previous": '<i class="fa fa-angle-left" style="color: #27c2a5"></i>',
"next": '<i class="fa fa-angle-right" style="color: #27c2a5"></i>'
}
}
};
How can I manipulate the pagination
elements to change the appearance using css or jquery?
Update
I've included a screenshot to showcase the dataTables_paginate
elements.
Many thanks to @Birdie Golden for the initial guidance on interacting with the paginate
elements. Still working on understanding how to customize the hover
and current
elements though.
https://i.sstatic.net/alz34.png