Invoice Customization
Back
Removal of a column with an ordinal number on the invoice
Last updated: 2021-04-07
To delete the ordinal number intended for the invoice item, go to the Settings> Account settings> Print settings tab, and then at the bottom of the page fill in the field Customize print with CSS with the CSS code shown below:
} @media all {
.main_inv_table>thead>tr>.nr_col {
display:none !important;
}
.main_inv_table>tbody>tr>.nr_col {
display:none !important;
}
}
Back
Comments
Add Comment