Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can i adjust the height and width of pagination buttons in jquery datatable

enter image description here

how can i resize this highlighted buttons all of them?

i want to make it smaller in size.

like image 806
Ashish Shukla Avatar asked Jan 30 '26 10:01

Ashish Shukla


1 Answers

inspect element to find css class

i just done it by inspecting the button element from firefox browser.. and just overwrite that particular property with "!important" keyword in style tag. i attached the sample image.

<style>
    .dataTables_wrapper .dataTables_paginate .paginate_button
    {
        min-width: 0.2em; !important
    }
    </style>
like image 114
PradeepBhati Avatar answered Feb 02 '26 01:02

PradeepBhati