Page 1 of 1

Line spacing with List Item in Card?

Posted: Thu Nov 13, 2025 10:08 pm
by Beth
Is there a way to specify line spacing with a List Item in a Card? So if I have an 8 or 12 word sentence, it is quite compacted and I'd like to space the lines farther, as you bad do with plain text, ie 1.4 or 2.0, etc.
Thank you.

Re: Line spacing with List Item in Card?

Posted: Fri Nov 14, 2025 12:52 am
by crispy68
I don't believe so within WB. You could add some CSS between the head tags:

Code: Select all

<style>
#Card1-card-item5{line-height:2.0;}
</style>
You will change "Card1" to match the ID of your card and change 'item5' to match the position of where your list item is (ex: if it's in the 3rd position then it would be 'item3')

Re: Line spacing with List Item in Card?

Posted: Fri Nov 14, 2025 7:24 pm
by Beth
Thank you so much. That did the trick!