kartik-v / yii2-mpdf

A Yii2 wrapper component for the mPDF library which generates PDF files from UTF-8 encoded HTML.
http://demos.krajee.com/mpdf
Other
161 stars 150 forks source link

Remove border bottom header #53

Closed edsonrbispo closed 5 years ago

edsonrbispo commented 7 years ago

How to remove the boder-bottom of the header

dieruckus commented 6 years ago

Try this:

 $pdf = new Pdf([ .....
     'options' => [               
                'defaultheaderline' => 0,  //for header
                 'defaulfooterline' => 0  //for footer
            ],
]);
stale[bot] commented 5 years ago

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

microinginer commented 1 year ago
 $pdf = new Pdf([ .....
     'options' => [               
                'defaultheaderline' => 0,  //for header
                 'defaulfooterline' => 0  //for footer
            ],
]);
$pdf = new Pdf([ .....
'options' => [               
'defaultheaderline' => 0,  //for header
'defaultfooterline' => 0  //for footer
],
]);

replace defaulfooterline to defaultfooterline