Remove error.svg from authenticator message | XM Community
Skip to main content
Solved

Remove error.svg from authenticator message


Forum|alt.badge.img+7

I found help on managing text that is shown for authenticator errors, but I also want to remove the error.svg (red exclamation point).  Can anyone tell me how to do this/share CSS or javascript to do it?

 

 

Best answer by vgayraud

.Skin .ValidationError, .Skin .ValidationError.Warn {
    background-image: none;
}

 

View original

3 replies

Forum|alt.badge.img+7
  • Author
  • Level 2 ●●
  • 29 replies
  • April 3, 2025

@Deepak - I used your code for modifying the text; do you also know how to remove the exclamation point?


vgayraud
QPN Level 6 ●●●●●●
Forum|alt.badge.img+49
  • QPN Level 6 ●●●●●●
  • 389 replies
  • Answer
  • April 4, 2025
.Skin .ValidationError, .Skin .ValidationError.Warn {
    background-image: none;
}

 


Forum|alt.badge.img+7
  • Author
  • Level 2 ●●
  • 29 replies
  • April 4, 2025

For anyone that might come across this, here is the full syntax I used.

<style type="text/css">.Skin .ValidationError, .Skin .ValidationError.Warn {
    background-image: none !important;
}
</style>


Leave a Reply