Is there an option for me to number the comments in my posts? I have the StationPro theme and am liking it very much. I just don't seem to have enough php/css/html knowledge to do some of the tweaking I had hoped to do and I haven't noticed this as an option in the dashboard. I appreciate any help you can offer in regard to numbering comments.
I am using Wordpress 2.8 and my web address is www.busy-at-home.com
Station Pro: numbering comments
Started by
glendaembree
, Nov 06 2009 10:40 PM
2 replies to this topic
#1
Posted 06 November 2009 - 10:40 PM
#2
Posted 07 November 2009 - 03:00 PM
yes, you can add numbers but you'll need some CSS knowledge.
the comments are an ordered list (ol) element... so you'll need to edit or override the rules for '.commentlist' which are currently set up as follows:
Changing the list style type to 'decimal' might solve your problem
the comments are an ordered list (ol) element... so you'll need to edit or override the rules for '.commentlist' which are currently set up as follows:
.commentlist {
list-style-type:none;
margin: 10px 0px;
line-height: 130%;
padding-left:45px;
font-family: helvetica, arial, sans-serif;
}
Changing the list style type to 'decimal' might solve your problem
#3
Posted 08 November 2009 - 09:17 PM
Thank you so much! I appreciate your post and I will give that a try.









