Hi Kevin, > Is there any way in CSS to make a list start with 0, computer style? There seems to be, but I don't know what the browser support is like: http://www.w3.org/TR/REC-CSS2/generate.html#counters You might be stuck with doing it in (deprecated) HTML: <ol start="0"> <li>zero</li> <li>one</li> <li>two</li> </ol> Cheers Jon