input table values to be italic

  • clairemannes
    Asked on February 18, 2021 at 5:26 AM

    I'm working now on a new form. And here I would like to put only some words from a basic element "long Text" in italic.

    I also would like to know if it is possible to make a reference to indicate the source.

  • Richie JotForm Support
    Replied on February 18, 2021 at 5:35 AM

    May we know if you're referring to the form https://www.jotform.com/form/210482018858054

    To clarify, do you want your input to the long text field to be italic or only selected words to be italic?

    1613644294 602e420631929 1 Screenshot 10

    If all inputs in the italic, you can use this custom css

    .form-textarea .custom-hint-group{

     font-style: italic;

    }

    Let us know how it goes.

  • clairemannes
    Replied on February 18, 2021 at 5:51 AM

    Hi,

    i only want selected words to be italic.

    Here the Link to my Form.

    https://eu.jotform.com/build/210482018858054

    I want to adapt it like this and to those questions

    18: Welche Ausbildung hat Ihr Personal, das im Bereich Mediation oder Service pédagogique tätig ist, im Vorfeld absolviert?

    25: Wie planen Sie die vom Ministerium gewünschte zusätzliche „Professionalisierung des Personals" umzusetzen, so wie es im Rapport d’activité du ministère de la Culture, 2019, Kapitel: VIII,17 festgehalten wurde?

    Thank you!

  • Richie JotForm Support
    Replied on February 18, 2021 at 7:34 AM

    I have created a work around for your requirement, we would have to use custom CSS and cut your question into two parts.

    For question 18:

    The first part would be set the question text to only "- Welche Ausbildung (en) hat das Personal Ihrer Einrichtung, das im Bereich".

    1613651258 602e5d3a2f1e9 1 Screenshot 10

    We would have then use custom CSS to add the italic part and the last part of the question.

     #label_20:after{

     content:" Mediation oder Service pédagogique ";

     font-style: italic;

     }

     #label_20:before{

     content:"tätig ist, im Vorfeld absolviert?";

     position: absolute;

    margin-top: 20px;

    margin-left: 290px;

     }

    For question 25:

    Your question text should be only " - Wie planen Sie die vom Ministerium gewünschte zusätzliche „Professionalisierung des Personals" umzusetzen, so wie es im "

    You can then add this custom CSS:

      #label_27:after{

      content:"Rapport d’activité du ministère de la Culture,";

     font-style: italic;

     }


    #label_27:before{

     content:"2019, S.130, Kapitel: VIII,17 festgehalten wurde?";

    position: absolute;

    margin-top: 37px;

    margin-left: 60px;

     }

    Sample form:

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