This morning the font size we perfect, now this afternoon it is tiny and no matter what i change on the snippet it does not change size. Just stays the same. Can you help?
i have attached an invoice from this morning and an invoice from this afternoon. This mornings is large all over including the product field. This afternoons are smaller and i have not updated anything. Can you help?
There are multiple products displayed in the first invoice hence the font size is smaller than the second screenshot. However, you can make the use of below-provided custom code to increase the font size on the invoice.
/**Add this code snippet in the functions.php file of your currently active theme. */ function example_serif_font_and_large_address() { ?> <style> #page { font-size: 1em; font-family: Georgia, serif; } </style> <?php } add_action( ‘wcdn_head’, ‘example_serif_font_and_large_address’, 20 );
Please check and let me know if the provided custom code is working as per your requirements or not.
I forgot to inform you in my previous response that kindly use the “!important” tag while setting up the increased font size in the provided custom code. So the font-size will be increased. E.g. font-size: 10em !important;
thank you for the reply. The larger one was always like that no matter how many items were ordered. The smaller one is how everything looks now no matter how many orders.
I have added the snippet you sent to my snippets but it has no effect unfortunately.