Answer

-1
Answer
Not a bug

Hello David,

Thanks for the question, I'm sorry to hear about the frustrating experience adding spaces below text.


Since WordPress content is built in HTML, extra whitespace (like space and newline characters) is ignored unless you take some steps to ensure that it is rendered. In general, adding spaces with text isn't the recommended way to accomplish what you're looking for. Here are two ways you can add space below content using the Post and Page Builder.

You can add space in between different rows:

Image 1120

Or, you can add padding to the bottom of a block with the Advanced Control menu:

Image 1121

If you would rather use text to add spaces, you should switch over to the Text Editor and add code similar to the following:

<br /> 
<br /> 

These two bits of code, the HTML "Break" element and a Non-breaking space will allow you to add one newline per pair. The above code would look like two newlines.

I hope this helps!

-1
Answer
Not a bug

Hello David,

Thanks for the question, I'm sorry to hear about the frustrating experience adding spaces below text.


Since WordPress content is built in HTML, extra whitespace (like space and newline characters) is ignored unless you take some steps to ensure that it is rendered. In general, adding spaces with text isn't the recommended way to accomplish what you're looking for. Here are two ways you can add space below content using the Post and Page Builder.

You can add space in between different rows:

Image 1120

Or, you can add padding to the bottom of a block with the Advanced Control menu:

Image 1121

If you would rather use text to add spaces, you should switch over to the Text Editor and add code similar to the following:

<br /> 
<br /> 

These two bits of code, the HTML "Break" element and a Non-breaking space will allow you to add one newline per pair. The above code would look like two newlines.

I hope this helps!