I want to remove the borders in the Order Printer invoice template, but can't seem to find a good way.
I can make a new table style, but the current setting is just perfect without the border.
Is there a simple way to remove just the border?
I tried to find the class table-tabular, but it seems hidden.
below is just a part of the code using table-tabular class with the border.
--------------------------------------------
<table class="table-tabular" style="margin: 0 0 1.5em 0;">
<thead>
<tr>
<th>Quantity</th>
<th>Item</th>
{% if show_line_item_taxes %}
<th>Taxes</th>
{% endif %}
<th>Price</th>
</tr>
</thead>
<tbody>
{% for line_item in line_items %}
<tr>
<td>{{ line_item.quantity }} x</td>
<td><b>{{ line_item.title }}</b></td>
{% if line_item.tax_lines %}
<td>
{% for tax_line in line_item.tax_lines %}
{{ tax_line.price | money }} {{ tax_line.title }}<br/>
{% endfor %}
</td>
{% endif %}
<td>
{% if line_item.original_price != line_item.price %}
<s>{{ line_item.original_price | money }}</s>
{% endif %}
{{ line_item.price | money }}
</td>
</tr>
{% endfor %}
</tbody>
</table>
--------------------------------------------
User | Count |
---|---|
10 | |
7 | |
5 | |
4 | |
3 |