You can control the appearance of ordered and unordered lists in one declaration with the list-style property
list-style: value value;
Values:
Or you can control them individually
You can use an image for the bullet of unordered lists with the list-style property
list-style-image: url(path_to_image.gif, jpg or png);
If you use an image, it is a good idea to declare the list-style-type also in case the user has images turned off.
You can control the position of ordered and unordered lists with the list-style-position property
list-style-position: value;
Values
You can control the type of bullet ordered and unordered lists use with the list-style-type property
list-style-type: value;
Values
Easy to understand and practical books to help you become a professional
CSS Related Book: HTML Utopia (more info)
Web Design Related Book: Web Survey 2006/2007 Single User License (more info)
Website Related Book: Simply JavaScript (more info)
Previous Chapter: Chapter 13 - CSS Borders
Next Chapter: Chapter 15 - Width and Height