I occasionally see people on lists and forums asking how they can customize bulleted lists. This is about all you need to know:
.disc {list-style:disc}
- this is
- a disc
.square{list-style:square}
- this is
- a square
.circle {list-style:circle}
- this is
- a circle
.image {list-style-image:url(http://www.markme.com/cantrell/images/mm_bullet.gif)}
- these are
- custom bullets

list-style-image places the image differently on different browsers. It’s better to use non-repeating background image:li {list-style: none;background: url(img.gif) no-repeat left center;}
Check out “Taming Lists” on ALA:http://www.alistapart.com/articles/taminglists/
And don’t forget the type attribute of the tag itself.Disco Duck
You can go a few steps further:http://css.maxdesign.com.au/listutorial/http://css.maxdesign.com.au/listamatic/index.htmhttp://css.maxdesign.com.au/listamatic2/index.htm
Where are my posters?-Greg