Hi, I have custom my invoice as this, but when generate into pdf, somehow the black header totally missing.
Is it due to something missing in my code?
<td colspan="99">
<table><tr>
<td>
<div><b><h3>{{ recipient.name }}</h3></b> {{ recipient.code }}</div>
<div>{{ recipient.address | newline_to_br }}</div>
<div>{{ recipient.identifier }}</div>
</td>
<td style="padding-right: 20px; text-align: right">
{% for field in fields %}
<table>
<tr>
<td style="font-weight: bold; margin-bottom: 10px; text-align: left">{{ field.label }} </td>
<td style="text-align: right">{{ field.text }}</td>
</tr></table>
{% endfor %}
</td>
</tr>
</table>
</td>
</tr>