How can I put the red asterisks after the required fields?
AnsweredI need help. I have seen the red asterisks. How can I set the red asterisks behind the required fields?
-
Hi Björn Hering,
You can use this code snippet at the bottom of stylesheet.
.request-form .required>label:after { //Pay attension on class name, may be your theme have different class-name in the form
content: "*";
color: red;
margin-left: 6px;
font-size: 20px;
vertical-align: middle;
}If something issue then add the font-awesome library on document_head.hbs file.
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
If any issue let me know :)
Thanks
Please sign in to leave a comment.
1 Comments