Pound sign on estimates and invoices rather then GBP

Hi

Sorry thought of a quick question, is it possible to remove the GBP on the email template that gets sent to the customer and put the £ sign in its place

Kind regards

Ian

1 Like

I believe this is beyond the scope of the invoice email template so we’d either need to create a dedicated setting or change the behaviour on all accounts. I think creating a setting for this would be overkill so instead I’ll leave the thread open and if other users support this we can take another look.

Hi Glenn

Thank you appreciate it

Kind regards

Ian

Hi, I know this is a very old post but just in case anyone else wanted to include a £ on their invoices and estimates.

I managed to successfully add the pseudo class “before” to some of the table elements in the inspector, which adds the pound sign before the totals.

.footer-sub-total .invoice-footer-right-td:before, .footer-vat .invoice-footer-right-td:before, #invoiceBalanceAmount:before, #invoiceNetTotal:before, #invoiceAmountPaid:before, .tdItems3:before, .tdItems5:before, .tdItems6:before
{
    content: "£";
    padding-right: 1px;
}

This seems to work for me when creating the PDF invoices and estimates.

You may need to tweak the CSS slightly depending on the template you’ve chosen.

Cheers

1 Like