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'); } }