css - jquery dataTable change pages -


everyone! need change pagination in datatable. got i got this

and need change that

enter image description here

i tried change css this

  .datatables_wrapper .datatables_paginate .paginate_button.disabled{     margin-left:100px; } 

but failed. have got ideas? help!

if have table pagingtype full_numbers

var table = $('#example').datatable({   pagingtype: "full_numbers" }); 

you can hide first , prev buttons way

$('#example').on('draw.dt', function() {   $('.paginate_button.previous,.paginate_button.first').hide(); }); 

and looks image above - demo -> http://jsfiddle.net/n5dyy8px/


Comments

Popular posts from this blog

javascript - Google App Script ContentService downloadAsFile not working -

javascript - Function overwritting -

php - Find a regex to take part of Email -