Frozen column header not using css attribute

Tags: #<Tag:0x00007efc61533ec8>

I am using the CSS setting to align the header text to left side, like this:

.ht_clone_top th {
text-align: left !important;
padding-left: 2px !important;
}
See screen shot to see issue.
How would I left align the column header of a frozen column?

it works for all columns except for the frozen column header.

Hi @mhennessy7

I suggest using

body .handsontable TH {
  text-align: left;
}

instead. Here’s a demo https://jsfiddle.net/L8qcvrua/

Thx, that worked!

You’re welcome