From c7dc809d9ec820ca1d24aaf128386d23127b3553 Mon Sep 17 00:00:00 2001 From: Flatlogic Bot Date: Mon, 12 Jan 2026 08:56:46 +0000 Subject: [PATCH] Edit _bulk_print_badges.php via Editor --- _bulk_print_badges.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/_bulk_print_badges.php b/_bulk_print_badges.php index cc2e544..eb5371b 100644 --- a/_bulk_print_badges.php +++ b/_bulk_print_badges.php @@ -58,12 +58,12 @@ class PDF extends tFPDF $this->SetFont('DejaVu', 'B', 12); $this->Cell(0, 6, $person['first_name'] . ' ' . $person['last_name'], 0, 1, 'C'); $this->SetFont('DejaVu', '', 6); - $this->Cell(0, 6, $person['company_name'] ?? 'N/A', 1, 1, 'C'); + $this->Cell(0, 3, $person['company_name'] ?? 'N/A', 1, 1, 'C'); $this->SetFont('DejaVu', '', 6); - $this->Cell(0, 6, $person['industry'] ?? 'N/A', 1, 1, 'C'); + $this->Cell(0, 3, $person['industry'] ?? 'N/A', 1, 1, 'C'); $this->SetXY(5,10); - $this->SetFont('DejaVu', '', 4); + $this->SetFont('DejaVu', '', 6); $this->Cell(10, 3, $person['bni_group_name'] ?? 'GOŚĆ', 1, 0, 'C'); } }