Multi-level indent CSS for bullet
Does someone know the css to stop the level 2 of a multi-level list from indenting so far? Example:
1. 12345Level One
I want the bullet to be under 1 but it kicks it out further. I realise that this is a personal choice but I can't believe that I can't get it to work by editing the css code.
I have experimented with the css for a multi-level list using Notepad for a while now and I have found that what I see in RH is not what I get in the compiled help. I found this to be true in all versions of RH. I do not want to create a custom RH list style. I would think that I should be able to do it with standard css.
My code is clean and currently I don't have any CSS defined for LI, OL, or UL.
<ol>
<li>Level 1</li>
<ul>
<li>Level 2</li>
</ul>
</ol>
Changing the left margin for LI moves the whole list left, but it doesn't fix the level 2 indent.
