2
in your css file you can give list items properties.
Quote:
li
{
list-style-image: url(image.gif);
}
just put the image in your theme folder.
if you want to change the square to a circle
or disc:
Quote:
li
{
list-style-type: disc;
list-style-type: circle;
list-style-type: square;
}
i'm not sure of an easy way of changing the color of the item without changing the rest of the text in the list,
but maybe somebody else knows.
but you can change the color of everything in the list:
Quote:
hope that helps