OK i see in the CSS the following :-

tr.odd td, tr.even td {
padding: 0.3em;
}

So i seperated those and added color to the re.even.td element but although it worked to a fashion it didn't handle all of the forums.

So am i missing something here or is it all hard coded ? I see here at drupal.org that the cells are indeed alternating.

Any guidiance would be appreciated .

Comments

yvelle’s picture

do you have a css declaration for a td class (like td .forum)? It might be overriding the color. I believe that the classes are added after the td, so it could override. also, make sure you're not declaring it as "re.even.td" as you typed it. ;-) It should be tr.even td {}.

desm0n’s picture

Ah thats likely the case. I'll look into it deeper.

so the odd and evens classes are in effect in the module and just need the css to layout them out yes ? If so i'm on the right path. The bluemarine theme of 4.7 doesn't seem to use them at all.