How do I change the default margin/indentation between a bullet a.

G

Geoff F.

Within a collapsible bullet list I would like to reduce the space used by
margins and indentation. Ideally, I would like to define the position of the
bullet and/or start of text.
 
D

David Berry

You can use CSS to do this. For example:

<ul style="margin-left: 15">
<li></li>
</ul>
 
Top