Help with customising invoice label

Hi, please could someone talk me through changing my invoice label ‘‘due by date’’ to red, client seem to be missing it :slight_smile:

I know how to get into the CSS but not sure on the coding and i dont want to mess the invoice up.

This is what is says at the moment:

}

.transform-invLabel_05 {
content: “Due by Date”;
}

Hi @charlotte

Are you looking to make just the text ‘Due Date’ red, or the whole line?

For just the label, you can use:

.tr-invoice-details-duedt .invoice-details-left-td {
    color: #ff0000;
}

This would give you:

For all of the line, use that one and also:

.tr-invoice-details-duedt .invoice-details-right-td {
    color: #ff0000;
}

This would give you:

Brilliant thank you, it worked perfectly.

1 Like

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