Archived topic
Removing author page image
5 replies · Started by Drew on March 18, 2021
I am trying to remove the author's image on the author page. Ideally, I would prefer being able to remove the author's image for individual authors, but for now, I will take removing it from all authors. Any help would be appreciated.
Hi there,
Any chance you can link us to the site in question?
You can use the private information field.
Let me know :)
Here is an example of my author page - https://www.employmentlawhandbook.com/author/eric-howard83gmail-com/. Let me know if you need anything else.
This CSS snippet would remove the image from all author archives:
.author .page-header .avatar {
display: none;
}
And this CSS would remove the image from this author only:
.author.author-eric-howard83gmail-com .page-header .avatar {
display: none;
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
Prefect. I was able to remove the image for a specific author. Thank you.
No problem :)