HostGenie Posted April 17, 2019 Share Posted April 17, 2019 Hello, I am new here and would like to ask if someone could help with a small customisation I would like. This is regarding the quotepdf.tpl file. I presently have: # Company Details $pdf->SetFont($pdfFont,'',13); $pdf->Cell(180, 4, "My Comapny Name (11816738)", 0, 1, 'R'); $pdf->Cell(0,6,trim($companyaddress[0]),0,1,'R'); $pdf->SetFont($pdfFont,'',9); for ( $i = 1; $i <= ((count($companyaddress)>6) ? count($companyaddress) : 6); $i += 1) { $pdf->Cell(0,4,trim($companyaddress[$i]),0,1,'R'); } $pdf->Ln(5); But this doesn't seem to be resolving the issue I am having. What I am hoping to achieve is to have "My Company Name" in bold and the rest of the address below that same as it currently is above. I hope someone can come to my rescue regarding this please? Thank You 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.