diff --git a/openlp/core/lib/htmlbuilder.py b/openlp/core/lib/htmlbuilder.py index 295a6c1ad..d133cb035 100644 --- a/openlp/core/lib/htmlbuilder.py +++ b/openlp/core/lib/htmlbuilder.py @@ -38,7 +38,6 @@ HTMLSRC = u""" - OpenLP Display - - -
-""" - HTML_END = u'
' class Renderer(object): @@ -332,7 +310,10 @@ class Renderer(object): self.web.resize(self.page_width, self.page_height) self.web_frame = self.web.page().mainFrame() # Adjust width and height to account for shadow. outline done in css - self.page_shell = HTML_START % \ + self.page_shell = u'' \ + u'
' % \ (build_lyrics_format_css(self.theme_data, self.page_width, self.page_height), build_lyrics_outline_css(self.theme_data))