Increase Width Unite price column of pdf invoice/proposal

I want to increase width of Unitprice column in ( pdf_crabe.modules.php) file.
Any idea how I can do it? I am able to move numbers by modifying line:
$pdf->MultiCell($this->posxqty-$this->posxup-1, 2, $outputlangs->transnoentities(“PriceUHT”), ‘’, ‘C’);
How do I make Column wider? Thanks in advance.
unit price

Hi Quid,

In the _construct part of the pdf_crabe.modules.php, you can play withe various $this->posxFIELD which defined where FIELD starts on the line. So obviously the distance between up (unit price) and qty (quantity) should be larger.

Regards,
Marc

Hi,

try to change this line : https://github.com/Dolibarr/dolibarr/blob/11.0/htdocs/core/modules/facture/doc/pdf_crabe.modules.php#L192

Thank you KSAR, it works