Page 1 of 1

How to make a bigger paragraph?

Posted: Tue Mar 16, 2021 1:57 pm
by stani
How to make a bigger paragraph, please? By that I mean a larger line space between the text.

In TinyMCE I can make a paragraph as big as I want, but in reality it is still the same (so small for me) ...

Re: How to make a bigger paragraph?

Posted: Tue Mar 16, 2021 6:28 pm
by Edi
stani wrote: Tue Mar 16, 2021 1:57 pm How to make a bigger paragraph, please? By that I mean a larger line space between the text.
1) Inspect the definition for the tag <p> (paragraph) with the developers tool of your browser.
2) Modify the value of margin-bottom.

For example if the the CSS is

Code: Select all

p {
   text-align: justify;
   margin: 0 0 2rem 0;
}
enter in the field "Head" of the plugin HTML Code

Code: Select all

p {
   text-align: justify;
   margin: 0 0 4rem 0;
}
In TinyMCE I can make a paragraph as big as I want, but in reality it is still the same (so small for me) ...
What have you used?

Re: How to make a bigger paragraph?

Posted: Tue Mar 16, 2021 7:08 pm
by stani
Sorry for mistake. I soon found out. TinyMCE is OK - when creating a new clean page.
Here, when I make the paragraph in TinyMCE I want, then on the final page it is exactly that.

But the problem occurs with imported pages - either with WordPress Importer or copied content to the source code. I can do whatever paragraphs I want with TinyMCE, but nothing will change.

Re: How to make a bigger paragraph?

Posted: Tue Mar 16, 2021 7:11 pm
by Edi
What do you use for it? Which button or option?

Re: How to make a bigger paragraph?

Posted: Tue Mar 16, 2021 7:13 pm
by stani
Normally, with Enter.

Re: How to make a bigger paragraph?

Posted: Tue Mar 16, 2021 8:17 pm
by lightmat
It sounds like paragraphs are not being imported. You can see in the code editor if paragraph tags are included <p> ... </p>

Plain text, you must insert in Tiny's text editor, then it automatically adds paragraph tags, it does not do that when you insert plain text in the code editor.

In Tiny's text editor:
Paragraphs is inserted with "Return"
Single line breaks is inserted with "shift" + "Return"

In Tiny's code editor:
You must insert HTML tags like <p>...</p>, <br>