Company logo in right side in Sales Invoice

Hello, I want to add company logo on top right side and Heading should be on top left side, not in new line.

How can do this?

I tried creating letterhead and Print Format Builder, but Sales Invoice Heading is showing in new line, while I want logo and Heading on same line just opposite of each other right and left.

Hi @umarless,

Please custom code in header and then check it.

<div class="row">
    <div class="col-xs-6">
        <h1>Your Heading</h1>
    </div>
    <div class="col-xs-6 text-right">
        <img src="/files/your_logo.png" alt="Company Logo">
    </div>
</div>

Thank You!

2 Likes