How do I remove hover text?

  • benbaldwin
    Asked on January 29, 2019 at 7:49 AM

    I have some hover text on a form that is annoying.

    How can I remove it altogether? 

    Jotform Thread 1715955 Screenshot
  • halil
    Replied on January 29, 2019 at 9:33 AM

    You can remove this hover by adding custom CSS code below:

    .form-description {

        display: none;

    }

    I cloned your form and replicated the issue. The hover text is removed by adding this CSS code. Here is the related screenshot:

    1548772191Screen Shot 2019 01 29 at 5 Screenshot 10

    Regards

  • benbaldwin
    Replied on January 29, 2019 at 9:40 AM

    This is awesome!

    Thank you.