adding Astric symbol

1
how can i add astric symbol for mandatory fields using css class in appearance 
asked
2 answers
9

Hi Nithya,

.required label:after {

  content:" *";

  color: red;

}

 

Add required as class name to your text boxes.

 

Hope this helps!

answered
1

Hi Nithya,


Once you called the class in respective field, clear the browser cache and check.

 

I hope it helps.
 
  

answered