Title: Changing CSS not working
Last modified: August 20, 2016

---

# Changing CSS not working

 *  [elucia1](https://wordpress.org/support/users/elucia1/)
 * (@elucia1)
 * [14 years, 11 months ago](https://wordpress.org/support/topic/changing-css-not-working/)
 * Hi there
    I am attempting to change the font color of the portfolio website title
   and link color by adding “font-color: #000000;” to the CSS style sheet your plug
   in provides.
 * Changes to the CSS do not appear on the page.
 * I’ve also tried pasting the CSS into my child theme’s css but that does not seem
   to work either.
 * a little confused as to how this works…
 * how do I change the font colors?
 * thanks

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

 *  [esmi](https://wordpress.org/support/users/esmi/)
 * (@esmi)
 * [14 years, 11 months ago](https://wordpress.org/support/topic/changing-css-not-working/#post-2118450)
 * Try using `color:#000;`.
 *  [Dan Harrison](https://wordpress.org/support/users/danharrison/)
 * (@danharrison)
 * [14 years, 11 months ago](https://wordpress.org/support/topic/changing-css-not-working/#post-2118577)
 * This is a just a matter of understanding how CSS works.
 *     ```
       .website-name a,.website-url a {
           text-decoration: none;
       }
       ```
   
 * becomes
 *     ```
       .website-name a,.website-url a {
           text-decoration: none;
           color: #000;
       }
       ```
   
 * If that doesn’t work, then you have an issue with the order in which CSS files
   are loaded. And you’ll need the help of developer/designer to fix it.
 * Regards
    Dan

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

The topic ‘Changing CSS not working’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/wp-portfolio_fefefe.svg)
 * [Wordpress Portfolio Plugin (WP Portfolio)](https://wordpress.org/plugins/wp-portfolio/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wp-portfolio/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wp-portfolio/)
 * [Active Topics](https://wordpress.org/support/plugin/wp-portfolio/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wp-portfolio/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wp-portfolio/reviews/)

## Tags

 * [change font color](https://wordpress.org/support/topic-tag/change-font-color/)

 * 2 replies
 * 3 participants
 * Last reply from: [Dan Harrison](https://wordpress.org/support/users/danharrison/)
 * Last activity: [14 years, 11 months ago](https://wordpress.org/support/topic/changing-css-not-working/#post-2118577)
 * Status: not resolved