Your Logo, Header and Footer
What the Default Header Contains
Top to bottom, before the article itself:
- Your header image, if you set one, capped and centered.
- Your tagline, if you set one, under the image.
- The page title, with a rule under it.
- The source URL, so whoever reads the printout can find the page again.
- The author and date, where we can find them.
Adding Your Logo
In the builder, set the page header to an uploaded image, give it the full URL of your logo, and add a tagline if you want one. On WordPress the same pair is in the plugin's settings.
The image needs to be reachable without signing in, because we load it when building the printout.
Common Questions
How do I show the URL and date in the header or footer?#
It depends which header you mean, and this trips a lot of people up.
In the content. The source URL and the date are already there, under the title. If they are missing, either the page exposed no date we could read, or CSS on your side is hiding #pf-src or #pf-date.
In the page margins, alongside page numbers. Those are drawn by your reader's browser from its own print settings, and no website can turn them on or off. In Chrome they are under More settings, then Headers and footers, in the print dialog.
How do I remove the title or the source URL?#
With custom CSS. Both have stable ids, so one rule each.
#pf-print-area #pf-title,
#printfriendly #pf-title {
display: none !important;
}
#pf-print-area #pf-src,
#printfriendly #pf-src {
display: none !important;
}Where that CSS goes is on custom CSS.
My logo does not appear#
Open the image URL in a private window. If it does not load there, it will not load for us either: the usual causes are a login-only media library, a hotlink protection rule, or a relative path where a full URL is needed.