From 0b3a1c1c19477d677c7d1433b9f9c865c05d165e Mon Sep 17 00:00:00 2001 From: Flatlogic Bot Date: Mon, 12 Jan 2026 08:49:55 +0000 Subject: [PATCH] Edit _bulk_print_badges.php via Editor --- _bulk_print_badges.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/_bulk_print_badges.php b/_bulk_print_badges.php index 3755360..63d2543 100644 --- a/_bulk_print_badges.php +++ b/_bulk_print_badges.php @@ -54,9 +54,10 @@ class PDF extends tFPDF function generateBadge($person) { $this->AddPage(); $this->Image('assets/pasted-20260112-081646-4e946aad.png', 0, 0, $this->GetPageWidth(), $this->GetPageHeight()); + $this->SetY(3); $this->SetFont('DejaVu', 'B', 12); $this->Cell(0, 10, $person['first_name'] . ' ' . $person['last_name'], 0, 1, 'C'); - $this->SetFont('DejaVu', '', 12); + $this->SetFont('DejaVu', '', 8); $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, 1, 'C');