customize pagination button in datatable?
customize pagination button in datatable?
Montukhan786
Posts: 1Questions: 0Answers: 0
.pagination > li > a, .pagination > li > span{background-color:skyblue;color:black;border-radius: 50%;}
.pagination > li.active > a, .pagination > li.active > span{background-color:#d89b47 !important;border-radius: 50%;}
i write this css for customize pagination button.all are work fine but first and last page button not working properly(border-raduis property not apply) why?
Replies
I looked at a default Datatables config and don't see the
pagination
applied anywhere. That suggests you have other customizations to the paging buttons. Please post a link to your page or a test case replicating the issue so we can help debug.https://datatables.net/manual/tech-notes/10#How-to-provide-a-test-case
Maybe you need to add
!important
to the border-radius property to override the styling rules.Kevin