Changing the size of the search box
Changing the size of the search box
This might be a REAL stupid question but where do I go to modify the size of the search box? I want to make it a tad smaller.
Also, how would I go about adding a space after the table before it says 1 of 3 results of 3, for example.
Thank you in advance
Rob
Also, how would I go about adding a space after the table before it says 1 of 3 results of 3, for example.
Thank you in advance
Rob
This discussion has been closed.
Replies
http://digitaleconnected.com/tahs/as.jpg
Thanks again
I think you can use CSS to achieve what you are looking for. For the input element something like:
.dataTables_filter input { width: 50px }
would do, and for the margin above the info display:
.dataTables_info { margin-top: 12px }
or something like that. Have a fiddle around with the values in Firebug. Also all the class / ID information that DataTables uses can be found here: http://datatables.net/styling/ids_classes
Regards,
Allan