Disable Comment Indentation
-
AuthorPosts
-
Oops! I think this may not make sense. I don’t want the indentation of subsequent comments, or replies to comments, to increase each time so that it results in a single column. I hope this clarifies!
coreymckrill4ttf
MemberHi there!
It is possible to reduce the indentation of each level of comment reply. The default rule in Snap is configured to only apply to wide screens (comments on mobile screens don’t get any indentation already). So you could try a rule like this:
@media screen and (min-width: 900px) { #comments .children { padding-left: 18px; } }
Or you could set that to 0 if you don’t want any indentation at all. You can also limit the depth that threaded comments can be nested, or turn off threading altogether:
https://en.support.wordpress.com/settings/discussion-settings/#other-comment-settings
Thank you so much for your response! I had identified this css by using inspect element in Safari however I didn’t add the second } symbol that you have above and that seemed to make all the difference!
@media screen and (min-width: 900px) {
#comments .children {
padding-left: 18px;
}}
I have chosen a bit more of an intent – 25 px so it is more apparent. I am so grateful!
By the way, I am working on an iMac with a 27″ widescreen display that is connected to an Apple Thunderbolt 27″ widescreen display by it’s side, and this is the result I got with the default settings, unchanged, which prompted me to ask this question: https://nourishingourchildren.files.wordpress.com/2015/03/comments.png
These results were mirrored on my MacBook Pro.
coreymckrill4ttf
MemberThanks for the feedback! I can see how having several levels of nested comments can quickly become a problem with the current indentation rules.
Yes! A one column response is not a very viable way to read. I was fairly concerned about this issue. If there wasn’t a fix, I would have not felt comfortable keeping this theme, which I just purchased so, I am grateful we could change the parameters.
- The topic ‘Disable Comment Indentation’ is closed to new replies.