Changing selected radio button label color

Hi
So I’m working on styling some radio buttons, but I want to be able to change the color of the label (and possibly the padding, margin etc around it) when a button is selected.

Problem is, I’m not 100% sure about the correct CSS tag to use; I’ve been trying
body .gform_wrapper .gfield_radio li label:checked or similar but haven’t had much luck.

Does anyone know the correct tags to use?

Thanks!

A label can’t be ‘checked’, which is why it isn’t working :slight_smile:

I’ve used this in one of my forms:

#gform_wrapper_{FORM_ID} #field_{FORM_ID}_{FIELD_ID} input:checked + label {
	color: #e32f30;
}

Where {FORM_ID} ofcourse is the ID of the form in question and {FIELD_ID} the field ID :wink: