Indented Bullets

  • Thread starter Thread starter Victor
  • Start date Start date
V

Victor

I'm using FrontPage XP. How can I easily set up a bullet list that has indented bullets,
and how can I set the bullet type?

For example,

o First Item
o Second Item
- indented 2nd level item - how do I do this?
- indented 2nd level again - and how do I set the bullet type?
o third item

Thanks,

Vic
 
Click the indent icon on the toolbar. Format, Bullets to change the style
of the bullets
 
That changes the style of all bullets. It doesn't create an indented bullet list as I
had described.

o First Item
o Second Item
- indented 2nd level item - how do I do this?
- indented 2nd level again - and how do I set the bullet type?
o third item

Vic
 
I think you misunderstood. Did you click the indent icon on the toolbar?
Click it a few times to get the indent you want (like you have in your
example). If you don't like the style of the bullet then change it with
Format, Bullets and Numbering.
 
You can do it at the code level, like so

<body>
<ul type="disc">
<li>List item one
<li>List item two

<ul type="circle">
<li>List item one
<li>List item two

</ul>
</ul>
</body>
 
Back
Top