hover text description is not showing in mobile view

  • bubbabarlow
    Asked on December 15, 2020 at 1:45 AM

    when in the builder all of my pictures have pop up titles. But when viewed on my phone they do not. In the builder the names pop up to the right of the picture, which is fine on my widescreen monitor. but on my phone your app isnt smart enough to know that there is no room. It should be placed on top of the picture in this case.

  • Richie JotForm Support
    Replied on December 15, 2020 at 3:30 AM

    You can add this custom CSS in your form

     @media screen and (max-width: 480px){

     .form-line .form-description {

       visibility: visible !important;

       overflow-x: clip !important;

    }

     }  


    Guide:https://www.jotform.com/help/117-how-to-inject-custom-css-codes

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

  • bubbabarlow
    Replied on December 17, 2020 at 1:29 PM

    That worked. thanks. I supposed that if I knew more about how to code your forms I could place each description where I wanted it. But this will suffice.