Is it possible to add an asterisk to the end of a text string inside <label> ?
This is what I have, but an asterisk (of course) is displayed behind the entire label:
<label class="xy-form-label-required" for="zipcode"> Zip Code <span class="xy-form-labelinfo"> Allowed characters az Az 0-9 ,.- Could also be an information about the field... </span> </label>
My CSS code is:
form.xy-form .xy-form-label-required:after { color: grey; content: ' *'; }
This is the result:
Postcode
Allowed characters az Az 0-9, .-
*
This is what I want to achieve without changing the html markup.
Postal Code *
Allowed characters az Az 0-9, .-
mayrs source share