Archived topic
Removing the vertical bar ( | ) from comment meta data.
3 replies · Started by Jay on July 29, 2018
Viewing posts 1–4 of 4
I want to remove all of the comment meta data but still keep the "reply" link. In another thread, I found this:
.comment-meta .entry-meta a time {
display: none;
}
That works perfectly except for one thing... there's still a vertical spacing bar before the word Reply. So it looks: |Reply
How do I get rid of that bar?
Hi Jay,
would either require some PHP to re-output the links or you could try this hack:
.comment-metadata {
font-size: 0;
}
.comment-reply-link, .comment-edit-link {
font-size: 16px;
}
.comment-edit-link {
margin-right: 0.5em;
}
Awesome, thanks!
glad to help
This archived topic is closed to new replies.