Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.
Avada › Forums › Community Forum › remove “underline dotted” under required symbol on a form
Hello,
I have a form with required fields and the css adds some underline dots under the star.
When I inspect that, I found this :
abbr[title] {
text-decoration: underline dotted;
But I don’t know where can I remove this.
One example here : https://www.mana-energies.fr/demande-de-devis/
Thank you for you help.
Camille
I’ve found the solution myself.
Add the following code in Custom CSS
.fusion-form-element-required {
text-decoration: none;
}