My HTML has a class called .required that is assigned to required fields.
.required
Here is the HTML:
This works for me:
CSS
.form-group.required.control-label:before{ content: "*"; color: red; }
OR
.form-group.required.control-label:after{ content: "*"; color: red; }
Basic HTML