Here's my code:
<ul>
<li><a href="depres1.htm">Che cos'è e chi ne può soffrire</a></li>
<li><a href="depres2.htm">Fattori che possono portare alla epressione</a></li>
<ul>
<li><a href="#Primo">Una mancanza di rapporti edificanti</a></li>
<li><a href="#Secondo">Una mancanza di autostima</a></li>
<li><a href="#Terzo">Una mancanza nel confrontarci con il nostro
passato</a></li>
</ul>
<li><span class="enfasi">PROSSIMAMENTE</span>: Possiamo uscire dalla
fossa!</li>
<li><span class="enfasi">PROSSIMAMENTE</span>: Come tornare alla Luce?</li>
</ul>
Is there some other way to make a 2nd level bulleted list if this will not
work?
Thanks!
Notice that the nested list is inside a list element:
<ul> <!-- open list -->
<li>some stuff
<ul> <!-- start nested list -->
<li>nested element</li>
</ul> <!-- close nested list -->
</li> <!-- close original list element -->
</ul> <!-- close list -->
--
Ron Symonds
Microsoft MVP (Expression Web)
http://www.rxs-enterprises.org/fp
Reply only to group - emails will be deleted unread.
"Michael" <Mic...@discussions.microsoft.com> wrote in message
news:331CEF2F-F55E-4C70...@microsoft.com...
Enter your lists items, including the ones you want nested, and generate a
one-level list. [This is easily done by typing them in and hitting return
after each line, which creates paragraphs, then selecting all those
paragraphs and using the style dropdown menu to select Unordered List.]
Next, select the rows you want nested and click the "Increase indent
position" formatting button to move them over to the right. EW automatically
assumes you mean to nest those items under the previous one, and creates the
nested list with correct syntax.
> Is there some other way to make a 2nd level bulleted list if this will
> not work?
It should work fine once you completely encapsulate the second list in
the first:
<ul>
<li><a href="depres1.htm">Che cos'è e chi ne può soffrire</a></li>
<li><a href="depres2.htm">Fattori che possono portare alla epressione
</a>
<ul>
<li><a href="#Primo">Una mancanza di rapporti edificanti</a></li>
<li><a href="#Secondo">Una mancanza di autostima</a></li>
<li><a href="#Terzo">Una mancanza nel confrontarci con il nostro
passato</a></li>
</ul>
</li>
<li><span class="enfasi">PROSSIMAMENTE</span>: Possiamo uscire dalla
fossa!</li>
<li><span class="enfasi">PROSSIMAMENTE</span>: Come tornare alla Luce?
</li>
</ul>
Peace and Grace,
--
Gregory A. Beamer (MVP)
Twitter: @gbworld
Blog: http://gregorybeamer.spaces.live.com
*******************************************
| Think outside the box! |
*******************************************