
Change or Remove the Title and Header in PrintFriendly & PDF
To remove the default Header (page title and URL), use our custom Print Style Sheet option.
Step 1: Create a custom Print Style Sheet
Step 2: Identify the HTML elements you want to hide/change (use Chrome Developer Tools or Firebug)
Header is #pf-src
Title is #pf-title

Step 3: Add Custom CSS Styles to the Stylesheet
Examples:
/* Removes the header */
#printfriendly #pf-src{
display:none;
}
/* - Removes the title */
#printfriendly #pf-title{
display:none;
}