Skip to main content
Help

Original post by: Max Fishman

Text:

Hi James,

That’s a good question. Here’s a CSS script that you can add to change the Parts and Tools text content on your guide PDFs. See our guide on [guide|6402] to make this change.

[code]
/* Change the Name of Parts and Tools on Printed PDF */
.column.parts.hasTools h2:before {
    content: "New Tool Name";
    visibility: visible;
} 
.column.parts.hasTools h2 {
    visibility: hidden;
} 
.column.tools.hasParts h2:before {
    content: "New Part Name";
    visibility: visible;
} 
.column.tools.hasParts h2 {
    visibility: hidden;
}
[/code]

Status:

open
TRUSTe