Sorry for the delay ... I have been very busy of late and I have been meaning to post more tips 
CSS coding lets you control the images you use for lists instead of the standard boring bullets and it is very easy. Let me show you how.
Lets make a list first
To change bullets for all list items
To change bullets for all unordered list items
To change bullets for all Sub List items in unordered list

CSS coding lets you control the images you use for lists instead of the standard boring bullets and it is very easy. Let me show you how.

Code:
<ul>
[*] List item one
[*] List item two
<ul>
[*]Sub List item one
[*]Sub List item two
[/list]
[*]List item three
[/list]
To change bullets for all list items
Code:
li {list-style-image:url(../yourimage.jpg)}
To change bullets for all unordered list items
Code:
ul li {list-style-image:url(../yourimage.jpg)}
To change bullets for all Sub List items in unordered list
Code:
ul ul li {list-style-image:url(../yourimage.jpg)}