action.skip

How to prevent line wrapping on the invoice PDF?

← PDF and Email FAQ

The product lines of the printed invoice are declared with <div> and <span> tags, and the price values and currency signs are declared in a <span> tag.

Sometimes the currency sign may wrap to the next line. To prevent this, proceed as follows:

  1. Identify the superior <div> tag.

    Use the template debug mode.

  2. Identify the class name of the <div> tag.

  3. In the Layout & Design section of the template, double-click the Custom CSS field and specify the following CSS code:

    .ClassName {white-space:nowrap;}
    

    Replace ClassName with the identified class name of the affected <div> tag.