• Resolved broinfo101

    (@broinfo101)


    Hi thanks for this nice plugin. quick question, is it possible to increase the font size in the invoice.currently its 11px.

    thanks in advance

Viewing 1 replies (of 1 total)
  • Hi @broinfo101,

    Yes, you can change the font of the Invoice and Delivery note with CSS. Use the wcdn_head hook and then write your own CSS code. It’s best to place the code in the functions.php file of your theme.

    An example that changes the font and makes the addresses very large. Paste the code in the functions.php file of your 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 );

    We have added this point in the FAQ list on the plugin’s page as well if you have missed checking on it. ??

    Regards,
    Komal Maru

Viewing 1 replies (of 1 total)
  • The topic ‘font size increase’ is closed to new replies.