Viewing Paragraph spacing in Flex Box Widget

Paragraph spacing in Flex Box Widget



User: Kathy J. 6 months ago
Is there a way to adjust the paragraph spacing in the Flex Box Widget? I need it singlespaced.
User: EverWeb Support 6 months ago
Hi Kathy,

Thanks for reaching out. Unfortunately, it is not possible to adjust the paragraph spacing in FlexBox widget.

However, please submit a support ticket and send us the project file. We may be able to find a workaround.

-------------------------------
EverWeb Customer Support
Submit Tickets or Learn More
User: wellnl 6 months ago
Hi Kathy

There's not really any great way to adjust paragraph spacing in the styled text editor in the flex box widget. Usually I just type a sentence then press enter and start typing the next sentence. That usually gives enough spacing between paragraphs. If I type a sentence press return twice and then start typing the gap is too big.
I tried also with different font sizes on 'blank' lines between paragraphs but that doesn't really help The best thing I found was to just type, press enter, then start typing again for the next paragraph.

Hope that helps

Simon
User: Rosy D. 5 months ago
Here's an example of how you can set single spacing for paragraphs within a Flex Box Widget using CSS:

css
/* Assuming your Flex Box Widget has a class or ID, replace ".flex-box" with your actual class or ID */
.flex-box p {
margin-bottom: 1em; /* You can adjust the value as needed for your design */
line-height: 1; /* This sets single spacing */
}
In this example, .flex-box is a placeholder for the actual class or ID of your Flex Box Widget. The margin-bottom property controls the space after each paragraph, and line-height: 1 ensures single spacing.

Last edit 4 months ago


Post Reply
You must login or signup to post.