CSS Level A/C
CSS Level A/C
mfeske
Posts: 23Questions: 2Answers: 0
Hi, I'm using version 1.9.2 and version 1.7.2 of DataTables from JQuery. I have a great table, and would like to but the lines instead of purple have in green. So far, I've noticed it on the CSS level A / C is I have not found any place where I can change that. Greetings Micha
This discussion has been closed.
Replies
[code]
tr.odd {
background-color: pink;
}
tr.even {
background-color: yellow;
}
[/code]
etc
Allan