Quote:
Originally Posted by gigapackiii
Hi,
I have a text book with a lot indents consisting of numbers of bullets. So my left margin get pretty big. I want to align all the text to the left side, but I do not want to loose the bullets or the numbering.
Attachment 65556
If I choose decrease indent from the toolbar it removes the bullets or numbering.
Attachment 65557
Is there any way to align bullets and numbering to the left side?
|
Your first look like it was a Nested Bullet lists, Not done with Margins
If this is tru, Each lower item should start with a tag <li>
A new "list" is started wit <UL, or OL>
For: <UL type= "disc or circle or square">
For: <OL type=1 or a or A ori or I>
<ul type="disc">
<li>first level un-ordered</li>
<ol type="A">
<li second level Uppercase lettered </li>
<ul type="square">
<li>Third level with disc</li>
</ul>
<li> another second level</li>
</ol>
<li>another first level</li>
</ul> /* done */