|
hi, thanks for quick reply
i think it is hidden in template, with explisit alignment setting (see bold code)
<tr class="row1"><td><a href="result.php?resultid=1733444">1733444</a></td>
<td><a href="workunit.php?wuid=1423443">1423443</a></td>
<td>17 Feb 2011 18:56:04 UTC</td>
<td><font color="#33cc33">24 Feb 2011 18:56:04 UTC</font></td>
<td>In progress</td>
<td align="right">---</td>
<td align="right">---</td>
<td align="right">---</td>
<td align="right">---</td>
<td>primaboinca v7.06 </td>
</tr>
to make it easier in the whole site template, you can change this css code in here
http://www.primaboinca.com/style2.css
tr.row1 {
text-align: left;
}
tr.row0 td {
background-color: #eeeeee;
text-align: left;
}
to
tr.row1 {
}
tr.row0 td {
background-color: #eeeeee;
}
____________
|