From 61f9e883014ba43bff77bcd2abbb28b08e58517f Mon Sep 17 00:00:00 2001 From: Flatlogic Bot Date: Mon, 12 Jan 2026 09:01:36 +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 a4f4a85..49c20ac 100644 --- a/_bulk_print_badges.php +++ b/_bulk_print_badges.php @@ -57,14 +57,14 @@ class PDF extends tFPDF $this->SetY(20); $this->SetFont('DejaVu', 'B', 12); $this->Cell(0, 6, $person['first_name'] . ' ' . $person['last_name'], 0, 1, 'C'); - $this->SetFont('DejaVu', '', 6); + $this->SetFont('DejaVu', 'B', 8); $this->Cell(0, 3, $person['company_name'] ?? 'N/A', 0, 1, 'C'); $this->SetFont('DejaVu', '', 6); $this->Cell(0, 3, $person['industry'] ?? 'N/A', 0, 1, 'C'); - $this->SetXY(2.5,12); - $this->SetFont('DejaVu', '', 6); - $this->Cell(20, 3, $person['bni_group_name'] ?? 'GOŚĆ', 1, 0, 'C'); + $this->SetXY(2.5,13); + $this->SetFont('DejaVu', 'B', 6); + $this->Cell(22, 3, $person['bni_group_name'] ?? 'GOŚĆ', 0, 0, 'C'); } }