[wp-trac] [WordPress Trac] #40016: Twenty Seventeen: Nested comment replies don't indent properly
WordPress Trac
noreply at wordpress.org
Tue Apr 11 10:59:36 UTC 2017
#40016: Twenty Seventeen: Nested comment replies don't indent properly
---------------------------+------------------------------
Reporter: DougJoseph | Owner:
Type: defect (bug) | Status: new
Priority: normal | Milestone: Awaiting Review
Component: Bundled Theme | Version: 4.7.2
Severity: normal | Resolution:
Keywords: | Focuses:
---------------------------+------------------------------
Comment (by Dehumanizer):
I also noticed this (on WP 4.7.3, just installed, no plugins except
Jetpack (and temporarily disabling it didn't fix the problem). A reply to
a reply is indented, but not the first reply to a top-level comment.
There may be better ways to do this, but I was able to fix it on my blog
by changing this on style.css:
{{{
.comment-list,
.comment-list .children {
list-style: none;
margin: 0;
padding: 0;
}
}}}
to:
{{{
.comment-list {
list-style: none;
margin: 0;
padding: 0;
}
.comment-list .children {
list-style: none;
margin: 0;
padding: 0;
padding-left: 2em;
}
}}}
--
Ticket URL: <https://core.trac.wordpress.org/ticket/40016#comment:3>
WordPress Trac <https://core.trac.wordpress.org/>
WordPress publishing platform
More information about the wp-trac
mailing list