Archived topic
remove link from meta to author BIO page
3 replies · Started by John on August 22, 2022
Hi there,
I am trying to remove the link from the author meta on Single Blog posts to the author page.
https://rachelkindt.com/lets-get-started/
I have used this css to remove the mouse hover:
.single .entry-meta {
text-align: center;
margin-bottom: 20px;
pointer-events: none;
color: #783f76!important;
}
But I cannot figure out how to remove the underscore which shows it is a link or change the color.
Is there a better way to do this in Generatepress?
Thank you!
Hi John,
You can try this CSS:
.single .entry-header .entry-meta .byline a {
text-decoration: none;
color: #783f76;
}
Beautiful - thank you @fernando.
I could not inspect that byline attribute - appreciate your help!
You’re welcome John!