Title: CSS changes
Last modified: May 29, 2018

---

# CSS changes

 *  Resolved [cetaceancousins](https://wordpress.org/support/users/cetaceancousins/)
 * (@cetaceancousins)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/css-changes-20/)
 * Hi
 * Sorry I have another question. I have tried to amend the css file to change the
   font size and colours of the default table (see link) however it does not appear
   to be changing.
 * I wanted Verdana font, size 14/16 and the table to be blue and white. I did edit
   the file named stafflist.css, is this the correct one?
 * Thanks in advance.
 * PS – it is a great plugin! especially when you have tons of data to display and
   want an easy way to manage it
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fcss-changes-20%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 1 replies (of 1 total)

 *  Plugin Author [ERA404](https://wordpress.org/support/users/era404/)
 * (@era404)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/css-changes-20/#post-10337023)
 * We see your theme (Hueman) allows you to inject Custom CSS into the head as it
   seems thats where your customizations are. You can override any of the default
   styles for Stafflist with styles that are more specific to your elements than
   the default ones:
 * Default Stafflist styles cascade from:
 * `.staffdirectory .stafflists ...`
 * Simply add custom CSS to your head and make yours start with a parent element
   or ID to override. e.g.,
 *     ```
       article .staffdirectory .stafflists th {
           background-color: blue;
           font-family: Verdana;
           font-size: 14px;
           line-height: 16px;
       }
       article .staffdirectory .stafflists th a {
           color: #FFF;
       }
       ```
   
 * Or use the `!important` modifier on styles you want to override. e.g.,
 *     ```
       .staffdirectory .stafflists th {
           background-color: blue !important;
       }
       ```
   
 * Please let us know if you have any other questions or issues.

Viewing 1 replies (of 1 total)

The topic ‘CSS changes’ is closed to new replies.

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

## Tags

 * [!important](https://wordpress.org/support/topic-tag/important/)
 * [css](https://wordpress.org/support/topic-tag/css/)
 * [header](https://wordpress.org/support/topic-tag/header/)

 * 1 reply
 * 2 participants
 * Last reply from: [ERA404](https://wordpress.org/support/users/era404/)
 * Last activity: [7 years, 10 months ago](https://wordpress.org/support/topic/css-changes-20/#post-10337023)
 * Status: resolved