Odd, it seems to be working for me…
Alright. Disregard my last message - Just completely delete that small css block of code I gave you in the last reply and put this in it’s place:
table.table-tabular td,
table.table-tabular th {
border-bottom: 1px solid black;
}
That should give you the inside lines.
For the outside border, you’ll need to modify the .table-tabular block I gave you earlier. Change “.table-tabular” to “table.table-tabular”, then add this inside the curly braces: “border: 1px solid black;”. My whole block looks like this, for example:
table.table-tabular {
/* Line item info styling */
font-size: 14px;
font-weight: bold;
border: 1px solid black;
}
Give that a shot and see what happens.