PDF content seems to be limited to one column

I am using a 1 coulmn with 100% width design template in a section and called a paragraph control to display the data. When I am generating the pdf using pxCreatePDF, the output pdf file has content but it seems to be limited to 1 column while I am expecting it be using whole page layout. Attached the screenhot of pdf.

And how to remove this outer blue line border.

@PankajS3454

Are you using any container format or any parent section? If might be the case, that the container format or parent section layout might be the reason that your content is not using the full available space

@PankajS3454 - The styles will be passed for PDF generation depends upon DSS “UseCompactStylesForPDF”. If this is set to blank or false then skin styles will be passed. If it is set to true then styles from “pyCompactStylesForPDF.css” file will be picked up.

For getting border add styles in pyCompactStylesForPDF css text file.

body{

border : 2px solid blue;

}

Thank you.