I have an ordered list, but I want to number is manually in a separate span tag than use the default list-style: decimal;
span
list-style: decimal;
$(function() { $("ol > li").each(function(i, n) { $(this).prepend("" + (i+1) + " "); }); });
You'll need to disable the standard markers too:
ol { list-style-type: none; }
Adjust as required.