Hide date, comments, and bullets in blog author bar

By Bill Sholar and Kim Green of Short Story Marketing

Add these lines of CSS to your blog author line to hide various details of the author blog line as needed, or to remove the trailing dot.


.authorBar span:nth-child(2) {
  display:none;
}
.authorBar span:nth-child(3) {
  display:none;
}
.authorBar span:nth-child(4) {
  display:none;
}
.blog-post-comments-count {
  display:none;
}