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

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?

 

 

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


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

 


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