Graphical bullets: self made

<head>
...
...
<!-- *** general styles first *** -->

<style type="text/css"> /* *** or link to external stylesheet with the styles below in it: *** */

.container {
	width: 500px; 
	margin: 0;
	padding: 10px;      /* *** setting the bullet-img horizontally *** */
	background: #F8FCC2;
	color: #000000;
	border: 1px dashed blue;
}

.container li {
	list-style: none;
	background: url(images/catbullet.gif) no-repeat 0 .3em; 
	margin: 10px 0;     /* *** vertical margin between the list items *** */
	padding-left: 20px; /* *** distance text of the list item to the margin / bullet-img *** */
}

</style>

<!-- *** the next Conditional Comment for IE has to follow the lines of the normal styles
         (if before the normal styles, 
          then the normal styles should overrule the special IE-only styles > no effect in IE) *** -->

<!--[if lte IE 6]>
	<style type="text/css">
	.container li { background-position: 0 .5em; } /* *** IE correction *** */
	</style>
<![endif]-->

</head>

<body>
...


somewhere 2006,
francky


updated: 09 Mar. 2007 (added where to put the CC)