Skip to main content
Customization and Appearance

Information on how to customize the look of your Dozuki site using built-in tools as well as CSS and HTML.

6 Questions View all
Discussion Topic
User avatar

Changing Tool/Part Text in PDF

I found custom CSS to change the text content of the Tools and Parts section, however it does not update on the PDF export. Is there custom CSS for the PDF so that my change can be in both places?

Reply to discussion Subscribe to discussion

Is this a worthwhile discussion?

Score 0
Add a comment

1 Reply

Most Helpful Answer
User avatar

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 How to Customize PDFs to make this change.

/* 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;
}

Was this reply helpful?

Score 1
Add a comment

Join the discussion

Author avatar James Stevens will be eternally grateful.
TRUSTe