any ideas how I can change the color of the symbols of a list (circle,
square...)
Thanks for any hints
Urs Bögli
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
this solution is nit as easy as I thought, but it works well!
mscir schrieb: