Edit: skip to the next post - I think I have a solution...
It's certainly a steep learning curve! :-)
I have a partial, and probably inelegant, solution:
.commentlist .children li.comment.depth-3 {
margin-left: -1.625em;
}
.commentlist .children li.comment.depth-4 {
margin-left: -1.625em;
}
.commentlist .children li.comment.depth-5 {
margin-left: -1.625em;
}
If you check the page, you'll see what I was trying to do.
All the threaded comments are now left-aligned under one another, which is good. The problem now is that each threaded comment, after the first one, gets progressively less wide.
So the question now is: how do I make all the threaded comments have the same content width as the first one?
(Or maybe the question should be: am I completely barking up the wrong tree with my solution?)
Edit: p.s
just checking - is that what you mean:
main comment (bright grey)
-first indented reply (darker grey)
--second reply, indented
--third reply, not further indented?
--fourth reply
I'm trying to get:
main comment (bright grey)
-first indented reply (darker grey)
-second reply, layout as first
-third reply, layout as first
-fourth reply, layout as first