• Resolved caredesign

    (@caredesign)


    Hello. I would like to change the size of the Line with the Total Price. Change the Size and put it bold

    is it possible?

    Thanks für the help

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter caredesign

    (@caredesign)

    Found out how to change it in the css.

    Plugin Contributor Yordan Soares

    (@yordansoares)

    Hi @caredesign,

    To apply custom CSS rules, you can use the?wpo_wcpdf_custom_styles action?hook, like this:

    /**
     * PDF Invoices & Packing Slip for WooCommerce:
     * Add custom styles to the PDF documents
     */
    add_action( 'wpo_wcpdf_custom_styles', function ( $document_type, $document ) {
    	?>
    	/* Put your custom CSS rules below */
    	<?php
    }, 10, 2 );

    If you haven’t worked with code snippets (actions/filters) or functions.php before, read this guide: How to use filters

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change the Size of the Font of the Total’ is closed to new replies.