I have a table where I want some columns with a headerFilter and some without. The header of those columns without a filter are vertically aligned at the bottom.
I only found a headerHozAlign in the documentation, but none for vertical alignment. Is there an easy way to do this or do I have to manipulate the css?
Edit 1:
I figured this has something to do with my stylesheets interacting. I use the bootstrap 4.5 css and the tabulator_bootstrap4 css.
<!-- Bootstrap 4.5.0 -->
<link rel="stylesheet" href="/bootstrap.min.css">
<!-- Tabulator 4.9.3 -->
<link rel="stylesheet" href="/tabulator_bootstrap4.min.css">
When i remove the bootstrap 4.5 css, the headings look the way they should (the rest of the website looks strange, obviously).
The Tabulator documentation just says
A Bootstrap 4 compatible theme[...] The stylesheet maps the standard bootstrap table styling onto Tabulator. Source
Could this be the problem, that the tabulator stylesheet is just ment for bootstrap version 4?

