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.