Changing Validation Error Style?
Comments
-
Im trying to apply CSS to the Validation Errors because I want to make them look a bit more unique for our project. Is there a specific variable I have to update?
-
Yes, upon inspection and testing, Ive found that you can modify the element as such:
.validation-issues-container.vi-outline-surround.vi-bl-error{
border:2px solid !important;
border-color:purple !important;
background-color:yellow;
}That element allowed me to change the way it looked.