Title: CSS Class Names
Last modified: April 24, 2017

---

# CSS Class Names

 *  Resolved [steven.tsakanikas](https://wordpress.org/support/users/steventsakanikas/)
 * (@steventsakanikas)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/css-class-names/)
 * Hey everyone,
 * Quick question: I’ve been trying to edit the CSS of Pedicure.com’s press page
   through WordPress’s CSS function in the Appearance tab but it doesn’t seem to
   work. I tried this code:
 *     ```
       /* Nooz CSS */
   
       .nooz-datetime {
           color: #e5e5e5;
           display: block;
           margin-bottom: 5px;
       }
       .nooz-item {
           margin-bottom: 60px;
       }
       .nooz-list {
           list-style:none;
           margin:0;
           padding:0;
       }
       .blog-post-title-wrapper .nooz-excerpt {
           line-height: 1.4;
       }
       ```
   
 * What’s the best way to go about editing the CSS and where can I find a full list
   of the Nooz’s class names? Thanks in advance.

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

 *  Plugin Contributor [farinspace](https://wordpress.org/support/users/farinspace/)
 * (@farinspace)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/css-class-names/#post-9062333)
 * Hi Steven, I did a quick test (Appearance > Customize > Additional CSS) and I’m
   going to give you the classic response “it works for me”. However, I am sure 
   there is something that is causing your issue. Perhaps try qualifying the CSS
   with `body` or a parent ID.
 *     ```
       body .nooz-datetime {
           color: #e5e5e5;
           display: block;
           margin-bottom: 5px;
       }
       ```
   
 *     ```
       #parent .nooz-datetime {
           color: #e5e5e5;
           display: block;
           margin-bottom: 5px;
       }
       ```
   
 * Typically it all comes down to targeting, I usually use the dev console on firefox,
   to see the ordering of styles that are applied, this helps me track down how 
   classes are inheriting, qualified and which CSS is loaded and when.
 * Additionally, you can find a full list of Nooz class-names and options by going
   into the news settings and the Help menu above (top right). It is all pretty 
   well documented.
 * Let me know what you find out, I am here to assist! 🙂
 *  Thread Starter [steven.tsakanikas](https://wordpress.org/support/users/steventsakanikas/)
 * (@steventsakanikas)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/css-class-names/#post-9063089)
 * Hey Farinspace,
 * Thanks for your quick response! I actually managed to get the CSS working, not
   sure what I was doing wrong before.
 * I can’t seem to find the Nooz class-names, any chance you can provide me with
   a link to the page? Thanks.
 *  Plugin Contributor [farinspace](https://wordpress.org/support/users/farinspace/)
 * (@farinspace)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/css-class-names/#post-9063156)
 * My apologies, I might not have explained it properly .. it’s on the Nooz > Settings
   page in the WordPress admin UI (/wp/wp-admin/admin.php?page=nooz). You will find
   what you need in the “Help” menu (top right, under the logout link of the wpadminbar)

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

The topic ‘CSS Class Names’ is closed to new replies.

 * ![](https://ps.w.org/nooz/assets/icon-256x256.png?rev=3498463)
 * [Nooz](https://wordpress.org/plugins/nooz/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/nooz/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/nooz/)
 * [Active Topics](https://wordpress.org/support/plugin/nooz/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/nooz/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/nooz/reviews/)

## Tags

 * [class name](https://wordpress.org/support/topic-tag/class-name/)
 * [css](https://wordpress.org/support/topic-tag/css/)

 * 3 replies
 * 2 participants
 * Last reply from: [farinspace](https://wordpress.org/support/users/farinspace/)
 * Last activity: [9 years, 1 month ago](https://wordpress.org/support/topic/css-class-names/#post-9063156)
 * Status: resolved