Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Contributor kluver

    (@kluver)

    Hi @silvester2,

    You can use the following code snippet:

    add_action( 'wpo_wcpdf_custom_styles', 'wpo_wcpdf_custom_styles' );
    function wpo_wcpdf_custom_styles () {
        ?>
        .packing-slip .meta .sku { 
            font-size:1.1em; 
        }
        <?php
    }

    This code snippet should be placed in the functions.php of your child theme. If you haven’t worked with code snippets or functions.php before I would recommend reading this first: How to use filters

    Thread Starter silvester2

    (@silvester2)

    Perfect. Thanks for your help!

    Thread Starter silvester2

    (@silvester2)

    Closed

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Increase font size of “SKU line” in packing slip’ is closed to new replies.