Hi @mcsupport,
thanks, that would be great!
@artfuljammer I didn’t find a proper solution, but I managed to solve it with some CSS
First I made the label invisible:
label[for="mc_mv_EMAIL"] {
visibility: hidden;
}
then, with a pseudo element, I inserted my content and made it visible:
label[for="mc_mv_EMAIL"]:before {
visibility: visible;
content: "custom label*";
}
It’s neither elegant nor friendly, but it does the job. I hope that can help you.
Cheers,
Simone