The SpryValidationRadio.css file contains the rules that style the Validation Radio Button widget and its error messages. You can edit these rules to style the look and feel of the widget and error messages. The names of the rules in the CSS file correspond to the names of the classes specified in the widget’s HTML code.
The following is the CSS code for the SpryValidationRadio.css file:
/*Validation Radio Button styling classes*/ .radioRequiredMsg, .radioInvalidMsg{ display: none; } .radioRequiredState .radioRequiredMsg, .radioInvalidState .radioInvalidMsg{ display: inline; color: #CC3333; border: 1px solid #CC3333; }
The SpryValidationRadio.css file also contains extensive comments, explaining the code and the purpose for certain rules. For further information, see the comments in the file.