Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #587904

    Hi there!

    How can I target specific categories and only eliminate the date under the post title for those categories?

    I tried

    .category-press-releases .category-press-releases-2 .category-press-releases-3 .category-press-releases-4 .post-meta-infos {
    display: none
    }

    but it didnt work. If I took out the “.category-press-releases”, etc it works. What am I doing wrong?

    Thanks!

    #588340

    Hi worldfuturecouncil!

    Please right click and inspect the page in the body tag you will find the unique class names <body class=”category-name”>

    You need to separate each css class by a comma except the last one

    .category-press-releases .post-meta-infos,
    .category-press-releases-2 .post-meta-infos,
    .category-press-releases-3 .post-meta-infos,
    .category-press-releases-4 .post-meta-infos {
    display: none
    }

    If you have any questions please post a link to your site and let us know if the above worked.

    Best regards,
    Vinay Kashyap

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