Hi Tom,
What you want to do is a little tricky, as the row was planned
to have just a few layout option (like background color!).
To achieve the desired effect, you have to do a bit of "CSS"
So, in the file in which you want to have this effect, insert just before </head>:
<style type="text/css">
tr {
display: table; /* this makes borders/margins work */
border: 1px solid black;
}
</style>
This will apply to all tables row, then if you have more than
1 table and don't want this border to apply to all tables, simply
specify an "ID" for the table with border. 1st line will be:
MyTableID tr {...
Hope this help!
Regards,
Jacques