Delete Author name at the bottom of post for WordPress

How do I delete the author name at the bottom of each post?

If you want to remove the entire author box from single post view you can add this code to Appearance >> Theme Options >> Other >> Custom CSS

.single .post-inner-content.secondary-content-box {
  display: none;
}

If you want to remove only author name but leave other information in place you can add this code instead:

.author-bio-content .author-name {
  display: none;
}

Let me know if this helps.

It worked! Thank you!