how to left align the Jquery datatable pagination buttons

datatables, jquery, pagination

Solution

You need to use !important to override the existing style applied to the paginator.

.dataTables_paginate {
  float: left !important;
}

Problem

Any ideas on how to left align the Jquery datatable pagination buttons? by default top buttons are aligned center, and bottom buttons are aligned right. Any ideas?

Original source