Home Page -> CSS Tips -> Graphic List Bullets

CSS: Graphic List Bullets

In short, you want a list just like the one above. Without CSS, you had to build a table. Now it's so easy you'll laugh. Just put this in your stylesheet:

ul { list-style-image: url("redarrow.gif"); }

And replace redarrow.gif with the pathname to the image that you want to use.