Invoice background/template/themes query

Hi all, newbie here, I have setup my desktop version and have been looking for way(s) to enhance the look of the invoices I want to send out. I will be saving them to PDF then emailing…

I have spent several hours over the past few days going through the documentation and forum but still haven’t found how to add backgrounds or customised invoice/quote templates. A lot of the forum posts are several years old and I’m just looking for someone to point me in the right direction so I can work though this.

Thanks in advance

M

We can still use Custom Themes to create our own templates.

Or use the script to add a background image to the invoice.

<script>
    var divElement = document.getElementById('printable-content');
    if (divElement) {
        divElement.style.background = "url('/view-attachment?ChIJzz15y55ZR0MRuhorlkKssxyiBhF0ZXN0ICgyMDI0LTA3LTE1KQ') no-repeat center";
    }
</script>

Place the script in the footer, then add the footer to the invoice.

3 Likes

Thanks for the Reply, so far everything I have been reading has been saying if we havent started using Themes then dont start… I though that meant the Devs were replacing the Theme with some other way to make templates etc, but it seems like its been a few years with no changes. I’ll have a look at the scripts … thank you and have a great day