Title: Changing text colour
Last modified: August 30, 2016

---

# Changing text colour

 *  Resolved [prldoyle](https://wordpress.org/support/users/prldoyle/)
 * (@prldoyle)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/changing-text-colour-1/)
 * Hi, I’m looking for some CSS to change all the yellow text in the main body of
   the page to black, while leaving the yellow text on the side bar yellow. Any 
   help would be greatly appreciated.
 * [http://trevorjonesltd.co.uk/shop/product-category/brass-accessories/flugel-accessories/flugel-gigbags/](http://trevorjonesltd.co.uk/shop/product-category/brass-accessories/flugel-accessories/flugel-gigbags/)
 * Many thanks

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

 *  [codemovement.pk](https://wordpress.org/support/users/codemovementpk/)
 * (@codemovementpk)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/changing-text-colour-1/#post-6665973)
 * Hi,
 * try this css
 *     ```
       #content a {
           color: #000 !important;
       }
       ```
   
 *  [Bojan Radonic – WPMU DEV Support](https://wordpress.org/support/users/wpmudev-support4/)
 * (@wpmudev-support4)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/changing-text-colour-1/#post-6665981)
 * Hey there prldoyle,
 * Hope you’re well today 🙂
 * Please try adding the following CSS code in the style.css file of your [child theme](http://codex.wordpress.org/Child_Themes)
   or if your theme doesn’t have custom CSS tab add it in your site using the following
   plugin:
 * [http://wordpress.org/plugins/simple-custom-css](http://wordpress.org/plugins/simple-custom-css)
 *     ```
       #primary .woocommerce-breadcrumb a {
           color: #cc6;
       }
   
       #primary a.button.add_to_cart_button.product_type_simple {
           color: #cc6;
       }
   
       #primary span.amount {
           color: #77a464;
       }
       ```
   
 * Replace color hex values to display another color, first part will change bradcrumb
   links it the top, second one will change color of the add to cart links and the
   third will change price color.
 * You can use sites similar to this one to get hex value for the color of your 
   choice: [http://www.color-hex.com/](http://www.color-hex.com/)
 * Hope this helps 🙂
 * Cheers,
    Bojan
 *  Thread Starter [prldoyle](https://wordpress.org/support/users/prldoyle/)
 * (@prldoyle)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/changing-text-colour-1/#post-6666058)
 * Fantastic, Both solutions work, But i went with Codemeovement as this was just
   simpler.
 * Thanks both for your help.
 * Cheers
 *  [Bojan Radonic – WPMU DEV Support](https://wordpress.org/support/users/wpmudev-support4/)
 * (@wpmudev-support4)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/changing-text-colour-1/#post-6666133)
 * Hey prldoyle,
 * Glad I could help 🙂
 * Just want to let you know that the difference in code is that the code @codemovement
   provided will change all the links color in the content area in your site, while
   mine targets those three specific links.
 * Adding this just in case you understand the difference and in case you need to
   customize something later.
 * Cheers,
    Bojan

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

The topic ‘Changing text colour’ is closed to new replies.

## Tags

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

 * 4 replies
 * 3 participants
 * Last reply from: [Bojan Radonic – WPMU DEV Support](https://wordpress.org/support/users/wpmudev-support4/)
 * Last activity: [10 years, 8 months ago](https://wordpress.org/support/topic/changing-text-colour-1/#post-6666133)
 * Status: resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
