Title: CSS path in category pages
Last modified: August 22, 2016

---

# CSS path in category pages

 *  Resolved [narcopastello](https://wordpress.org/support/users/narcopastello/)
 * (@narcopastello)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/css-path-in-category-pages/)
 * can someone help me with the CSS to hide `.entry-meta` only from a category page?
 * thanks in advance

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

 *  [David_G](https://wordpress.org/support/users/questas_admin/)
 * (@questas_admin)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/css-path-in-category-pages/#post-5660740)
 * Try this in your child-theme style.css
 *     ```
       .entry-meta {
       display: none;
       }
       ```
   
 *  Thread Starter [narcopastello](https://wordpress.org/support/users/narcopastello/)
 * (@narcopastello)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/css-path-in-category-pages/#post-5660747)
 * i don’t want to hide it everywhere, only on a single category page..
 *  [rdellconsulting](https://wordpress.org/support/users/rdellconsulting/)
 * (@rdellconsulting)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/css-path-in-category-pages/#post-5660826)
 * 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](https://wordpress.org/support/users/narcopastello/)
 * (@narcopastello)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/css-path-in-category-pages/#post-5660843)
 * 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.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/customizr/4.4.24/screenshot.png)
 * Customizr
 * [Support Threads](https://wordpress.org/support/theme/customizr/)
 * [Active Topics](https://wordpress.org/support/theme/customizr/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/customizr/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/customizr/reviews/)

 * 4 replies
 * 3 participants
 * Last reply from: [narcopastello](https://wordpress.org/support/users/narcopastello/)
 * Last activity: [11 years, 4 months ago](https://wordpress.org/support/topic/css-path-in-category-pages/#post-5660843)
 * Status: resolved