Reputation: 507
I am using DataTable in my project and i have a strange issue. Click to see my DataTable example
I attached a picture which is about my problem.
How can i remove the blank space with filter buttons and column headers?
It looks like when i use Google Chrome Web Inspector.
Upvotes: 0
Views: 1762
Reputation: 3171
You can try to override the margin.top property like that:
#example.dataTable {
margin-top: 0px!important;
}
Note: If you prepare a JSfiddle we can see the code and fix it for you...
Upvotes: 1