Logo/Image on Invoice Footer

Hi,

Can we put an image on the footer (left side) in an invoice?

Thank you
Raj

Hello Raj

You can yes.

I found the below example in the forum for you

<p style="text-align: left;"><a href="https:/YOURURL"><img class="size-medium wp-image-2569 alignleft" src="https://YOURURL" alt="" width="300" height="200" /></a></p>

Hi,
You can use the code example above. Just replace the 2 url’s (YOURURL) with the url where the logo (photo) is stored. If you don’t have the logo stored online, you can upload your logo to quickfiles document manager and use this url. With “width” and “height” you can adjust the size of the photo.

Hope this helps

Thank you Steve and rhc :slight_smile:

Good morning again :slight_smile:

I have managed to get an image in the “Fixed PDF Footer Text” using the above solution.

  1. How can I “align it to the left” as currently it is “center”
  2. Once image is aligned to the Left can I then have some text in the center or the right?

Thanks in advance to all readers and contributors
Raj

Hi,

<p><img src="YOURURL.jpg" align="left" width="100" height="100" /></p>
<p>My Text here</p>

Insert your image url and adjust the width and height if you want. Enter your text for “My Text here”

If you want the text aligned right use

<p><img src="YOURURL.jpg" align="left" width="100" height="100" /></p>
<p style="text-align:right;">My Text here</p>
1 Like

This topic was automatically closed after 7 days. New replies are no longer allowed.