How to delete hover text on a Configurable List question

  • RMWL
    Asked on September 5, 2019 at 6:06 PM

    How do I delete hover text on a Configurable List question? I don't see the "Hover text" option in the advanced tab like I do with other questions

  • AshtonP
    Replied on September 5, 2019 at 6:39 PM

    Can you confirm which form you have this issue with? Please provide us with the form URL so I can take a look?

  • RMWL
    Replied on September 5, 2019 at 9:05 PM

    https://hipaa.jotform.com/build/92465065346158#preview

    see the list of medications as an example

  • KrisLei Jotform Support
    Replied on September 5, 2019 at 10:16 PM

    Hi,

    Please inject these CSS codes on your form to disable the hover text message.

    .form-description-content {

    }

    #id_300 div.form-description-content {

        display : none;

    }

    For your reference: How to Inject Custom CSS codes

    I hope this helps, let us know if you need further assistance.

  • RMWL
    Replied on September 5, 2019 at 10:58 PM

    Okay. I tried that. Not the best solution. It only changes that one question, but I have a few hover texts I want to get rid of. Also, there is still this weird icon that comes up instead of the hover text now (see picture)

    If it helps, this form started out as a card form that I converted into a traditional form. What is showing up as the hover text was the description text in the card form

    1567738338Screen Shot 2019 09 05 at 10 Screenshot 10

    I guess I could recreate these questions but then it is going to mess up my report PDF document

  • jherwin
    Replied on September 6, 2019 at 2:43 AM

    Please replace the CSS code my colleague gave you with this:

    .form-description-content {
        display: none!important;
    }
    .form-description{
        display: none!important;
    }

    Guide: How-to-Inject-Custom-CSS-Codes

    Please give it a try and let us know how it goes.