AI OnAI Off
Hi Marcus, It sounds like you are trying to accomplish a space between two other paragraphs. Why not add some CSS to adjust the padding below the first paragraph instead? E.g. like this:
<style>
p.padding {padding-bottom:20px;}
</style>
Or even better, you can add this to the Editor.css file to get a selection in the Styles Dropdown in the TinyMCE editor by adding:
.padding
{
padding-bottom:20px;
EditMenuName: Padding;
}
Hope this helps!
/Leif
Thank you for the answer, Leif!
However, I'm not trying to alter the design.
I want to be able to write the following in the Tiny MCE Editor:
<p></p> or <p> </p>
Hi!
If I enter an empty p-tag in the Tiny MCE editor, it gets removed. If I enter a p-tag containing a single non-breaking space entity, it gets removed as well. However, if I enter a p-tag with two non-breaking space entities, it won't get removed.
Is it possible to configure Tiny MCE so that it will accept at least p-tags with a single non-breaking space inside?
//Marcus