> Hi Bob,
>
> Thanks for this.
>
> It appears that this command applies to the whole web page,
Huh?
> how can I
> apply
[quoted text clipped - 8 lines]
> TIA
> Dwight
Several options:
1. Define a class:
<style>
.coloredgif { list-style-image:url(dot.gif) }
</style>
<li type="square">Apples</li> <-- Default square
<li class-"coloredgif">Pears</li> <-- Show the colored gif
<li type="square">Peach</li> <-- Default square
2. Use inline style
<li type="square">Apples</li> <-- Default square
<li style="list-style-image:url(dot.gif)">Pears</li> <-- Show the
colored gif
<li type="square">Peach</li> <-- Default square

Signature
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"
Dwight - 30 Jan 2006 17:00 GMT
Thanks you're a star, that worked a treat.
> > Hi Bob,
> >
[quoted text clipped - 33 lines]
> colored gif
> <li type="square">Peach</li> <-- Default square