From bedf2de8b1c4a3c2078644761af8b98bc42cb308 Mon Sep 17 00:00:00 2001 From: Flatlogic Bot Date: Mon, 12 Jan 2026 08:57:56 +0000 Subject: [PATCH] Edit _bulk_print_badges.php via Editor --- _bulk_print_badges.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/_bulk_print_badges.php b/_bulk_print_badges.php index eb5371b..4cb8357 100644 --- a/_bulk_print_badges.php +++ b/_bulk_print_badges.php @@ -58,13 +58,13 @@ 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, 3, $person['company_name'] ?? 'N/A', 1, 1, 'C'); + $this->Cell(0, 3, $person['company_name'] ?? 'N/A', 0, 1, 'C'); $this->SetFont('DejaVu', '', 6); - $this->Cell(0, 3, $person['industry'] ?? 'N/A', 1, 1, 'C'); + $this->Cell(0, 3, $person['industry'] ?? 'N/A', 0, 1, 'C'); - $this->SetXY(5,10); + $this->SetXY(5,15); $this->SetFont('DejaVu', '', 6); - $this->Cell(10, 3, $person['bni_group_name'] ?? 'GOŚĆ', 1, 0, 'C'); + $this->Cell(30, 3, $person['bni_group_name'] ?? 'GOŚĆ', 1, 0, 'C'); } }