Jump to content
Sign in to follow this  
glendaembree

Station Pro: numbering comments

Recommended Posts

glendaembree

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

Share this post


Link to post
Share on other sites
Andrew

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:

.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

Share this post


Link to post
Share on other sites
glendaembree

Thank you so much! I appreciate your post and I will give that a try.

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

Sign in to follow this  

×