Hi Aderson,
Thankyou for your reply. I've created an editor.css as the video suggests and that seems to work just fine.
But, I've found it's very difficult to create multi-level bullet pointed structures without resorting to the html tab.
Let's say I start with:
<ul>
<li>Test 1</li>
<li>Test 2</li>
<li>Test 3</li>
</ul>
Then I use the richtext editor to indent the 2nd bullet (say), what I get is as follows:
<ul>
<li>Test 1</li>
<ul>
<li>Test 2</li>
</ul>
<li>Test 3</li>
</ul>
This is obviously incorrect, the 2nd bullet should be inside the 1st bullet like this:
<ul>
<li>Test 1
<ul>
<li>Test 2</li>
</ul>
</li>
<li>Test 3</li>
</ul>
Is it possible to create nested bullet points with the richtext editor?
Steve