The default stylesheet defines those without the 'tr' part. Not sure why you'd need that. Here they are, from the current default stylesheet...
Code:
.rowOdd {
background-color: #E8E8E8;
height: 1.5em;
vertical-align: top;
}
.rowEven {
background-color: #F0F0F0;
height: 1.5em;
vertical-align: top;
}
You have...
Code:
.rowOdd {
background-color: #fddcfa;
vertical-align: top;
}
.rowEven {
background-color: #ffffff;
vertical-align: top;
}
So just add a height definition to each of those and you'll be fine.
Rob