hide tags comet theme

  • Unknown's avatar

    Hi, I need the CSS code to hide tags & categories on my posts. I’m using the Comet theme.
    Right now I have a trial of WordPress.com Premium; I trust that that’s working, so if you see otherwise, please let me know.
    I know enough about CSS to be dangerous, so your help is greatly appreciated!

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

  • Unknown's avatar

    Hi there, given that all three lines in the post meta data have the same CSS class, we have to get somewhat creative and use the nth-child() attribute to hid only the second and third line.

    .post-meta .row:nth-child(2), .post-meta .row:nth-child(3) {
        display: none;
    }
  • Unknown's avatar

    Wow, thank you for the extra effort. However, good test for me. I know enough about CSS to understand what you said.

    Also, thank you for the quick response!

  • Unknown's avatar

    And, it worked! Thank you again!

    Realize my previous thanks sounds a little funny with the “however.” That should be “also.” :) Should edit my replies before I send them!

  • Unknown's avatar

    No problems, and you are welcome. :)

  • The topic ‘hide tags comet theme’ is closed to new replies.