I need tables! My main site is still not upgraded to the newest avilable WP version so I can’t use there WP-Table plugin.

That plugin is not bad ;). You can edit all setting that you need (# of columns and rows, width of columns, border size, cells spacing and padding). It also possible to set colours of border and background (including alternative colour used in every second raw ;).

But as I mentioned -> can’t use it :(.

So I decided to take my chance and ‘play’ with code ; ).

First column Text to the right
Background color Centered bold text color

And now table with ‘invisible’ borders ;).

First column… … and second.

I did it :) !.

And here is a code:

<table style="text-align: left; width: 370px" border="1">
<tr>
<td style="width: 115px">First column</td>
<td style="width: 250px; text-align: right">Text to the right</td>
</tr>
<tr>
<td style="background-color: #ffcc66; width: 115px">Background color</td>
<td style="color: #990000; width: 250px; text-align: center; font-weight: 700">Centered bold text color</td>
</tr>
</table>

Also for table with ’invisible’ borders:

<table class="" border="0" style="text-align: left; width: 290px">
<tr>
<td class="" style="width: 140px"><strong>First column…</strong></td>
<td class="" style="width: 140px"><em><strong>… and second.</strong></em></td>
</tr>
</table>