When i insert something like this:
<ul>
<ul>
<ul>
<li>- 1 </li>
<li>- 2 </li>
<li>- 3 </li>
<li>- 4 </li>
<li>- 5 </li>
</ul>
</ul>
</ul
it is changed to:
<div style="MARGIN-LEFT: 4em">
<ul>
<li>- 1 </li>
<li>- 2 </li>
<li>- 3 </li>
<li>- 4 </li>
<li>- 5 </li>
</ul>
</div>
Since i don't want inline styles in my source, is this a browser issue or is it done by FCKeditor?
Where can i change this behaviour?
<ul>
<ul>
<ul>
<li>- 1 </li>
<li>- 2 </li>
<li>- 3 </li>
<li>- 4 </li>
<li>- 5 </li>
</ul>
</ul>
</ul
it is changed to:
<div style="MARGIN-LEFT: 4em">
<ul>
<li>- 1 </li>
<li>- 2 </li>
<li>- 3 </li>
<li>- 4 </li>
<li>- 5 </li>
</ul>
</div>
Since i don't want inline styles in my source, is this a browser issue or is it done by FCKeditor?
Where can i change this behaviour?

RE: nested lists
RE: nested lists
What i'm tryiong to do is to style an unordered list with this:
ul {
list-style: none;
margin-left: 0;
padding-left: 0.6em;
text-indent: -0.6em;
}
Of course, i've put this little bit of css into fckstyles.xml.
RE: nested lists
ul tags can only contain li tags.
<ul>
<ul>
<ul>
<li>- 1 </li>
<li>- 2 </li>
<li>- 3 </li>
<li>- 4 </li>
<li>- 5 </li>
</ul>
</ul>
</ul>
Should be
<ul>
<li>
<ul>
<li>
<ul>
<li>- 1 </li>
<li>- 2 </li>
<li>- 3 </li>
<li>- 4 </li>
<li>- 5 </li>
</ul>
</li>
</ul>
</li>
</ul>