Multiple Paragraphs In One Element

I am using this for my basic body content:

{% if sub_heading %}
<h3 class="font-weight-bold text-4 mb-2">{{sub_heading}}</h3>
{% endif %}
<p data-fred-name="rte-content" data-fred-rte="true" data-fred-rte-config="text-content">Lorem ipsum</p>

However, when I go to add content, I am only allowed to input one line of text. I am unable to add additional paragraphs. How do I allow for multiple paragraphs within one element?

Try using a <div> as a wrapper instead:

<div data-fred-name="rte-content" data-fred-rte="true" data-fred-rte-config="text-content">
	<p>Lorem ipsum</p>
</div>

I get the same result. Only able to add one line.

** UPDATE: Yes, that worked! It helps when you spell div correctly!

Thank you for your help. Greatly appreciated.

This topic was automatically closed 2 days after discussion ended and a solution was marked. New replies are no longer allowed. You can open a new topic by clicking the link icon below the original post or solution and selecting “+ New Topic”.