Daz
It can definitely done through CSS. I am not sure exactly what you want (I see no bullets in your description, if you provide some more info maybe we can help).
You can use
ul
{
list-style-type: circle;
text-align:center;
}
You can use quite a few other choices other than circle anything from roman, greek numerals to hebrew and cjk-ideographic! Bad browser support is limited, however on some of these values but they default gracefully!
You can use the "first-line" or "first-letter" pseudo-element to add special styles to the first line of the text in a selector:
li {font-size: 12pt}
li:first-line {color: #0000FF; font-variant: small-caps}
<li>Some text that ends up on two or more lines</li>
li {font-size: 12pt}
li:first-line {color: #0000FF; font-variant: small-caps}
<li Some text that ends up on two or more lines</li>Yannis
Edited by yannis, 14 September 2006 - 03:24 AM.