How to Hide Blogger Author Name on Posts (Simple Step-by-Step Guide)
Ever clicked on a blog post and wondered how some bloggers keep their names hidden? Maybe you’re thinking of doing the same on your Blogger site. Whether you want a clean design, run a multi-author blog, or simply value privacy, hiding the author name can make your blog look more professional. Let’s go through how to do it step by step — easily and safely.
Why You Might Want to Hide the Author Name
Before we jump into the process, let’s talk about why this matters. Sometimes, you may not want readers to focus on who wrote the post but rather on the content itself. Many bloggers also use one site for different contributors, so having the author name on each post can feel unnecessary. Others prefer a more minimal design.
Removing the author name can make your layout look cleaner, especially if you’re using a custom theme. Whatever your reason, Blogger gives you several simple ways to hide the author name — even if you don’t know any coding.
Method 1: Hide the Author Name from Blogger Layout
The easiest way to remove the author name is directly from your Blogger layout settings. You can do this without touching any code. Here’s how:
1. Go to your Blogger Dashboard.
2. Open the Layout section.
3. Find the Blog Posts gadget.
4. Click on the Edit button.
5. In the popup, you’ll see several options such as Author, Date, Comments, etc.
6. Simply uncheck the box next to “Author.”
7. Click Save to apply the changes.
That’s it! When you refresh your site, you’ll notice the author name is gone from your posts. This option works perfectly for most Blogger themes.
Method 2: Use CSS to Hide the Author Name
If your theme doesn’t give you that layout option, don’t worry. You can hide the author name using a small piece of CSS code. It sounds technical, but it’s really simple.
Here’s how you do it:
1. Open your Blogger Dashboard.
2. Go to Theme and click on Customize.
3. Then select Advanced → Add CSS.
4. Paste this code in the box:
.post-author, .byline, .author-info {
display: none !important;
}
5. Click Apply to Blog.
Now visit your site again, and you’ll see that the author name has disappeared. This method hides it completely from the front end, no matter which theme you use.
Method 3: Edit HTML for Complete Control
If you’re comfortable editing your blog’s HTML, you can remove the author section entirely from the template code.
Here’s what to do:
1. Go to Theme → Edit HTML.
2. Use the search box (Ctrl + F) and look for the word author or post-author.
3. When you find the code section, simply delete that part or comment it out using <!-- -->.
4. Save your changes.
This method gives you full control over what appears on your posts. Just be careful not to remove other parts of the code accidentally.
Should You Hide the Author Name?
It depends on your blogging goals. If your site represents a brand, business, or community project, hiding the author name can make your blog look more unified. On the other hand, if you’re building a personal brand, keeping your name visible helps readers connect with you.
Still, many people prefer a clean and anonymous blog appearance, and that’s perfectly fine. You can always turn the author name back on later if you change your mind.
Final Thoughts
Learning how to hide Blogger author name on posts is simple once you know the right method. You can do it from the layout settings, with CSS, or directly in the HTML code. Each method works well, depending on your theme and comfort level. Try the layout option first — it’s the easiest.
If it doesn’t work with your theme, move on to the CSS method. Within a few minutes, you’ll have a cleaner blog design without the author name showing on your posts.
