Adding text directly under a question title

  • pivotalpm
    Asked on February 27, 2018 at 6:43 PM

    Hi,

    I was wondering if there is any way I am able to have smaller subtext under the question? For example, I would like to have "Specify the materials to be used....." directly under the "Materials to be Used in Project". I tried placing it in the question area, unbolding it and spacing it to the next line but it seems to revert back once the form saves.

    Thanks and I appreciate the help. 


    1519774692screenshot www Screenshot 10

    Jotform Thread 1399320 Screenshot
  • Jan
    Replied on February 27, 2018 at 9:02 PM

    We do not have a built-in tool where you can position the sub-label below the main label. If you want, you can use the custom CSS code below as a workaround:

    #id_41 .form-sub-label {
    position: absolute;
    top: 30px;
    }

    #label_41 {
    margin-bottom: 45px;
    }

    Here's a guide on How-to-Inject-Custom-CSS-Codes. The CSS code I provided will move the sub-label up and move the form field down. Here's the result:

    151978325102 28 8gwtv Screenshot 10

    Hope that helps. Let us know if you have any questions. Thank you.