Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

List symbol colour

0 views
Skip to first unread message

me

unread,
Nov 16, 2004, 2:17:14 AM11/16/04
to
Hi Group,

any ideas how I can change the color of the symbols of a list (circle,
square...)

Thanks for any hints

Urs Bögli

mscir

unread,
Nov 16, 2004, 5:57:41 AM11/16/04
to

If you can't find a better way, here's a workaround, use a div or a span
to format the li text color separately from the li color:

http://www.tek-tips.com/viewthread.cfm?qid=940977&page=5

<style type="text/css">
ul { color: red; }
.li { color: blue; }
</style>

<ul>
<li><span class="li">List Item One</span></li>
<li><span class="li">List Item Two</span></li>
<li><span class="li">List Item Three</span></li>
<li><span class="li">List Item Four</span></li>
</ul>

Mike

me

unread,
Nov 16, 2004, 7:47:40 AM11/16/04
to
Thanks,

this solution is nit as easy as I thought, but it works well!

mscir schrieb:

0 new messages