Fixed column header color not changing

Fixed column header color not changing

davidjmorindavidjmorin Posts: 101Questions: 31Answers: 0

I have searched high and low and cannot figure out the css for the fixed column. I have edited my css to include the div that is being used but still no change.

 .DTFC_LeftBodyLiner {
 overflow-x: hidden;

 }

 table.DTFC_Cloned thead,
 table.DTFC_Cloned tfoot {
 background-color: black;
 }

 div.DTFC_Blocker {
 background-color: black;
 }

This is still not working. What is the div name of this column? I inspect the code but it doesn't seem to match up with what I have read.

This question has an accepted answers - jump to answer

Answers

  • davidjmorindavidjmorin Posts: 101Questions: 31Answers: 0

    I also tried to add this to my css

    table.dataTable thead > tr > th.sorting_asc, table.dataTable thead > tr > th.sorting_desc, table.dataTable thead > tr > th.sorting, table.dataTable thead > tr > td.sorting_asc, table.dataTable thead > tr > td.sorting_desc, table.dataTable thead > tr > td.sorting{
    background-color: black;
    }
    

    I am using black just to see the changes.

  • colincolin Posts: 15,237Questions: 1Answers: 2,599
    Answer ✓

    We're happy to take a look, but as per the forum rules, please link to a test case - a test case that replicates the issue will ensure you'll get a quick and accurate response. Information on how to create a test case (if you aren't able to link to the page you are working on) is available here.

    Cheers,

    Colin

  • hisyamkhisyamk Posts: 1Questions: 0Answers: 0

    Just add something like this:

    .table thead th {
      background-color: black;
    }
    

    You can add it inline or link it below the fixedColumn css

This discussion has been closed.