Viewing 4 replies - 1 through 4 (of 4 total)
  • David_G

    (@questas_admin)

    Try this in your child-theme style.css

    .entry-meta {
    display: none;
    }
    Thread Starter narcopastello

    (@narcopastello)

    i don’t want to hide it everywhere, only on a single category page..

    If you rt-click on the page and select Inspect, you’ll see your HTML for the page. Look at the body tag and you’ll see a list of classes that can be used. There should be one like cat-mycategory and page-id-99

    So you can limit @questas selector by adding .cat-mycategory or .page-id-99 in front of .entry-meta ie

    .cat-mycategory .entry-meta {
    display: none;
    }

    Link to your site would be useful

    Thread Starter narcopastello

    (@narcopastello)

    thanks, i was just misspelling “.catmycategory” without “-“

    dumb question, sorry ??

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘CSS path in category pages’ is closed to new replies.