I use left and right fixed columns and i see that CSS for FixedColumn was incomplete.
In "fixedColumns.bootstrap5.css" file, the following CSS :
div.dataTables_scrollBody thead tr,
div.DTFC_LeftBodyLiner thead tr {
height: 0px !important;
}
Should be update to :
div.dataTables_scrollBody thead tr,
div.DTFC_LeftBodyLiner thead tr,
**div.DTFC_RightBodyLiner thead tr** {
height: 0px !important;
}
If you don't do this, you have a disalignment with your right fixed table.
Best regard.
Edited by Colin - Syntax highlighting. Details on how to highlight code using markdown can be found in this guide.