How to Hide Blog Post Author?

I’d use Firebug in Firefox to see the CSS class used for the author name, then disable display.

So, assuming that the css class was called ‘author_name’, I would put this in the styles.css of the child theme that I was using, or in the ‘extra CSS’ area of the theme settings (if available);

.author_name {display:none !important;}

That will hide the author name.