Ashish Shukla
Ashish Shukla

Reputation: 139

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.

Upvotes: 3

Views: 4787

Answers (1)

PradeepBhati
PradeepBhati

Reputation: 73

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>

Upvotes: 1

Related Questions