Client Statement CSS Customisation

Hi

I’d like to remove payments received line at the bottom of the invoice and just show the O/S Bal

I would also like to move the position of my contact email and phone number, over the other side if possible.

Thank you : )

Hi @MGP

Hopefully this will help? Just add the below to your statement CSS (Account Settings > Design Customisation > Advanced CSS & HTML Customisation > Client Statement CSS):

tr[class^="footer-pay-"] {
    display: none;
}

.statement-contact-tbl {
    left: -320px;
    position: relative;
}

This moves the email and phone number over to the left:
image

Any removes any “Payments received” lines
image

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