1. Disable those features: http://datatables.net/usage/features
2. Remove (or reposition) the elements using the sDom parameter: http://datatables.net/usage/options#sDom
This was easier than I first thought. I made the empty header go away by setting fg-toolbar padding to 0. I then fixed up the look of the footer by adding margin: 5 to the components I had there.
Replies
Yes indeed. Two options:
1. Disable those features: http://datatables.net/usage/features
2. Remove (or reposition) the elements using the sDom parameter: http://datatables.net/usage/options#sDom
Regards,
Allan
I'd like to be able to css it out of existence but it shares all the same styling classes as the footer - which I want to keep.
Any advice?
Seems a bit hacky, but it did work:
[code]
.fg-toolbar {
padding: 0;
}
.dataTables_info {
float: left;
margin: 5px;
width: 30%;
}
.dataTables_paginate {
float: right;
margin: 5px;
text-align: right;
}
[/code]