• Resolved Jigzoos

    (@jigzoos)


    I’ve added my shop logo but can’t see how to have it centred at the top of the page. It’s currently over on the left side. Can this be done?

Viewing 1 replies (of 1 total)
  • Plugin Support Upendra Kapse

    (@wpupen)

    Hello,

    To center your logo inside the Invoice please try adding the following code snippet either in the functions.php file of your active theme or as a snippet using the Code Snippets plugin:

    function example_customize_invoice() {
        ?>
        <style>
                 .order-branding .company-logo
    		{
    			margin-left: 250px;
    		}
            </style>
        <?php
    }
    add_action( 'wcdn_head', 'example_customize_invoice', 20 );

    You can adjust the margin according to your requirement here in the above code snippet.

    Kind Regards,
    Upendra.

Viewing 1 replies (of 1 total)
  • The topic ‘Shop logo’ is closed to new replies.