How to make a bigger paragraph?

Post Reply
User avatar
stani
Master Bludit
Posts: 79
Joined: Wed Oct 14, 2020 1:34 pm
Has thanked: 1 time

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) ...
User avatar
Edi
Site Admin
Posts: 3121
Joined: Sun Aug 09, 2015 5:01 pm
Location: Zurich
Has thanked: 54 times
Been thanked: 77 times
Contact:

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?
Clickwork - Websites mit Bludit | Planet Bludit - Tipps und Snippets
User avatar
stani
Master Bludit
Posts: 79
Joined: Wed Oct 14, 2020 1:34 pm
Has thanked: 1 time

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.
User avatar
Edi
Site Admin
Posts: 3121
Joined: Sun Aug 09, 2015 5:01 pm
Location: Zurich
Has thanked: 54 times
Been thanked: 77 times
Contact:

What do you use for it? Which button or option?
Clickwork - Websites mit Bludit | Planet Bludit - Tipps und Snippets
User avatar
stani
Master Bludit
Posts: 79
Joined: Wed Oct 14, 2020 1:34 pm
Has thanked: 1 time

Normally, with Enter.
lightmat
Sr. Bludit
Posts: 46
Joined: Fri Feb 21, 2020 10:53 pm

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>
Post Reply