• Resolved azrieluser

    (@azrieluser)


    Want to reduce the logo
    Where I enter the css code set inside the plugin, i found your network setting to sizing the logo (the logo stated more immediately huge on the invoice), inside the plug-in, i went into plugins – editing plugin, and i found there the sticky plug on the first column,

Viewing 1 replies (of 1 total)
  • Plugin Contributor kluver

    (@kluver)

    Hi @azrieluser,

    You can change the size of your logo with a small code snippet that contains some custom CSS:

    add_action( 'wpo_wcpdf_custom_styles', 'wpo_wcpdf_custom_styles' );
    function wpo_wcpdf_custom_styles () {
    	?>
    	td.header img {
        	max-height: 2cm;
    	}
    	<?php
    }

    This snippet should be placed in the functions.php of your child-theme. If you haven’t worked with code snippets or functions.php before please read this: How to use filters

Viewing 1 replies (of 1 total)
  • The topic ‘Sorry for the ignorance, where CSS is changed’ is closed to new replies.