From 192fae169c66c2c6b01053d32a76d75dad5d8f2c Mon Sep 17 00:00:00 2001 From: rohitwaghchaure Date: Thu, 5 Oct 2017 13:01:35 +0530 Subject: [PATCH] [Fix] Letter head not displaying proper in the pdf (#4251) --- frappe/utils/pdf.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/frappe/utils/pdf.py b/frappe/utils/pdf.py index 6fa7cd7231..6005346270 100644 --- a/frappe/utils/pdf.py +++ b/frappe/utils/pdf.py @@ -64,9 +64,7 @@ def prepare_options(html, options): # defaults 'margin-right': '15mm', - 'margin-left': '15mm', - 'margin-top': '15mm', - 'margin-bottom': '15mm', + 'margin-left': '15mm' }) html, html_options = read_options_from_html(html) @@ -135,6 +133,11 @@ def prepare_header_footer(soup): # {"header-html": "/tmp/frappe-pdf-random.html"} options[html_id] = fname + else: + if html_id == "header-html": + options["margin-top"] = "15mm" + elif html_id == "footer-html": + options["margin-bottom"] = "15mm" return options