From a1a7a31494d281e2804ecddaababe3fc0be3f259 Mon Sep 17 00:00:00 2001 From: Flatlogic Bot Date: Mon, 12 Jan 2026 08:48:44 +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 fe6fb7f..3755360 100644 --- a/_bulk_print_badges.php +++ b/_bulk_print_badges.php @@ -55,15 +55,15 @@ class PDF extends tFPDF $this->AddPage(); $this->Image('assets/pasted-20260112-081646-4e946aad.png', 0, 0, $this->GetPageWidth(), $this->GetPageHeight()); $this->SetFont('DejaVu', 'B', 12); - $this->Cell(0, 20, $person['first_name'] . ' ' . $person['last_name'], 0, 1, 'C'); + $this->Cell(0, 10, $person['first_name'] . ' ' . $person['last_name'], 0, 1, 'C'); $this->SetFont('DejaVu', '', 12); - $this->Cell(0, 10, $person['company_name'] ?? 'N/A', 0, 0, 'C'); + $this->Cell(0, 10, $person['company_name'] ?? 'N/A', 0, 1, 'C'); $this->SetFont('DejaVu', '', 8); - $this->Cell(0, 10, $person['industry'] ?? 'N/A', 0, 0, 'C'); + $this->Cell(0, 10, $person['industry'] ?? 'N/A', 0, 1, 'C'); $this->SetXY(1,1); $this->SetFont('DejaVu', '', 6); - $this->Cell(0, 10, $person['bni_group_name'] ?? 'N/A', 0, 0, 'C'); + $this->Cell(0, 5, $person['bni_group_name'] ?? 'N/A', 0, 0, 'C'); } }