We run an on-line news site where people can post the news and reply to the news and the replies. What we want is for the replies to display in a threaded fashion. That is like:
Sorry. The Sitepoint post removed all the spaces from behind the sample threaded discussion that I posted to my message. So please imagine the fake sample threads as moving forward as per the numbers on each thread.
the way your page is coded each nested reply is 90% the width of its parent and in the normal flow. so the indent would naturally happen as seen ( the remaining 10% would be on the right)
what you might want to do is remove (not change… REMOVE) the width declaration on .reply_text and add padding-left:10%
As per your suggestion with some changes the threading indentation is better now.
However there is a new problem I dont seem to be able to get rid off!
That is as you can see from looking at the comment area is not liging up with the Text box area and the rest of the page items above it!
And I tried all sort of <center> but nothing, it remains out of wack!
Actually, I thought this might happen. Since you only want the CHILDREN of the main comments to be indented ( the first comments should line up with the comment and text area) you could do something like :
.reply_text .reply_text {padding-left:10%}
that way ONLY replies within replies will have indents.