• Hi I’m using Print Invoice Delivery Notes and i am wondering how i can change the size of the logo on the invoice.

    the original image is 266 x 90 px

    on the invoice it is shown in 66,5 x 22,5 px

    the css in /wp-content/plugins/woocommerce-delivery-notes/templates/print-order does not affect the logo size.

    does anyone have a solution?

    thx in advance

    https://ww.wp.xz.cn/plugins/woocommerce-delivery-notes/

Viewing 2 replies - 1 through 2 (of 2 total)
  • add something like
    .order-branding .company-logo img { width:364px; height:125px;} in your

    woocommerce-delivery-notes\templates\print-order\style.css

    giovanni lorenzini

    (@giovannilorenzinigmailcom)

    You can put in your theme function.php the following code

    function example_logo_with() {
    	?>
    		<style>
    			.order-branding .company-logo img {
    				width: 200px;
    				height: auto;
    			}
    		</style>
    	<?php
    }
    add_action( 'wcdn_head', 'example_logo_with', 20 );
Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Logo Size’ is closed to new replies.