Hi iam trying to modify the .array-flexible-column class ( i think thats what it is called )
in the template.css of the mind_idea template
current state is : the colums are alternating in color.
i want this for the rows . but i cant get it to work
.array-flexible-column col.odd,.array-flexible-column th.odd {
background-color: #0c1c2b;
padding: 0% 0.3em;
}
this is the part for the colums... as iam not very experienced with CSS i dont know any of the vocabulary

i would assume it would be something like this:
.array-flexible-column row.odd,.array-flexible-column td.odd {
background-color: #0c1c2b;
padding: 0% 0.3em;
}
but thats not working

any ideas?