Input Table: Change the text in the field label

  • philippegay
    Demandé le 27 novembre 2023 à 14:09

    I would like to have that

    How to add slider option selection in the form Image 1 Screenshot 30 Screenshot 10 Screenshot 10

    but in the text (Vous donnez....) in field label.



    This should lool like:


    How to add slider option selection in the form Image 2 Screenshot 41 Screenshot 21 Screenshot 21

  • Neil Jotform Support
    Répondu le 27 novembre 2023 à 14:30

    Hi Philippe,

    Thanks for reaching out to Jotform Support. To be able to achieve that, we can hide the row (which is the Question1), and position the image you put on the Input Table. Here's what is going to look like:

    Input Table: Change the text in the field label  Image 1 Screenshot 30

    To hide the row and position the image, delete the CSS code currently in your form and paste this code instead:

    div#cid_15 th.form-matrix-th{
    background-size: contain;
    background-repeat: no-repeat; 
    background-image: url(http://www.hepl.ch/ressources-externes/jotform/jotform_pgy_receive.png);
    background-size: 116px;
    background-position-x: 40%;
    background-position-y: 40%;
    }

    th.form-matrix-headers.form-matrix-row-headers {
    visibility: hidden;
    }

    Let me show you how:

    1. In your Form Builder, click on the Form Designer.
    2. Then, go to the Styles tab.
    3. Scroll down to Inject Custom CSS and paste the code.

    Input Table: Change the text in the field label  Image 2 Screenshot 41

    That's it. Give it a try, and let us know if you need more help.

  • philippegay
    Répondu le 27 novembre 2023 à 14:56

    That is exactly the same result as I did. Instead, is it possible to have text and not an image ?


  • Joshua_T Jotform Support
    Répondu le 27 novembre 2023 à 20:12

    Hi Philippe,

    Thanks for getting back to us. I apologize for the confusion on what you are trying to achieve on your form. Can you share with us a video recording explaining the problem, pointing to the fields in question, and what you are trying to achieve on your form? You can use Loom as your screen recorder and paste the link here so we can watch it.

    Once we hear back from you, we can move forward with a solution.

  • philippegay
    Répondu le 15 janvier 2024 à 05:57

    Here's a video explaining my problem:



    and here's the link to the example: http://ryanomurphy.com/styled-2/downloads/files/random_slider2_french.pdf

    Thank you

  • philippegay
    Répondu le 15 janvier 2024 à 05:58


    here is the link again

  • philippegay
    Répondu le 22 janvier 2024 à 09:20

    Hello,

    I receive a notification indicating I have an anser but I don't see it.

    Can you read my video?

    Thank you

  • Waqas Jotform Support
    Répondu le 22 janvier 2024 à 11:42

    Hi Philippe,

    Thanks for getting back to us. My colleague has forwarded your concern to our technical team. That is why it is marked as answered. I also checked your form and screencast, and it appears that it is already configured in the way you prefer. Check out my screenshot below:

    Input Table: Change the text in the field label  Image 1 Screenshot 20

    If that is not what you are looking for, you will need to wait for a response from our technical team.

    Let us know if there's anything else we can help you with.

  • philippegay
    Répondu le 22 janvier 2024 à 12:07

    Thank you, but I'd like to avoid using an image so that it's cleaner (e.g. same font, aligned text...) and that's how it looks like now: https://eu.jotform.com/build/233172385142957...

    so I'm waiting for some suggestions from your technical support.

    Thank you

  • Christopher Jotform Support
    Répondu le 22 janvier 2024 à 12:36

    Hi Philippe,

    There is no option to add a text on the first column. If we use the CSS content, it is not possible to format the text as shown in the screenshot.

    Input Table: Change the text in the field label  Image 1 Screenshot 30

    I would suggest using the image and then use CSS codes to remove the background color and borders of the Input Table as shown in the screenshot.

    Input Table: Change the text in the field label  Image 2 Screenshot 41

    Please inject the provided CSS code.

    /*Remove Input Table background color and borders - 9481521*/
    .form-matrix-headers, 
    .form-matrix-column-headers, 
    .form-matrix-table,
    .form-matrix-values {
        background-color: #ffffff !important;
        border-color: #ffffff !important;
        border: 0 !important;
    }
    /*Code ends here*/

    Give it a try and let us know how it goes.