Entry
How Do I Change The Bullet Style Of My List ?
Apr 3rd, 2001 07:29
Ben Gordon,
CSS offers several options for changing the style of a list you can use
the "list-style-type:" property with any of the following values
disc | circle | square
decimal
lower-roman | upper-roman
lower-alpha | upper-alpha and they should work in IE/NS/ Opera
additionally IE offers the use of the "list-style-image" which allows
the use of custom bullets, syntax should be
style="list-style-image: url(http://www.your.com/bullet.gif)" or in a
style sheet as
ul { list-style-image: url(http://www.your.com/bullet.gif) }