Hi,
I need documentation for print format CSS, for example I have below invoice
to be like this
السلام عليكم
For a non-technical method to design print formats, you can use Print Designer as of V15
Otherwise you can create a custom print format or HTML blocks in your print format builder.
Non CSS solutions
If you need a help in writing HTML/CSS/Jinja print formats DM me privately I will guide you.
Thank you @Yamen_Zakhour @Mohammadali for your reply.
I implement it below table using an HTML block with CSS
<style type="text/css">
.myTable th {
background-color: #ddd;
color: black;
width: 50%;
font-size: 15px; /* Adjust the font size as needed */
}
.myTable td {
font-size: 13px; /* Adjust the font size for table data cells as needed */
}
</style>
<div class="itemDiv">
<table style="width: 100%;" class="myTable">
<tr>
<th style="width: 5%; text-align: center; border: 2px solid black;">ر.ت</th>
<th style="width: 55%; border: 2px solid black;">التفاصيل</th>
<th style="width: 10%; text-align: left; border: 2px solid black;">الكمية</th>
<th style="width: 15%; text-align: right; border: 2px solid black;">المجموع</th>
</tr>
{%- for row in doc.items -%}
<tr>
<td style="width: 5%; text-align: center;font-size: 10px; border: 2px solid black;">{{ row.idx}}</td>
{%- if row.item_code == "نسبة الشركة" -%}
<td style="width: 55%; border: 2px solid black; font-size: 12px;"><div style="border: 0px;">نسبة الشركة</div></td>
{%- else -%}
<td style="width: 55%; border: 2px solid black; font-size: 12px;"><div style="border: 0px;">{{row.custom_notes}}</div></td>
{%- endif -%}
<td style="width: 10%; text-align: left; border: 2px solid black; font-size: 12px;"><span>{{ row.qty }}</span></td>
<td style="width: 15%; text-align: right; border: 2px solid black; font-size: 12px;">{{ row.amount }}</td>
</tr>
{%- endfor -%}
</table>
</div>