Is there any way I can change the style of all stars at once, or do I have to do it manually?

Code: Select all
.validator
{
color:#00FF00!important;
}
Code: Select all
<asp:RequiredFieldValidator ID="BillToFirstNameRequired" runat="server" Text="*"
ErrorMessage="First name is required." Display="Static" ControlToValidate="BillToFirstName"
EnableViewState="False" SetFocusOnError="false" ValidationGroup="OPC" CssClass="validator"></asp:RequiredFieldValidator>