Jump to content

sardelich

Member
  • Posts

    2
  • Joined

  • Last visited

About sardelich

sardelich's Achievements

Junior Member

Junior Member (1/3)

0

Reputation

  1. is there a way to remove the box around the text? # Payment Status $endpage = $pdf->GetPage(); $pdf->setPage($startpage); $pdf->SetXY(85,$addressypos); if ($status=="Cancelled") { $statustext = $_LANG["invoicescancelled"]; $pdf->SetTextColor(245,245,245); } elseif ($status=="Unpaid") { $statustext = $_LANG["invoicesunpaid"]; $pdf->SetTextColor(204,0,0); } elseif ($status=="Paid") { $statustext = $_LANG["invoicespaid"]; $pdf->SetTextColor(153,204,0); } elseif ($status=="Refunded") { $statustext = $_LANG["invoicesrefunded"]; $pdf->SetTextColor(34,68,136); } elseif ($status=="Collections") { $statustext = $_LANG["invoicescollections"]; $pdf->SetTextColor(255,204,0); } $pdf->SetFont('freesans','B',20); $pdf->Cell(100,18,mb_strtoupper($statustext,'utf-8'),'TB',0,'C','1'); $pdf->setPage($endpage); I just cant find the way to remove the box and just leave the text displayed
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated