Forum Moderators: not2easy
css code...
.bodyarticle {
font-size: 11px;
background-color: #999999;
text-align: left;
text-indent: 4px;
display: table-row;
color: #FFFFFF;
}
table row...
<tr >
<td class="test">01-01-05</td>
<td>Article title goes here</td>
</tr>
Just in case it's not clear: the 'display:table-row' declaration in your css controls the display properties of whatever element it is applied to; it does not change the styles of any tr element...
-b