How can I put the red asterisks after the required fields? | Community
Skip to main content

How can I put the red asterisks after the required fields?

  • July 15, 2021
  • 1 reply
  • 0 views

Björn12

I need help. I have seen the red asterisks. How can I set the red asterisks behind the required fields?

 

1 reply

Ifra
  • July 16, 2021

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

Team