Style required fields to have a red *

Is there any way in S2 members for me to set the *s on the required fields to be red?
The only way I can see to do it is to give those fields a class and add CSS to the class but that makes the whole title red. I just want the *s to be red.

You need to add a separate style to the *.

The * is in the same tag as the rest of the label. Also I found out once I actually did what I mentioned doing, adding a class in the S2 members back end, the class doesn’t affect the label, only the input. So I had to use the code below which I’d rather not use because it hinders me from easily making changes to the form.

	.login p:nth-of-type(1) label,
	.login p:nth-of-type(2) label,
	.login p:nth-of-type(3) label,
	.login p:nth-of-type(5) label,
	.login p:nth-of-type(6) label,
	.login p:nth-of-type(8) label,
	.login p:nth-of-type(10) label,
	.login p:nth-of-type(11) label,
	.login p:nth-of-type(12) label {
		color: #f00;
	}

If it is that important to you that the * be red, I’d look into creating a custom form template.