• Resolved Iuda

    (@iuda)


    Hello.
    How can I increase the size of the writing on the invoice? The writing is too small

Viewing 1 replies (of 1 total)
  • Plugin Support Upendra Kapse

    (@wpupen)

    Hi @iuda,

    First of all, apologies for the delay in getting back to you on this.

    Here’s a filter we have using which you can change the fonts on the Invoice:

    /**
    * Add this code snippet in functions.php file of your currently active theme.
    */
    function example_serif_font_and_large_address() {
    ?>
    <style>
    #page {
    font-size: 1em;
    font-family: Georgia, serif;
    }

    .order-addresses address {
    font-size: 2.5em;
    line-height: 125%;
    }
    </style>
    <?php
    }
    add_action( ‘wcdn_head’, ‘example_serif_font_and_large_address’, 20 );

    You can adjust the font size in the above snippet as per your requirement.

    Kind Regards,
    Upendra.

Viewing 1 replies (of 1 total)
  • The topic ‘Increase font size in the invoice’ is closed to new replies.