I do not want a space before the settles line. I've tried removing the </p>
at the end of dust but the Wordpress editor keeps putting it back. I tried replacing it with
but the system changes it back to </p>
. How do I get rid of the extra line space? This is a stanza of poetry so the three lines need to be together. Here is the code:
<p style="text-indent: 25px;">Then the sun sinks, swallowed by the dark. In that dark
more dust, always more dust</p>
<p style="text-indent: 100px;">settles—sighs over everything.</p>
I do not want a space before the settles line. I've tried removing the </p>
at the end of dust but the Wordpress editor keeps putting it back. I tried replacing it with
but the system changes it back to </p>
. How do I get rid of the extra line space? This is a stanza of poetry so the three lines need to be together. Here is the code:
<p style="text-indent: 25px;">Then the sun sinks, swallowed by the dark. In that dark
more dust, always more dust</p>
<p style="text-indent: 100px;">settles—sighs over everything.</p>
Yes custom HTML block can be a solution but I am sure you also need the formating options in block editor.
Here is a simple solution, Just create a css class:
.redspace {
margin-bottom: 0; //what ever you like the space to be: 10px 5px...
}
Now apply this class to the p where you dont want the space. in your case:
<p style="text-indent: 25px;" class="redspace">Then the sun sinks, swallowed by the dark. In that dark
more dust, always more dust</p>
Thats it.
<br/>
, which doesn't generate the extra paragraph space. – fuxia ♦ Commented May 9 at 19:24