Me again :( I'm sorry to bother you once more but as obvious I do have a question.
Is it possible to stop the indent of comments after a certain amount for Expressive?
I found this for
Flexible Squares but it doesn't seem to work for me. It works until I add #4 to my theme layer and then I always get errors. Since I have clue what compiling errors
(
Read more... )
Comments 8
Reply
Reply
what should i do please tell me?
waiting for reply
---------
stive
---------
Fort Lauderdale Real Estate--Fort Lauderdale Real Estate
Reply
Reply
Copy the EntryPage::print_comment(Comment e) function from the Expressive source layer into your theme layer.
Find this line in that function:
var string indent = ($e.depth - 1) * 25 + "px";and replace it with this:
var int depthmax = 4;
var string indent = ($e.depth < $depthmax) ? ($e.depth - 1) * 25 + "px;" : ($depthmax - 1) * 25 + "px;";Change the highlighted 4 to whatever number you want to be the maximum depth. Let me know if you have any problems.
Reply
Reply
Leave a comment