...
Following meta tags are introduced in certificate template file to define page size and orientation which are used for downloading certificates (Manage > Reports > Grades (by student) Report > Download Certificates > By Course Offering)
It is recommended to use these tags in the head section of cshtml file which ensures pdf is rendered in proper size and orientation. If these tags are not found/invalid default configuration is considered (pageSize: Letter
, pageOrientation: Portrait
).
pageSize: Size of the rendered PDF (
A4
orLetter
)pageOrientation: Orientation of the rendered PDF (
Portrait
orLandscape
)
Code Block |
---|
<meta name="pageSize" content="Letter"> <meta name="pageOrientation" content="Landscape"> |