• Resolved loyukfai

    (@loyukfai)


    Am able to remove the author from the homepage with the below CSS, how can I remove it from individual blog posts too?

    Thanks in advance.

    body.blog .post-author {
      display: none;
    }

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • .post-author.meta-wrapper {
        display: none;
    }

    or remove only from single blog post:

    .single-post .post-author {
        display: none;
    }
    Thread Starter loyukfai

    (@loyukfai)

    Thanks, the first one is what I’m looking for, perfect!

    Nice weekend.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Removing “By xxx” from Blog Posts’ is closed to new replies.