How to wrap text to the next line wrather than overwriting the same line

How to wrap text to the next line wrather than overwriting the same line

pmarks906dpmarks906d Posts: 61Questions: 18Answers: 0

I have placed a cloudtable onto a page of my squarespace website. In one multi-line text column I have placed some URLs. When the URLs wrap they don't go to the next line. Instead they overwrite the same line making them unable to be read. How do I get the URLs to go to the next line when they wrap? Note that in my cloudtable preview they go to the next line when they wrap. I am new to cloudtables. I have javascript working on my client side. But don't yet know how to add any sort of code on the server side.

This question has an accepted answers - jump to answer

Answers

  • allanallan Posts: 61,771Questions: 1Answers: 10,112 Site admin

    Hi,

    Are you able to give me a link to your SquareSpace page so I can take a look at the CSS on the page to see what is going wrong?

    Thanks,
    Allan

  • pmarks906dpmarks906d Posts: 61Questions: 18Answers: 0
  • allanallan Posts: 61,771Questions: 1Answers: 10,112 Site admin
    Answer ✓

    In site.css, there is a CSS rule for the body that has:

    line-height: 0;
    

    That is the issue. It should really be:

    line-height: 1.35em;
    

    or similar.

    Allan

  • pmarks906dpmarks906d Posts: 61Questions: 18Answers: 0

    That worked great thanks!

Sign In or Register to comment.