[Resolved] remove link from meta to author BIO page

Home Forums Support [Resolved] remove link from meta to author BIO page

Home Forums Support remove link from meta to author BIO page

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #2320667
    John

    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!

    #2320683
    Fernando
    Customer Support

    Hi John,

    You can try this CSS:

    .single .entry-header .entry-meta .byline a {
        text-decoration: none;
        color: #783f76;
    }
    #2320684
    John

    Beautiful – thank you @fernando.

    I could not inspect that byline attribute – appreciate your help!

    #2320689
    Fernando
    Customer Support

    You’re welcome John!

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.