How can i change the spacing between lines when adding text?

  • ForPaw
    Asked on April 22, 2018 at 2:27 PM

    I am creating a block of copy that i need to close up some of the line spacing between sentences. Is there a way to do this?

    Jotform Thread 1452257 Screenshot
  • Adrian
    Replied on April 22, 2018 at 3:01 PM

    You can change the spacing by injecting this custom CSS into your form.

    #text_30 p {
      margin-top: 5px;
      margin-bottom: 5px;
    }

    Help Article: How-to-Inject-Custom-CSS-Codes

    Feel free to adjust the margin values (5px) as per your liking.