Remove author filed from posts for Simco theme

  • Unknown's avatar

    Is there a quick css code I can enter to remove this? I tried the ones posted for other themes hoping they might work, but they did not. Thanks so much!

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi there, CSS is theme specific, so it isn’t too often that CSS for one theme will work with another unless the theme author makes both themes, and then there is no guarantee. This will get rid of the author below the title:

    .entry-author {
    display: none;
    }
    
    .entry-tags:before {
        content: "";
    }

    If you want to get rid of the entire line below the post title (author and tags) then use this instead:

    .entry-meta-below-title {
    display: none;
    }
  • Unknown's avatar

    Finally, it worked! Thank you so much, I wasted so much time trying to google an answer, I really appreciate it. Much cleaner look now.

  • Unknown's avatar

    You are very welcome, and you know where we are if something else stumps you. :)

  • The topic ‘Remove author filed from posts for Simco theme’ is closed to new replies.