Icon and Brand Name
Your logo and brand name are automatically displayed in the header of every printed page and PDF. These items cannot be deleted by the end user.If your icon is not displaying:
Add an icon to your wepage.
- Use a 16x16 pixels or 32x32 pixels version of logo in .png, .gif, or .ico format.
-
Use this code (change image path to point to your image).
<link rel="icon" type="image/png" href="/images/mylogo.png"/> - Add the code to the head section<head>…</head> of your HTML page.
Add Custom Header or Footer
You can add a larger logo and tagline. This does not display in the browser, but shows when printed or generating a PDF.- Create a Paragraph or Div tag (or any HTML container element you'd like).
- Add class="print-yes" style="display:none"
- Add your image and tagline
<p class="print-yes" style="display:none"><img src="/mylogo.png">This is my tagline</p>