Class " sorting_1"
Class " sorting_1"
Hi,
I am working on styling the table to match my corporate theme, when I sort on a column, say column 0 then datatables highlights this entire column.
I want to change this colour and looking with firebug it looks to be a css class is called " sorting_1", if this is the correct style then it isnt possible for me to restyle it with css as it has a space at the beginning of the class name.
If this is the wrong style to be changing can anyone tell me which style it should be?
Thanks
I am working on styling the table to match my corporate theme, when I sort on a column, say column 0 then datatables highlights this entire column.
I want to change this colour and looking with firebug it looks to be a css class is called " sorting_1", if this is the correct style then it isnt possible for me to restyle it with css as it has a space at the beginning of the class name.
If this is the wrong style to be changing can anyone tell me which style it should be?
Thanks
This discussion has been closed.
Replies
[code]
tr.even td.sorting_1 {
background-color: gray;
}
tr.odd td.sorting_1 {
background-color: red;
}
[/code]